conga2ccc
73769
|
2013/12/19 11:06:57 |
dcopyboy,按你修改还是有中文件乱码的情况 |
gongags
71279
|
2013/12/7 11:24:47 |
将压缩包中的 frx2DBarcode 单元添加到引用 frx7.dpk, 然后再编译,估计是这样了. |
jskscxy
67796
|
2013/11/20 9:52:52 |
添加到引用后, frxDrawGraphic(Canvas, Rect(FX, FY, FX1, FY1), oBmp, IsPrinting, False, False, 0); 这里编译出错了。 |
googlemanner
62473
|
2013/10/22 2:06:09 |
D6能用吗? 添加到引用后, frxDrawGraphic(Canvas, Rect(FX, FY, FX1, FY1), oBmp, IsPrinting, False, False, 0); 这里编译出错了。 |
judger
57913
|
2013/9/5 13:05:48 |
测试了一下,太多问题了。 |
anz130
56118
|
2013/9/3 15:08:19 |
将压缩包中的 frx2DBarcode 单元添加到引用即可在报表设计中看到 2D 条码对象
这句是什么意思,是添加到工程的引用还是什么啊,我是Delphi7,好像没有用啊!!! 求指教 |
arwin
51877
|
2013/8/18 22:56:22 |
非常感谢dcopyboy兄指导!多谢 |
dcopyboy
48227
|
2013/8/13 15:02:19 |
QRCODE支持汉字的方法: 添加 Usejis 参数 当 Usejis :=true时 采用 日文(SHIFT JIS) 编码 反之采用机内码编码,成功解决 QRCode 汉字乱码问题。 具体代码修改的过程:
function TQRCode.CharClassOf(src: PByte; len: Integer): Shortint; begin Result := -1; if (src = nil) or (len < 1) then Exit; // エラー // Dcopyboy 修改,不使用Jis优化,完美支持中文 if not Usejis then begin Result := QR_EM_8BIT; Exit; end;
Result := charclass[src^]; if Result = QR_EM_KANJI then begin if len = 1 then Result := QR_EM_8BIT else begin Inc(src); if not (src^ in Kanji2Data) then Result := QR_EM_8BIT; end; end; end; |
arwin
47675
|
2013/8/8 8:20:53 |
dcopyboy你好,能否具体讲讲RCode.pas 支持中文需要修改那几个语句?多谢!! |
zhaoxiaoqian
47066
|
2013/7/11 11:21:01 |
谁有qrcode for d7 的使用示例给发个啊,非常感谢了,我邮箱dingguodong@foxmail.com |
dcopyboy
46996
|
2013/7/6 15:32:46 |
delphi 可用的二维码控件 源代码很多,我主要使用: St2DBarC.pas 用于 MaxiCode 及 PDF417 这2个 二维条码。 ECC200.pas 用于 ECC200 二维条码。 QRCode.pas 小日本开发的,目前最为常用的 二维码QRCode。 上述几种是目前最常用的二维码,已可以满足日常开发使用,且源代码相对独立,引用非常方便,也可与fastreport等各类报表类结合使用。
QRCode.pas 很多网友表示对中文的支持不好,容易出现乱码。这是小日本为提高条码信息量,对JIS(日文汉字)部分进行优化设计而引起的,只需要修改一、二句语句就可以完美支持中文。网友们先试试,有问题可以联系我。 |
xiaoxiong_lack
46495
|
2013/6/7 16:26:50 |
还是调了第三方的QR条码生成库 |
danielhuang
46422
|
2013/5/31 13:11:06 |
先下载了看一下,请问:支持中文吗? |
fsse2000
46405
|
2013/5/28 16:13:22 |
这个D7怎么用啊,如何编译到 FastReport里面? |
yjianxi
46268
|
2013/5/18 22:04:21 |
不支持汉字?只识别数字 ? |
yepemig
45813
|
2013/4/18 22:57:35 |
打错了 能加一上PDF417编码吗 |
yepemig
45812
|
2013/4/18 22:57:02 |
能加一上PDF427编码吗 |
syrett
45060
|
2013/2/25 9:57:27 |
我是winform 开发,求使用方法 |
dunlee
43948
|
2013/1/28 14:52:34 |
frx.inc找不到?好久没玩delphi了,不知道怎么弄了。 |
demonbaby
43076
|
2012/12/5 11:11:25 |
多谢楼主,fastreport最新版本是 v4.13,楼主赶快更新哦 |