- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章ASP.NET生成二维码的方法总结由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例总结了ASP.NET生成二维码的方法。分享给大家供大家参考,具体如下:
分享一例c#生成二维码的代码,直接引用ThoughtWorks.QRCode.dll 类生成二维码,有需要的朋友参考下.
方法1.直接引用ThoughtWorks.QRCode.dll 类,生成二维码.
代码示例
1
2
3
4
5
6
7
8
9
10
|
ThoughtWorks.QRCode.Codec.QRCodeEncoder encoder =
new
QRCodeEncoder();
encoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
//编码方法(注意:BYTE能支持中文,ALPHA_NUMERIC扫描出来的都是数字)
encoder.QRCodeScale = 4;
//大小
encoder.QRCodeVersion = 0;
//版本(注意:设置为0主要是防止编码的字符串太长时发生错误)
encoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;
String qrdata =
"二维码信息"
;
System.Drawing.Bitmap bp = encoder.Encode(qrdata.ToString(), Encoding.GetEncoding(
"GB2312"
));
Image image = bp;
Object oMissing = System.Reflection.Missing.Value;
pictureBox1.Image = bp;
|
保存二维码图片:
代码示例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
SaveFileDialog sf =
new
SaveFileDialog();
sf.Title =
"选择保存文件位置"
;
sf.Filter =
"保存图片(*.jpg) |*.jpg|所有文件(*.*) |*.*"
;
//设置默认文件类型显示顺序
sf.FilterIndex = 1;
//保存对话框是否记忆上次打开的目录
sf.RestoreDirectory =
true
;
if
(sf.ShowDialog() == DialogResult.OK)
{
Image im =
this
.pictureBox1.Image;
//获得文件路径
string
localFilePath = sf.FileName.ToString();
if
(sf.FileName !=
""
)
{
string
fileNameExt = localFilePath.Substring(localFilePath.LastIndexOf(
"\\"
) + 1);
//获取文件名,不带路径
// newFileName = fileNameExt+DateTime.Now.ToString("yyyyMMdd") ;//给文件名后加上时间
string
FilePath = localFilePath.Substring(0, localFilePath.LastIndexOf(
"."
));
//获取文件路径,带文件名,不带后缀
string
fn = sf.FileName;
pictureBox1.Image.Save(FilePath +
"-"
+ DateTime.Now.ToString(
"yyyyMMdd"
) +
".jpg"
);
}
}
//解析二维码信息
// QRCodeDecoder decoder = new QRCodeDecoder();
// String decodedString = decoder.decode(new QRCodeBitmapImage(new Bitmap(pictureBox1.Image)));
//this.label3.Text = decodedString;
|
方法2.引用ZXing类库.
ZXing是一个开源Java类库用于解析多种格式的1D/2D条形码。目标是能够对QR编码、Data Matrix、UPC的1D条形码进行解码。于此同时,它同样提供 cpp,ActionScript,android,iPhone,rim,j2me,j2se,jruby,C#等方式的类库。zxing类库的作用主 要是解码,是目前开源类库中解码能力比较强的(商业的另说,不过对于动辄成千上万的类库授权费用,的确很值).
到谷歌code下载相应的代码 。
1.下载zxing最新的包 。
到zxing的主页: http://code.google.com/p/zxing/ 。
找到其中的CSharp文件夹,在vs中打开并编译,将obj下debug中的zxing.dll复制并粘帖到你的项目中的bin文件目录下, 右击添加项目引用。将zxing.dll引用到项目中,就可以在需要的地方使用了.
源代码中有两处UTF-8的问题,会导致中文出现乱码(编译.dll之前修改) 。
其一:com.google.zxing.qrcode.encoder.encoder类中的 。
1
|
internal
const
System.String DEFAULT_BYTE_MODE_ENCODING =
"ISO-8859-1"
;
|
此处,将ISO-8859-1改为UTF-8 。
其二:com.google.zxing.qrcode.decoder.DecodedBitStreamParser类的成员 。
private const System.String UTF8 = "UTF8",
应将UTF8改为UTF-8 。
代码示例
1
2
3
4
5
6
7
|
using
com.google.zxing.qrcode;
using
com.google.zxing;
using
com.google.zxing.common;
using
ByteMatrix = com.google.zxing.common.ByteMatrix;
using
EAN13Writer = com.google.zxing.oned.EAN13Writer;
using
EAN8Writer = com.google.zxing.oned.EAN8Writer;
using
MultiFormatWriter = com.google.zxing.MultiFormatWriter;
|
方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
string
content =
"二维码信息"
;
ByteMatrix byteMatrix =
new
MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, 300, 300);
Bitmap bitmap = toBitmap(byteMatrix);
pictureBox1.Image = bitmap;
SaveFileDialog sFD =
new
SaveFileDialog();
sFD.Filter =
"保存图片(*.png) |*.png|所有文件(*.*) |*.*"
;
sFD.DefaultExt =
"*.png|*.png"
;
sFD.AddExtension =
true
;
if
(sFD.ShowDialog() == DialogResult.OK)
{
if
(sFD.FileName !=
""
)
{
writeToFile(byteMatrix, System.Drawing.Imaging.ImageFormat.Png, sFD.FileName);
}
}
|
解析二维码:
代码示例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
if
(
this
.openFileDialog1.ShowDialog() != DialogResult.OK)
{
return
;
}
Image img = Image.FromFile(
this
.openFileDialog1.FileName);
Bitmap bmap;
try
{
bmap =
new
Bitmap(img);
}
catch
(System.IO.IOException ioe)
{
MessageBox.Show(ioe.ToString());
return
;
}
if
(bmap ==
null
)
{
MessageBox.Show(
"Could not decode image"
);
return
;
}
LuminanceSource source =
new
RGBLuminanceSource(bmap, bmap.Width, bmap.Height);
com.google.zxing.BinaryBitmap bitmap1 =
new
com.google.zxing.BinaryBitmap(
new
HybridBinarizer(source));
Result result;
try
{
result =
new
MultiFormatReader().decode(bitmap1);
}
catch
(ReaderException re)
{
MessageBox.Show(re.ToString());
return
;
}
MessageBox.Show(result.Text);
public
static
void
writeToFile(ByteMatrix matrix, System.Drawing.Imaging.ImageFormat format,
string
file)
{
Bitmap bmap = toBitmap(matrix);
bmap.Save(file, format);
}
public
static
Bitmap toBitmap(ByteMatrix matrix)
{
int
width = matrix.Width;
int
height = matrix.Height;
Bitmap bmap =
new
Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
for
(
int
x = 0; x < width; x++)
{
for
(
int
y = 0; y < height; y++)
{
bmap.SetPixel(x, y, matrix.get_Renamed(x, y) != -1 ? ColorTranslator.FromHtml(
"0xFF000000"
) : ColorTranslator.FromHtml(
"0xFFFFFFFF"
));
}
}
return
bmap;
}
|
希望本文所述对大家asp.net程序设计有所帮助.
最后此篇关于ASP.NET生成二维码的方法总结的文章就讲到这里了,如果你想了解更多关于ASP.NET生成二维码的方法总结的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!