Quantcast
Channel: Aspose.BarCode Product Family
Viewing all 333 articles
Browse latest View live

Aspose.BarCode validate the barcode size on the images

$
0
0

Hi:

We have bought a Aspose.BarCode Product  licence for our company. Actually we have a C# 2008 windows application which reads the barcodes on the images. Now we would like to validate the barcode size on the images.  I mean validate if the barcodes meets with an specific size.

It is possible to validate the barcode size for the images with Aspose.BarCode component?

Could you please send me an example?

Thanks.

Denis Mazariegos.


PDF417 not recognised (version 6.8.0.0)

$
0
0
hi,
We have PDF417 barcode with special encoded string in some documents, and this barcode doesn't recognised by Aspose.BarCode.Toolkit.exe. see example in attachment.

Some applications can read this image on my android phone, so this barcode is valid.

We want to decode some paper docs in our applications and looking for working SDK now.

Reading Barcode From Scanned Image File

$
0
0
We have currently running project which uses free open source Barcode Image Processing library. We came across some problems with this free library that is why I start searching for better alternatives.

We want to be able to set barcode reading order and / or barcode reading section on image. We do not want to write or generate barcode. We only want to read them from image.

Is this possible with your product (Aspose.BarCode for .NET) ? If it is, could you send me an example code how to do this ? I will try to do this with your trial version of your product.

Regards,
Murat Yasar 

Micro PDF417 and Micro QR Code support?

$
0
0
Hi there,

Does the BarCode library support Micro PDF 417 or Micro QR Code?  I'm looking to have the smallest 2D possible and as I understand it, those are a good avenue for me.

Cheers,

Mark

Barcode Recognition Efficiency from 5.7.0.0 to 6.8.0.0

$
0
0
Hello,

We have updated our Aspose.Barcode for .NET from version 5.7.0.0 to 6.8.0.0 and noticed an impact in barcode recognition efficiency. Attached contains sample projects to demonstrate the said behavior. Given the same code implementation, the barcode reader from 5.7.0.0 can read all four barcodes from the image, while the one from 6.8.0.0 can only read two. We also tried using different orientation hints since some of the barcodes in the sample image are rotated, but the latest version still didn't match the efficiency given by the 5.7.0.0 version.

Kindly advise if this is an issue with the DLL or there was just something missing from the code sample provided.

NOTE: License file is removed for security purposes.

Re: Generating Databar Stacked

$
0
0
I am evaluating your libraries and we are also looking for the functionality of GS1 Database Stacked barcode, though in Java. When are you going to provide such functionality on your Java Library. Thanks

Single lowercase "f" using Code128 causes java.lang.StringIndexOutOfBoundsException

$
0
0
I ran into a strange error testing the barcode library. Trying to print a Code128 barcode with just a lower case "f" causes an exception.
java.lang.StringIndexOutOfBoundsException: String index out of range: 0
Any other single character does not cause this exception.

Can you verify this on your end?
Thanks

My Code:

try{
        BarCodeBuilder builder = new BarCodeBuilder();
        builder.setCodeText("f");
        builder.setSymbologyType(Symbology.Code128);
        String strImagePath = "c:\\test\\Test128-f.jpg";
        builder.save(strImagePath);
    }catch (Exception e){
            e.printStackTrace();
        }

The Exception:
java.lang.StringIndexOutOfBoundsException: String index out of range: 0
at java.lang.String.charAt(String.java:658)
at com.aspose.barcode.w.a(Unknown Source)
at com.aspose.barcode.w.i(Unknown Source)
at com.aspose.barcode.w.a(Unknown Source)
at com.aspose.barcode.l.E(Unknown Source)
at com.aspose.barcode.l.B(Unknown Source)
at com.aspose.barcode.l.C(Unknown Source)
at com.aspose.barcode.BarCodeBuilder.k(Unknown Source)
at com.aspose.barcode.BarCodeBuilder.f(Unknown Source)
at com.aspose.barcode.BarCodeBuilder.save(Unknown Source)

barcode recognition

$
0
0

having a problem decoding a barcode.

I have tried it with my commercial scanners, i-nigma and a 2d reader from codeproject and they all work

Code is as follows it try's to read but never finds a barcode.

Is it that aspose barcode does not support this type of barcode

these are 2d  matrix codes on the bottom of thermo scientific tubes.

I have attached the image files

the first is actual image

the second is the image colors inverted

any help would be appreciated.

 

private void button2_Click(object sender, EventArgs e)
        {
            Aspose.BarCodeRecognition.BarCodeReader reader = new Aspose.BarCodeRecognition.BarCodeReader(imagepath, Aspose.BarCodeRecognition.BarCodeReadType.AllSupportedTypes);
                 try
            {
                while (reader.Read())
                {

//never gets to here
                    // get the region information
                    Aspose.BarCodeRecognition.BarCodeRegion region = reader.GetRegion();
                    if (region != null)
                    {
                        // display x and y coordinates of barcode detected
                        System.Drawing.Point[] point = region.Points;

                        textBox1.Text = textBox1.Text + "Top left coordinates: X = " + point[0].X + ", Y = " + point[0].Y + "\r\n";
                        textBox1.Text = textBox1.Text + "Bottom left coordinates: X = " + point[1].X + ", Y = " + point[1].Y + "\r\n";
                        textBox1.Text = textBox1.Text + "Bottom right coordinates: X = " + point[2].X + ", Y = " + point[2].Y + "\r\n";
                        textBox1.Text = textBox1.Text + "Top right coordinates: X = " + point[3].X + ", Y = " + point[3].Y + "\r\n";
                        textBox1.Text = textBox1.Text + "Codetext: " + reader.GetCodeText() + "\r\n";
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
            // close reader
            reader.Close();

        }
 


Aspose.BarCode for .NET

$
0
0
Hi, I need to add text to the footer of a barcode label created using Aspose.BarCode. Is this possible?
This message was posted using Banckle Live Chat 2 Forum

not able to read codetext from datamatrix barcode images

$
0
0
Hello,

I am not able to read the codetext from the data matrix images. Can you show me some examples on reading the code test for these kind of images?  I used the below snippet, but i get empty string. we need to be able to scan for this image.

f is having the path to the image file.

barcodevalue = ExtractBarCode(f, BarCodeReadType.DataMatrix);

private static string ExtractBarCode(string f, BarCodeReadType bcType)
        {
            BarCodeReader reader;
            var codeText = string.Empty;

            reader = new BarCodeReader(f, bcType);
            while (reader.Read())
            {
                Console.WriteLine("BarCode Type: " + reader.GetReadType());
                codeText = reader.GetCodeText();
                Console.WriteLine("BarCode CodeText: " + codeText);

            }
            reader.Close();

            return codeText;
        }

How to generate GS1 DataBar Expanded Stacked In Java

$
0
0
Hi to all,

I'm trying to generate GS1 DataBar Expanded Stacked barcode. But I cannot found anything which can help me to generate this kind of barcode. This is available or not..? 

2D (DataMatrix) barcode can not be read out after upgrade from 4.1.0.0 to 5.7.0.0

$
0
0

We have a 2D barcode (DataMatrix format), it can be read in Ver 4.1.0.0, but after we upgrade to 5.7.0.0, it can not be read out. Even 5.9.0.0 and 6.0.0.0, it can not be read out.

We use Aspose.Barcode.Tollkit.exe with the same image, it can be read out in  4.1.0.0, but no barcode in 5.7.0.0.

I have attached the image. Could you please check this problem? It is very urgent. Thanks.

 

What to encode?

$
0
0
Hello
I am trying to make my own demandwarescript to make barcode through the web API.
I have however run into some problems in calculating the correct signature value.

When i try and follow the steps outlined in this guide: http://www.aspose.com/docs/display/totalcloud/Request+Format

I can encode the testURL http://api.saaspose.com/storage/folder/test_folder?appSID=c821f123-1a8b-4b97-925a-9d69a6b2fcd8 perfectly fine to the value in the example: Z98TBrlwdtx3pTa6fWVD/Q0c2dE=

But when i try to apply encode the URL for a barcode, the signature doesent correspond with the value that i get when i use your "Test API" to generate the URL. (http://api.aspose.com/v1.1/Help/Api/GET-barcode-generate_appSid_text_type_format_resolutionX_resolutionY_dimensionX_dimensionY_enableChecksum)

the URL i try to encode ( with the corresponding key), done like in the above example:
http://api.aspose.com/v1.1/barcode/generate?appSid=2b72c06d-5f0b-404c-a0e5-0d52b4a1089f&text=9810000000273&type=ean13&format=JPG&resolutionX=400&resolutionY=400&dimensionX=0.2&dimensionY=2&enableChecksum=Default

My question is, am i doing something wrong?
Is this not the correct URL i should encode?
Should the URL have another format?

image reading

$
0
0
I wonder if it is possible to read the barcode of attached image thanks .

Feasibility of Reading multple barcode (fonte 3of9) at once

$
0
0

Hi

Have attached image which has bar codes for each field. Would like to know the feasibility to reading multiple fields of bar codes at once using Aspose APIs(java).. Please check and let me know the feasibility.

Thanks in advance.

Raji Reddy

 


Errror Loading in DataTools SQL2012

$
0
0
Getting the following error when trying to add Aspose to DataTools toolbox, see attachment.


PDF417 incorrectly recognized (version 6.5.0 & 6.6.0)

$
0
0
I upgraded from aspose.barcode.dll 6.4.0 to version 6.6.0 and some PDF417 barcodes are being recognized incorrectly. Version 6.4.0 and below recognize the barcode correctly.

The attached barcode is encoded with the text: 2791RX593
Versions 6.5.0 & 6.6.0 incorrectly recognize this as: 2001RXAAJD

Version 6.4.0 and below do the right thing,

code39 barcode is not recognized from tif image

$
0
0
Hi,

The tif image that I sent contains 2 barcodes, but these could not be recognized with Aspose.BarCode for Java.

This message was posted using Email2Forum by saqib.razzaq.

setTextAlign being reversed for left and middle

$
0
0
I am setting text alignment as follows, but the left align and middle align seem to be reversed.
I am using the java barcode 6.0.0.0 build. Can you verify that these are working as they should?

builder.getCaptionBelow().setTextAlign(Alignment.Left); //This is aligning to the middle
builder.getCaptionBelow().setTextAlign(Alignment.Middle); //This is aligning to the left builder.getCaptionBelow().setTextAlign(Alignment.Right); // This works correctly

2D Barcode-PDF417 -not reading values properly

$
0
0
Hi,
  I'm using Aspose barcode(dll version -6.6.0.0 -.Net 4.0) to read barcode type PDF417 . Barcode is identified as PDF417 but result values are not read properly. 
 I have used 200 DPI tiff image, results has lot of junk values.  I have tried with 240 DPI, 300 DPI also & images doesn't give any proper results.

Attaching sample images for your review.

 Below standard code I have used.

    BarCodeReader reader;
                reader = new BarCodeReader(FileName, BarCodeReadType.Pdf417);
               while (reader.Read()) //Any barcode type
                {
                    MessageBox.Show("Symbology Type: " + reader.GetReadType() + "  CodeText: " + reader.GetCodeText());

                }
  reader.Close();

Viewing all 333 articles
Browse latest View live