Location:
Search - qrcodeencoder
Search list
Description: QRcode二维码生成源代码 希望对大家有用 也希望大家有什么好的代码都发上来共享-QRcode two-dimensional code to generate the source code useful for everyone would like to also hope that we have any good hair up code-sharing
Platform: |
Size: 37888 |
Author: sp |
Hits:
Description: 二维码生成代码,QRCodeDecoder.java, QRCodeEncoder.java-Two-dimensional code to generate code, QRCodeDecoder.java, QRCodeEncoder.java
Platform: |
Size: 38912 |
Author: 张寄望 |
Hits:
Description: 针对QR码的一款编码程序,功能超强,日文版的,原来日语是乱码,经本人调整,日语可以正常显示,适合有日语基础的编程爱好者。-QR code for a coding procedures, functions super, Japanese version of the original Japanese is garbled, after I adjusted, Japanese can be displayed normally, suitable for Japanese-based programming enthusiasts.
Platform: |
Size: 4969472 |
Author: 刘圣其 |
Hits:
Description: 本程序是关于QR的解码器,希望有用呵呵,是正大老师所作-QR c o d e encoder sdfsdafsdagsdgadfsg幅 萨嘎萨嘎
Platform: |
Size: 69632 |
Author: 马远 |
Hits:
Description:
一、源码特点
1、基于C# Winfrom开发的生成二维码源码,适用于初学者学习使用,欢迎下载
二、注意事项
1、开发环境为Visual Studio 2012,使用.net 4.0开发。-First, the source characteristics
1, based on the development of C# Win generated two-dimensional code source code, suitable for beginners to learn to use, welcome to download
Two, matters needing attention
1, the development environment for Visual Studio 2012, using.Net 4 development.
Platform: |
Size: 1582080 |
Author: 王明 |
Hits:
Description: 这是一个DOME,直接下载使用,仅实现二维码生成功能,如要增加二维码打印功能可以参考以下代码,如要增加其他功能请自行开发。
Image image = qrCodeEncoder.Encode(strData);
Bitmap printPicture = new Bitmap(image.Width+20, image.Height + 40);
Graphics g = Graphics.FromImage(printPicture);
Rectangle destRect = new Rectangle(10, 10, image.Width, image.Height);
g.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel);
RectangleF layoutRectangle = new RectangleF(0, image.Height + 20, image.Width, 30);
g.DrawString(strCode, font, brush, layoutRectangle);
string filepath = System.Web.HttpContext.Current.Server.MapPath(@"~\attachment")+ "1.png";
System.IO.FileStream fs = new System.IO.FileStream(filepath, System.IO.FileMode.OpenOrCreate,System.IO.FileAccess.Write);
printPicture.Save(fs, System.Drawing.Imaging.ImageFormat.Png);
fs.Close();printPicture.Dispose();(This is a DOME, which is directly downloaded. It only realizes the generation of two-dimensional code. If we want to increase the two-dimensional code printing function, we can refer to the following code, if you want to add other functions, please develop it yourself.)
Platform: |
Size: 2215936 |
Author: cbingqin
|
Hits: