字串转二维码,简单易用,无乱码
DECLARE FullQRCode IN "QRCodeLib.dll" ;INTEGER lAutoConfigurate, ;
INTEGER lAutoFit, ;
LONG nBackColor, ;
LONG nBarColor, ;
STRING cText, ;
INTEGER nCorrectionLevel, ;
INTEGER nEncoding, ;
INTEGER nMarginPixels, ;
INTEGER nModuleWidth, ;
INTEGER nHeight, ;
INTEGER nWidth, ;
STRING cFileName
m.lAutoConfigurate = .T.
m.lAutoFit = .T.
m.nBackColor = RGB(255, 255, 255) && White
m.nBarColor = RGB(0, 0, 0) && Black
m.nCorrectionLevel = 1 && 0-[L]ow 7%, 1-[M]edium 15%, 2-[Q]uartile 25%, 3-[H]igh 30%]
m.nEncoding = 4 && Automatic encoding algorithm
m.nMarginPixels = 0 && pixels
m.nModuleWidth = 2 && pixels
m.nHeight = 132 && pixels
m.nWidth = 132 && pixels
m.tcText="123中国123中国123中国123中国123中国123中国123中国"
m.tcFile="1.bmp"
FullQRCode(m.lAutoConfigurate, m.lAutoFit, m.nBackColor, m.nBarColor, ;
m.tcText, m.nCorrectionLevel, m.nEncoding, m.nMarginPixels, ;
m.nModuleWidth, m.nHeight, m.nWidth, m.tcFile)
QRCodeLib.dll文件是https://里面的文件
qrcodelib.rar
(172.79 KB)