ASP.NET QR 코드(QRcode)생 성 및 읽 기 인 스 턴 스 구현
개요:
QR QR 코드 는 다른 QR 코드 에 비해 읽 기 속도 가 빠 르 고 데이터 밀도 가 높 으 며 공간 을 적 게 차지 한 다 는 장점 이 있다.QR 코드 의 세 각 에 세 개의 이미지 찾기 도형 이 있 는데 CCD 판독 장 치 를 사용 하여 코드 의 위치,크기,경사 각 도 를 탐지 하고 디 코딩 을 하여 360 읽 기 고속 판독 을 실현 한다.1 초 에 30 개의 문자 QR 코드 를 읽 을 수 있 습 니 다.QR 코드 는 용량 밀도 가 높 아 한자 1 천 817 개,숫자 7 천 89 개,영문 자모 4 천 200 개 를 넣 을 수 있다.QR 코드 는 데이터 압축 방식 으로 한 자 를 표시 하 는데 13bit 만으로 한 자 를 표시 할 수 있어 다른 QR 코드 보다 한 자 를 표시 하 는 효율 이 20%높 아 졌 다.QR 은 파손 되 거나 파손 되 더 라 도 정확하게 판독 할 수 있 는 4 등급 오류 정정 기능 을 갖 추고 있다.QR 코드 는 굴곡 에 강 한 성능 을 가지 고 있 으 며 QR 코드 의 간격 마다 교정 도형 을 설정 하여 코드 의 외형 에서 교정 도형 중심 점 과 실제 교정 도형 중심 점 의 오 차 를 추측 하여 각 모델 의 빠 른 중심 거 리 를 수정 하고 QR 코드 를 구 부 러 진 물품 에 붙 여도 빠르게 읽 을 수 있 습 니 다.QR 코드 는 16 개의 QR 코드 로 나 눌 수 있 고 한 번 에 여러 개의 분할 코드 를 읽 을 수 있 으 며 인쇄 면적 이 유한 하고 가 늘 고 긴 공간 인쇄 수요 에 적응 할 수 있다.또한 마이크로 QR 코드 는 1㎝공간 에 숫자 35 개 나 한자 9 개 또는 영문 자모 21 개 를 넣 을 수 있어 소형 회로 기 판 에서 ID 번 호 를 채취 하 는 데 적합 하 다.
QRcode 여 기 를 클릭 하 십시오본 사이트 다운로드(중국어 지원)
1.프로젝트 참조 QRcode 의 DLL 파일(ThoughtWorks.QRcode.dll)
2.ASPX 페이지(jquery 의 js 파일 두 개 는 홈 페이지 에서 다운로드 하 십시오):
<head runat="server">
<title> </title>
<script type="text/javascript" src="../../Scripts/Jquery/jquery-1.6.2.js"></script>
<script type="text/javascript" src="../../Scripts/Jquery/jquery.form.js"></script>
<script type="text/javascript" src="js/test.js"></script>
<style type="text/css">
.style1
{
width: 100%;
}
#txt_qr
{
width: 632px;
}
</style>
</head>
<body>
<div>
<table class="style1">
<tr>
<td>
:
</td>
<td>
<input type="text" id="txt_qr" name="txt_qr" />
</td>
</tr>
<tr>
<td>
</td>
<td>
<img id="qrimg" alt=" " />
</td>
</tr>
<tr>
<td>
</td>
<td>
Encoding:<select id="Encoding">
<option value="Byte">Byte</option>
<option value="AlphaNumeric">AlphaNumeric</option>
<option value="Numeric">Numeric</option>
</select>
Correction Level:<select id="Level">
<option value="M">M</option>
<option value="L">L</option>
<option value="Q">Q</option>
<option value="H">H</option>
</select>
Version:<input id="txt_ver" type="text" value="7" />(1-40) Size:<input id="txt_size"
type="text" value="4" />
</td>
</tr>
<tr>
<td colspan="4">
<input type="button" onclick="getQrImg();" value=" " />
</td>
</tr>
<tr>
<td>
<form id="qrForm" action="Ashx/test.ashx" method="post" enctype="multipart/form-data">
<input type="file" id="file_qr" name="file_qr" /><input type="submit" value=" " />
</form>
</td>
<td colspan="1">
<img id="img_qr" alt=" " /><br />
<input id="txt_readqr" type="text" />
</td>
</tr>
</table>
</div>
</body>
</html>
3.test.js 파일$(document).ready(function ()
{
var options = {
beforeSubmit: showRequest,
success: showResponse,
dataType: 'json',
clearForm: true,
error: function (request, message, ex)
{
alert(' :' + message);
}
};
$('#qrForm').ajaxForm(options);
});
function showRequest(formData, jqForm, options)
{
return true;
}
function showResponse(responseText, statusText, xhr, $form)
{
if (responseText[0].count == 0)
{
alert(responseText[0].list[0].error);
return false;
}
$("#img_qr").attr("src", responseText[0].list[0].imgurl);
$("#txt_readqr").val(responseText[0].list[0].qrtext);
return false;
}
function getQrImg()
{
var txt_qr = escape($.trim($("#txt_qr").val()));
var qrEncoding = $("#Encoding").val(); ;
var Level = $("#Level").val(); ;
var txt_ver = $("#txt_ver").val(); ;
var txt_size = $("#txt_size").val(); ;
$.ajax({
type: "GET",
data: "cmd=set&txt_qr=" + txt_qr + "&qrEncoding=" + qrEncoding + "&Level=" + Level + "&txt_ver=" + txt_ver + "&txt_size=" + txt_size,
url: "Ashx/test.ashx",
dataType: 'text',
beforeSend: function (x)
{
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=utf-8");
},
success: function (json)
{
var dataObj = eval(json);
$("#qrimg").attr("src", dataObj[0].list[0].imgurl);
return false;
},
error: function (request, message, ex)
{
alert(" :" + message);
}
});
}
4.test.ashx,디 렉 터 리 에 문제 가 있 는 지 판단 하지 않 았 습 니 다.코드 를 만 들 거나 변경 하 십시오.using System;
using System.Web;
using System.Drawing;
using System.Drawing.Imaging;
using System.Text;
using System.Text.RegularExpressions;
using ThoughtWorks.QRCode.Codec;
using ThoughtWorks.QRCode.Codec.Data;
using ThoughtWorks.QRCode.Codec.Util;
public class test : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string cmd = context.Request["cmd"] == null ? "get" : context.Request["cmd"].ToString();
string filename = string.Empty;
string filepath = string.Empty;
switch (cmd)
{
case "get":
if (context.Request.Files.Count > 0)
{
for (int j = 0; j < context.Request.Files.Count; j++)
{
filename = Guid.NewGuid().ToString() + "_tmp.jpg";
filepath = context.Server.MapPath(@"~\Utilty\QRCode\upload") + "\\" + filename;
string qrdecode = string.Empty;
HttpPostedFile uploadFile = context.Request.Files[j];
uploadFile.SaveAs(filepath);
QRCodeDecoder decoder = new QRCodeDecoder();
Bitmap bm = new Bitmap(filepath);
qrdecode = decoder.decode(new QRCodeBitmapImage(bm));
bm.Dispose();
context.Response.Write("[{\"count\":1,\"list\":[{\"imgurl\":\"upload/" + filename + "\",\"qrtext\":\"" + qrdecode + "\"}]}]");
}
}
else
{
context.Response.Write("[{\"count\":0,\"list\":[{\"error\":\" \"}]}]");
}
break;
case "set":
string txt_qr =ConverToGB(context.Request["txt_qr"].ToString().Trim(), 16);
string qrEncoding = context.Request["qrEncoding"].ToString();
string Level = context.Request["Level"].ToString();
string txt_ver = context.Request["txt_ver"].ToString();
string txt_size = context.Request["txt_size"].ToString();
QRCodeEncoder qrCodeEncoder = new QRCodeEncoder();
String encoding = qrEncoding;
if (encoding == "Byte")
{
qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE;
}
else if (encoding == "AlphaNumeric")
{
qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.ALPHA_NUMERIC;
}
else if (encoding == "Numeric")
{
qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.NUMERIC;
}
try
{
int scale = Convert.ToInt16(txt_size);
qrCodeEncoder.QRCodeScale = scale;
}
catch (Exception ex)
{
return;
}
try
{
int version = Convert.ToInt16(txt_ver);
qrCodeEncoder.QRCodeVersion = version;
}
catch (Exception ex)
{
return;
}
string errorCorrect = Level;
if (errorCorrect == "L")
qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.L;
else if (errorCorrect == "M")
qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.M;
else if (errorCorrect == "Q")
qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.Q;
else if (errorCorrect == "H")
qrCodeEncoder.QRCodeErrorCorrect = QRCodeEncoder.ERROR_CORRECTION.H;
Image image;
String data = txt_qr;
image = qrCodeEncoder.Encode(data);
filename = Guid.NewGuid().ToString() + ".jpg";
filepath = context.Server.MapPath(@"~\Utilty\QRCode\upload") + "\\" + filename;
System.IO.FileStream fs = new System.IO.FileStream(filepath, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.Write);
image.Save(fs, System.Drawing.Imaging.ImageFormat.Jpeg);
fs.Close();
image.Dispose();
context.Response.Write("[{\"count\":1,\"list\":[{\"imgurl\":\"upload/" + filename + "\"}]}]");
//context.Response.Write(@"upload\" + filename);
break;
}
}
/// <summary>
/// 10 16
/// </summary>
/// <param name="name"> </param>
/// <param name="fromBase"> (10 16)</param>
/// <returns></returns>
public string ConverToGB(string text, int fromBase)
{
string value = text;
MatchCollection mc;
System.Text.StringBuilder sb = new System.Text.StringBuilder();
switch (fromBase)
{
case 10:
MatchCollection mc1 = Regex.Matches(text, @"&#([\d]{5})", RegexOptions.Compiled | RegexOptions.IgnoreCase);
foreach (Match _v in mc1)
{
string w = _v.Value.Substring(2);
w = Convert.ToString(int.Parse(w), 16);
byte[] c = new byte[2];
string ss = w.Substring(0, 2);
int c1 = Convert.ToInt32(w.Substring(0, 2), 16);
int c2 = Convert.ToInt32(w.Substring(2), 16);
c[0] = (byte)c2;
c[1] = (byte)c1;
sb.Append(Encoding.Unicode.GetString(c));
}
value = sb.ToString();
break;
case 16:
mc = Regex.Matches(text, @"\\u([\w]{2})([\w]{2})", RegexOptions.Compiled | RegexOptions.IgnoreCase);
if (mc != null && mc.Count > 0)
{
foreach (Match m2 in mc)
{
string v = m2.Value;
string w = v.Substring(2);
byte[] c = new byte[2];
int c1 = Convert.ToInt32(w.Substring(0, 2), 16);
int c2 = Convert.ToInt32(w.Substring(2), 16);
c[0] = (byte)c2;
c[1] = (byte)c1;
sb.Append(Encoding.Unicode.GetString(c));
}
value = sb.ToString();
}
break;
}
return value;
}
public bool IsReusable
{
get
{
return false;
}
}
}
효 과 는 다음 그림 과 같다.PS:관심 있 는 분 들 은 본 사이트 의 QR 코드 도 구 를 참고 하 실 수 있 습 니 다http://tools.jb51.net/transcoding/jb51qrcode
본 고 에서 말 한 것 이 여러분 의 asp.net 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LINE에서 보낸 QR 코드 이미지를 ID로 변환예전에 만든 LINE에서 약물 상자 관리를위한 장치 제어로, LINE에서 보낸 QR 코드 이미지를 ID로 변환하는 경우가 있으므로 메모해 둡니다. 디바이스 그 자체의 자세한 것은 이쪽. 기기 소개 동영상은 여기 (2...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.