本文介紹了在矢量圖像中創建二維碼的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我可以用ZXing成功創建二維碼PNG圖像,但沒有簡單的方法可以獲得SVG或EPS格式的輸出。
如何從QRCodeWriter創建的BitMatrix對象創建矢量圖像?
我發現最簡單的方法是用iText創建推薦答案,然后將生成的pdf轉換為eps或svg。以下是創建PDF的代碼:
@Test
public void testQRtoPDF() throws WriterException, FileNotFoundException, DocumentException, UnsupportedEncodingException {
final int s = 600;
int r = 1;
Charset charset = Charset.forName( "UTF-8" );
CharsetEncoder encoder = charset.newEncoder();
byte[] b = null;
try {
// Convert a string to UTF-8 bytes in a ByteBuffer
ByteBuffer bbuf = encoder.encode( CharBuffer.wrap(
"1é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò1" +
"2é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò2" +
"3é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò3" +
"4é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò4" +
"5é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò5" +
"6é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò??é?à?èüùò6" ) );
b = bbuf.array();
} catch ( CharacterCodingException e ) {
System.out.println( e.getMessage() );
}
String content = new String( b, "UTF-8" );
QRCodeWriter qrCodeWriter = new QRCodeWriter();
Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>( 2 );
hints.put( EncodeHintType.CHARACTER_SET, "UTF-8" );
BitMatrix qrCode = qrCodeWriter.encode( content, BarcodeFormat.QR_CODE, s, s, hints );
Document doc = new Document( new Rectangle( s, s ) );
PdfWriter pdfWriter = PdfWriter.getInstance( doc, new FileOutputStream( "qr-code.pdf" ) );
doc.open();
PdfContentByte contentByte = pdfWriter.getDirectContent();
contentByte.setColorFill( BaseColor.BLACK );
boolean d = false;
for ( int x = 0; x < qrCode.getWidth(); x += r ) {
for ( int y = 0; y < qrCode.getHeight(); y += r ) {
if ( qrCode.get( x, y ) ) {
contentByte.rectangle( x, s - y, r, r );
contentByte.fill();
contentByte.stroke();
}
}
}
doc.close();
}
然后我使用圖像魔術進行轉換。如下所示:
convert qr-code.pdf qr-code.eps
不能對SVG執行同樣的操作
convert qr-code.pdf qr-code.svg
這不起作用
我用一些長內容測試了這段代碼,它可以處理多達600個字符。這可能取決于手機或屏幕上攝像頭的精確度。
我希望這能幫助某人
這篇關于在矢量圖像中創建二維碼的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,