Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7996683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:46:05+00:00 2026-06-04T14:46:05+00:00

I can successfully create QR Code PNG images with ZXing but there is no

  • 0

I can successfully create QR Code PNG images with ZXing but there is no easy way to get the output as SVG or EPS.

How can I create a vector image from the BitMatrix object that is created by the QRCodeWriter?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T14:46:06+00:00Added an answer on June 4, 2026 at 2:46 pm

    The easiest way I found was to create a PDF with iText and then convert the resulting PDF to EPS or SVG. Here is the code to create the 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();
       }
    

    I then use image magic for the conversion. Like so:

    convert qr-code.pdf qr-code.eps
    

    the same can NOT be done for svg

    convert qr-code.pdf qr-code.svg
    

    this does not work

    I tested this code with some long content and it worked with up to 600 characters. This is probably down to the precision of either camera on the phone or screen.

    I hope this helps someone

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Tell me please, how can I create xsd schema, which successfully validate the following
I can successfully get the title, version and icon of an app using the
I can successfully do this: App.SomeCollection = Backbone.Collection.extend({ comparator: function( collection ){ return( collection.get(
Can anyone explain how I can successfully get my processes communicating? I find the
I can successfully compiled and run the Hello World code. Now I want to
I can successfully use Python to create a database and run the execute() method
I have a problem with the MapView. Here's my scenario: I can successfully create
I can successfully receive email from SendGrid and process its data. My problem is
the title already tells the question: you can successfully call the Print-Method on a
i have an iphone 3g and can successfully send text messages using the PHP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.