Click here to Skip to main content
15,888,315 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
hi, i need to do small program which can save image of 100 x 100 in the qr, what i am trying to do is to save the image in pixel format in text file, then compress that text file. it will reduce the size. next i am trying to split that file in the chunks of size 3KB. i have already done till this point.

What I have tried:

now i want to generate the QR code of each chunk. i am trying to read the chunk (which is file) information in bytes

C#
<pre lang="C#">byte[] fileBytes = System.IO.File.ReadAllBytes(chunkName);</pre>



how can i save this in QR any idea please help.
Posted
Updated 10-Oct-16 9:46am
Comments
Richard MacCutchan 6-Oct-16 5:31am    
Question is not clear, a QR code is a single image containing all the required information.

1 solution

Take a look at this open source QR code library. You should be able to utilize it to encode the "chunks" into individual QR codes and export them as images.
Open Source QRCode Library
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900