Create barcode images

I need to send emails to several thousand customers with a unique barcode so that they can redeem it either in instore mode or on the Internet.

We have a list of coupon / barcode codes to use and the ability to dynamically pull these codes into email so that the client sees a unique code. The problem is that I need to somehow generate several thousand barcode images that are created using unique codes. How can i solve this?

That would be great if our email had this functionality, but unfortunately not: http://www.emaildirect.com/blog/2011/11/create-unique-barcodes-with-emaildirect/

Any help would be greatly appreciated.


I found my answer!

Using the barcode generator www.barcodesinc.com, I created the URL and entered it into my email address.

For example: http://www.barcodesinc.com/generator/image.php?code=999999999&style=197&type=C128B&width=200&height=50&xres=1&font=3

Then I changed 999999999 in the URL to my conditional code to go to a specific code for that person, and also return a barcode image for that code!

+6
source share
4 answers

I found my answer!

Using the barcode generator www.barcodesinc.com, I created the URL and entered it into my email address.

For example: http://www.barcodesinc.com/generator/image.php?code=999999999&style=197&type=C128B&width=200&height=50&xres=1&font=3

Then I changed 999999999 in the URL to my conditional code to go to a specific code for that person, and also return a barcode image for that code!

+5
source

I am not an expert on this issue and have not touched html, but you can serialize each image and follow this example which has an example code for a QR code given a string.

Imports ThoughtWorks.QRCode.Codec Dim objQRCode As QRCodeEncoder = New QRCodeEncoder() Dim imgImage As Image Dim objBitmap As Bitmap objQRCode.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE objQRCode.QRCodeScale = 2 objQRCode.QRCodeVersion = 5 objQRCode.QRCodeErrorCorrect = ThoughtWorks.QRCode.Codec.QRCodeEncoder.ERROR_CORRECTION.L imgImage = objQRCode.Encode("Test Data") objBitmap = New Bitmap(imgImage) objBitmap.Save("C:\QRCode.jpg") 
0
source
 <img src="http://qrfree.kaywa.com/?s=8&d=your+text+here" alt="QRCode"/> 

OR

http://qrfree.kaywa.com/?s=8&d=your+text+here

0
source

Hey. Try contacting http://www.linktagger.com and ask if they can help. They provide enterprise type services for the city where I live on bus maps and terminals so they can help you.

0
source

All Articles