网上生成二维码的组件是真多,可是真正好用的,并且生成速度很快的没几个,QRCode就是我在众多中找到的,它的生成速度快。但是网上关于它的使用说明,真的太少了,大都是千篇一律的复制粘贴。这是本要用它做了一个项目后,简单的整理了一下。
组件下载地址:http://download.csdn.net/detail/lybwwp/6861821
下载文件包包含ThoughtWorks.QRCode.dll与dll的源码,强人可修改些源码。
字符串较长的情况下,用ThoughtWorks.QRCode生成二维码时出现“索引超出了数组界限”的错误。 解决方法:将 QRCodeVersion 改为0。
此代码功能:批量生成二维码图片保存到指定文件夹中(此图片可保存,可指定图片格式和图片大小)。
引用空间 ThoughtWorks.QRCode.dll
using ThoughtWorks.QRCode.Codec;
- #region 二维码生成
-
-
-
- private void Create_CodeImages()
- {
- try
- {
- if (myDataSet != null)
- {
- if (myDataSet.Tables[0].Rows.Count > 0)
- {
-
- DeleteDir(currentPath);
- foreach (DataRow dr in myDataSet.Tables[0].Rows)
- {
- if (dr[2] != null)
- {
-
- Bitmap image = Create_ImgCode(dr[2].ToString(), imgSize);
-
- SaveImg(currentPath, image);
- }
- }
-
- Open_File(currentPath);
- myDataSet = null;
- return;
- }
- }
- }
- catch(Exception ex) {
- MessageBox.Show(ex.ToString (), "错误!", MessageBoxButtons.OK, MessageBoxIcon.Error);
-
- }
- }
-
-
-
- readonly string currentPath = Application.StartupPath + @"\BarCode_Images";
-
-
-
-
-
-
- public void SaveImg(string strPath, Bitmap img)
- {
-
- if (Directory.Exists(strPath))
- {
-
- string guid = Guid.NewGuid().ToString().Replace("-", "") + ".png";
- img.Save(strPath + "/" + guid, System.Drawing.Imaging.ImageFormat.Png);
- }
- else
- {
-
- Directory.CreateDirectory(strPath);
- }
- }
-
-
-
-
-
-
- public Bitmap Create_ImgCode(string codeNumber, int size)
- {
-
- QRCodeEncoder qrCodeEncoder = new QRCodeEncoder();
-
- qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
-
- qrCodeEncoder.QRCodeScale = size;
-
- qrCodeEncoder.QRCodeVersion = 0;
-
- qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;
-
- System.Drawing.Bitmap image = qrCodeEncoder.Encode(codeNumber);
- return image;
- }
-
-
-
-
- public void Open_File(string path)
- {
- System.Diagnostics.Process.Start("explorer.exe", path);
- }
-
-
-
-
- public void DeleteDir(string aimPath)
- {
- try
- {
-
- if (Directory.Exists(aimPath))
- {
-
- if (aimPath[aimPath.Length - 1] != Path.DirectorySeparatorChar)
- aimPath += Path.DirectorySeparatorChar;
-
-
- string[] fileList = Directory.GetFiles(aimPath);
-
-
- foreach (string file in fileList)
- {
-
- if (Directory.Exists(file))
- {
- DeleteDir(aimPath + Path.GetFileName(file));
- }
-
- else
- {
- File.Delete(aimPath + Path.GetFileName(file));
- }
- }
- }
- }
- catch (Exception e)
- {
- throw e;
- }
- }
- #endregion
|
请发表评论