【WPF学习手记】制作二维码和条形码

发布时间:2024-11-21 04:58

了解常见防伪手段:如条形码、二维码、防伪标签等。 #生活常识# #购物消费建议# #品牌鉴别#

最新推荐文章于 2024-09-28 17:35:40 发布

程序猿老王。 于 2018-06-14 11:24:22 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

1. 下载 zxing.dll,并添加引用;

2. 界面代码

<Window x:Class="Niumag_WFF.QRCode"

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

xmlns:local="clr-namespace:Niumag_WFF"

mc:Ignorable="d"

Title="QRCode" Height="450" Width="650">

<Grid Margin="5">

<StackPanel Orientation="Vertical" Margin="5">

<TextBox Name="txtbox" Text="0123456789" Width="600" FontSize="15" Foreground="Green" Margin="5" Padding="5"/>

<StackPanel Orientation="Horizontal" Margin="5">

<Image Name="imageQR" Width="256" Height="256" Margin="5"/>

<Image Name="imageBar" Width="350" Height="256" Margin="5"/>

</StackPanel>

<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">

<Button Content="Generator QR" FontSize="28" Width="200" Foreground="Blue" Background="Transparent" BorderBrush="SkyBlue" Margin="5" Click="Button_Click"/>

<Button Content="Generator Bar" FontSize="28" Width="200" Foreground="Blue" Background="Transparent" BorderBrush="SkyBlue" Margin="5" Click="Button_Click_1"/>

</StackPanel>

</StackPanel>

</Grid>

</Window>

3. 后台代码

using System;

using System.Drawing;

using System.Drawing.Imaging;

using System.IO;

using System.Windows;

using System.Windows.Media.Imaging;

using ZXing;

using ZXing.Common;

namespace Niumag_WFF

{

public partial class QRCode : Window

{

public QRCode()

{

InitializeComponent();

GeneratorBar(txtbox.Text);

GeneratorQR(txtbox.Text);

}

private void Button_Click(object sender, RoutedEventArgs e)

{

imageQR.Source = null;

try

{

GeneratorQR(txtbox.Text);

}

catch (Exception ex)

{

txtbox.Text = ex.Message;

}

}

private void Button_Click_1(object sender, RoutedEventArgs e)

{

imageBar.Source = null;

try

{

GeneratorBar(txtbox.Text);

}

catch(Exception ex)

{

txtbox.Text = ex.Message + "(code39合法字符集 [0-9A-Z+-*/%. ] 共43个)";

}

}

private Image GeneratorQR(string msg)

{

BarcodeWriter writer = new BarcodeWriter

{

Format = BarcodeFormat.QR_CODE

};

writer.Options.Hints.Add(EncodeHintType.CHARACTER_SET, "UTF-8");

writer.Options.Hints.Add(EncodeHintType.ERROR_CORRECTION, ZXing.QrCode.Internal.ErrorCorrectionLevel.H);

int codeSizeInPixels = 256;

writer.Options.Height = codeSizeInPixels;

writer.Options.Width = codeSizeInPixels;

writer.Options.Margin = 0;

BitMatrix bm = writer.Encode(msg);

Bitmap img = writer.Write(bm);

imageQR.Source = BitmapToBitmapImage(img);

return img;

}

private Image GeneratorBar(string msg)

{

MultiFormatWriter mutiWriter = new MultiFormatWriter();

BitMatrix bm = mutiWriter.encode(msg, BarcodeFormat.CODE_39, 350, 256);

Bitmap img = new BarcodeWriter().Write(bm);

imageBar.Source = BitmapToBitmapImage(img);

return img;

}

public static BitmapImage BitmapToBitmapImage(Bitmap bitmap)

{

using (MemoryStream stream = new MemoryStream())

{

bitmap.Save(stream, ImageFormat.Png);

stream.Position = 0;

BitmapImage result = new BitmapImage();

result.BeginInit();

result.CacheOption = BitmapCacheOption.OnLoad;

result.StreamSource = stream;

result.EndInit();

result.Freeze();

return result;

}

}

public static Bitmap BitmapImageToBitmap(BitmapImage bitmapImage)

{

using (MemoryStream outStream = new MemoryStream())

{

BitmapEncoder enc = new BmpBitmapEncoder();

enc.Frames.Add(BitmapFrame.Create(bitmapImage));

enc.Save(outStream);

Bitmap bitmap = new Bitmap(outStream);

return new Bitmap(bitmap);

}

}

}

}

4. 效果图

网址:【WPF学习手记】制作二维码和条形码 https://www.yuejiaxmz.com/news/view/168026

相关内容

怎么能够制作活码的二维码?在线生成活码的简单技巧
分享生活趣事清新简约方形二维码
八木屋二维码生成器
WPF基础(十九)x:key、x:name、name的区别?
数码相机的基本保养和维护
关于家庭收纳:请好好运用二维码!
【读书笔记】代码大全26章:代码优化技术
买卖二手电子产品好吗?二手数码产品交易注意事项
笔记本、数码相机、MP3等数码产品的养护常识
「数码产品维护」数码产品维护公司黄页

随便看看