Spire.Barcode is a professional barcode library specially designed for .NET developers (C#, VB.NET, ASP.NET, .NET Core) and Java developers (J2SE and J2EE) to generate, read and scan 1D & 2D barcodes.

Fri Jun 07, 2013 8:42 am

On 2013 Jun.7th, we launched our highly–anticipated, new product, Spire.BarCode. As a 100% FREE and professional component developed by our professional colleagues, Spire.BarCode is designed for .NET developers (C#, VB.NET, ASP.NET) to generate, read 1D & 2D barcodes.

This free product makes it incredibly simple and convenient for developers and programmers to add Enterprise-Level barcode formats to their .net applications (ASP.NET, WinForms and Web Service). By just one line of code to create and read1D & 2D barcode, Spire.BarCode stands out for offering most efficient and convenient way to integrate barcode processing. It allows developers create barcode images in any desired output image format, like Bitmap, JPG, PNG, EMF, TIFF, GIF and WMF.

Welcome to experience our free Spire.Barcode with download here :
http://www.e-iceblue.com/Download/download-barcode-for-net-now.html

Your comments and suggestions are always highly appreciated and it may help us improve our service a lot. Once you meet some problems about our software, please inform our support team by email (Support@e-iceblue.com), we are always here for help!
User avatar

amy.zhao
 
Posts: 2766
Joined: Wed Jun 27, 2012 8:50 am

Thu Jun 27, 2013 9:59 am

hi
i just now downloaded and installed the barcode software. now i want to use it with vb windows application. how can i use it. i am not able to see any option of drag and drop in tool box also. if you have any manual for this software. please share with me.

Thanks in advance

dev963
 
Posts: 1
Joined: Thu Jun 27, 2013 8:40 am

Fri Jun 28, 2013 3:00 am

Dear dev,

Thanks for your inquiry.
Please follow the steps below.
    1. Add a new tab called Spire.BarCode to Toolbox, please refer to 1.jpg.
    2. To choose Items for the tab, then you will see a dialog box (2.jpg), to browse and add Spire.BarCode.dll file.
    3. Now you can see BarCodeControl in Toolbox, just like 3.jpg.

If you have any other problem, please feel free to contact us.

Regards,
Amy
E-iceblue support team
User avatar

amy.zhao
 
Posts: 2766
Joined: Wed Jun 27, 2012 8:50 am

Fri Jul 19, 2013 8:15 pm

Hi, I wanted to verify licensing for Spire.BarCode for .NET. If I use it in a commercial application, can I redistribute the dll royalty free? Is there anything else that is required (licensing agreement, attribution to IceBlue, renewal fees, etc.?) Thanks.

icyblue
 
Posts: 1
Joined: Fri Jul 19, 2013 7:58 pm

Mon Jul 22, 2013 8:08 am

Hello,

Thanks for your inquiry.

If you only use the Barcode Library, you don’t need to buy any License or do something else, because the Spire.Barcode is 100% free.

If there are any questions, welcome to get it back to us.

Thanks,
Gary
E-iceblue support team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Sat Sep 07, 2013 11:04 am

I need to read barcode from a PDF file.
Please help

smishra27
 
Posts: 1
Joined: Fri Sep 06, 2013 9:53 am

Mon Sep 09, 2013 9:11 am

Hello,
Thanks for your inquiry.
You could refer to the following method, and you also need to use our Spire.Pdf product.
http://www.e-iceblue.com/Download/download-pdf-for-net-now.html
Code: Select all
//create a pdf document.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile(@"../../PDF_Barcode.pdf");
IList<Image> images = new List<Image>();
foreach (PdfPageBase page in doc.Pages)
     {
          foreach (Image image in page.ExtractImages())
           {
               images.Add(image);
           }
     }
//save the images
int index = 0;
foreach (Image image in images)
     {
          String imageFileName = String.Format(@"../../Image-{0}.png", index++);
          image.Save(imageFileName, ImageFormat.Png);
      }
//scan the images
string[] datas_1 = BarcodeScanner.Scan(@"../../Image-0.png");
string[] datas_2 = BarcodeScanner.Scan(@"../../Image-1.png");
string[] datas_3 = BarcodeScanner.Scan(@"../../Image-2.png");
string output = "";
if (datas_1.Length != 0)
output = output + datas_1[0] + "\n";
if (datas_2.Length != 0)
output = output + datas_2[0] + "\n";
if (datas_3.Length != 0)
output = output + datas_3[0] + "\n";
Console.WriteLine(output);
Console.ReadLine();
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Thu Sep 12, 2013 9:38 am

Hello,

Have you tried the method? Has the issue been resolved? Could you please give us some feedback if convenience?

If there are any questions, welcome to get it back to us.

Thanks And Regards,
Gary
e-iceblue suppot team
User avatar

Gary.zhang
 
Posts: 1380
Joined: Thu Apr 04, 2013 1:30 am

Thu Feb 25, 2016 5:26 am

Hello
I have downloaded Spire Barcode & it works perfect

can i use it in my commercial application fore free or i have to buy licence
please guide me
thanks

JayeshCode
 
Posts: 4
Joined: Thu Feb 25, 2016 5:19 am

Thu Feb 25, 2016 6:20 am

Hi,

Our Spire.Barcode component is Free totally. You can use it in commercial application.

Best Regards,
Amy
E-iceblue support team
User avatar

amy.zhao
 
Posts: 2766
Joined: Wed Jun 27, 2012 8:50 am

Thu Feb 25, 2016 7:07 am

How to use spire barcode in vb.net form

JayeshCode
 
Posts: 4
Joined: Thu Feb 25, 2016 5:19 am

Thu Feb 25, 2016 7:26 am

Hi,

Please refer to the below tutorial on our website.
http://www.e-iceblue.com/Tutorials/Spir ... rCode.html

Best Regards,
Amy
E-iceblue support team
User avatar

amy.zhao
 
Posts: 2766
Joined: Wed Jun 27, 2012 8:50 am

Return to Spire.BarCode

cron