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

Getting Aspose.BarCode for SSRS 2012 to work in Visual Studio 2012

$
0
0
We currently use Aspose 4.8 for SSRS 2005. We are upgrading to SSRS 2012 using Visual Studio 2012. We do not have Visual Studio 2008 or Visual Studio 2010. I have installed Aspose 6.2, however I cannot add it to the toolbox. I believe this might be a known issue with Visual Studio 2012 so I tried loading an rdl with the 4.8 barcode on it hoping it would recognize it, but it does not. I need a way to use 6.2 in Visual Studio 2012. It does not matter if it is in the toolbox if I can just get it on one report I can copy the object from one report to another as a temporary work around. Does anyone have a suggestion on how to get this working?

Generated Barcode is not getting displayed after deploying in the Report Server

$
0
0

We have a requirement to add barcode in SSRS 2012 reports. We found a product in your site and tried the demo version of that.

It was working fine from reporting service tool (SSRS). When we previewed the report from the tool we were able to see the barcode, but when we deployed the report in the report server the barcode wasn't getting displayed.


Below are the environment details:

Operating System:   Windows Server 2012 Standard

Operating System Architecture Type:  64 bit Operating System

SQL Server Version:   Sql Server 2012

Aspose Reporting Version:  6.2.0

Is Visual Studio 2012 supported

$
0
0
Does this control work with Report Designer in Visual Studio 2012?  Kind of a pre-sales question.

Re: Code128 Barcode / SSRS 2012

$
0
0
Sorry but v5.6.2.0 still cannot be added to VS 2012 toolbox to drop it in SSRS 2012 reports

When you select the barcode dll to be added to VS 2012 (while designing a RDL report for SSRS 2012) the following message is displayed "The following controls were successfully added to the toolbox BUT ARE NOT ENABLED IN THIS ACTIVE DESIGNER"

Adding Reporting Services Barcode component to VS2012

$
0
0
Hi Support.

I have a question about adding Reporting Services Barcode component to VS2012
toolbox. How to acheive this?

Another question, if we already have a report that has the barcode in it (it is viewable in Visual Studio 2012 designer and previewer) - can we deploy it successfully? Any help will be appreciated.

Thanks,

This message was posted using Email2Forum by Tilal Ahmad Sana.

Barcode Failing To Preview In Visual Studio

$
0
0

Hi

I have a named SQL instance and therefore had to install Aspose manually. I have added the control to the toolbox and can create the control on reports. However, when I attempt to preview the report, the control is not visible and I get the following warning...

[rsCRIControlFailedToLoad] The 'BarCode' extension failed to load the extension assembly. The custom reportitem 'BarCode1' will render the AltReportItem or preserve the white space if no AltReportItem is explicitly defined.

Please advise. I am running SQL Server 2012 Standard on Windows Server 2012 Standard 64 bit.

Thanks

Steve

Issue with Databar Schema

$
0
0
I am having an issue creating a Databar Expanded version of the following string (Note: it appears 'stacked' but is identified as Databar expanded):
'08110100775670992573125110711101107219211030193140420'

I get strings similar to this consistently from my barcode scanning software (Note: it isn't Aspose); however, when I try to generate these barcode strings as Databar Expanded, I consistently get the following error from Aspose:

Allowed schemas for codetext are:
1. (01)*** - 13 or 14 digits
2. (up to 5 digits)*** - Max 100 chars (depending on text this value may be lower) . Allowed are: 0-9 A-Z a-z and some punctuations
3. (01)**(3103)** - AI 01 must start with 9. Value cannot be greater than 32767 and must be 6 digits long
4. (01)**(3202)** - AI 01 must start with 9. Value cannot be greater than 9999 and must be 6 digits long
5. (01)**(3203)** - AI 01 must start with 9. Value cannot be greater than 22767 and must be 6 digits long
6. (01)**(392x)** - AI 01 must start with 9. Value must be max 20 chars (see item 2). X must be between 0 and 3
7. (01)**(393x)** - AI 01 must start with 9. Value must be max 20 chars (see item 2). X must be between 0 and 3
8. (01)**(310x)*(11)** - Value (date) must be in YYMMDD format and must be 6 digits long
9. (01)**(320x)*(11)** - Value (date) must be in YYMMDD format and must be 6 digits long
10. (01)**(310x)*(13)** - Value (date) must be in YYMMDD format and must be 6 digits long
11. (01)**(320x)*(13)** - Value (date) must be in YYMMDD format and must be 6 digits long
12. (01)**(310x)*(15)** - Value (date) must be in YYMMDD format and must be 6 digits long
13. (01)**(320x)*(15)** - Value (date) must be in YYMMDD format and must be 6 digits long
14. (01)**(310x)*(17)** - Value (date) must be in YYMMDD format and must be 6 digits long
15. (01)**(320x)*(17)** - Value (date) must be in YYMMDD format and must be 6 digits long

I was under the assumption that even though the original barcode appeared to be 'stacked' that the schema would still be supported by Databar expanded, just in a longer barcode. Is this not working because Aspose doesnt support Databar Stacked yet? Or could there possibly be a schema missing?

I can supply more examples if needed.

Joe

barcodereader.read() occure InvalidOperationException

$
0
0

I'm use c# (VS2010, dot net ver4.0 client profile).

Barcode.net version is 6.6.0

I was buy it at this week.

and I downloaded it 1st Dec. 2014. ( a few days ago. )

 

first of all, Review simple code.

 

---------  Begin my CODE    -----------------

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using Aspose.BarCode;
using Aspose.BarCodeRecognition;

namespace BarcodeReader
{
    public partial class cBarcodeReader : Form
    {       
        cBarcode myBar;
        public cBarcodeReader()
        {
            InitializeComponent();
            myBar = new cBarcode();
            MessageBox.Show(myBar.GetBarcode(@"D:\barcode\TestImg.bmp"));
            this.Close ();
        }
    }

    class cBarcode {
        public cBarcode()   {
            Aspose.BarCode.License lic = new Aspose.BarCode.License();
            lic.SetLicense(@"D:\barcode\Aspose.BarCode.lic");
        }
        public string GetBarcode(string filename)     {
            string ret = "";

            BarCodeReader br = new BarCodeReader(filename, BarCodeReadType.Code128 |
                                                           BarCodeReadType.DeutschePostIdentcode |
                                                           BarCodeReadType.DeutschePostLeitcode |
                                                           BarCodeReadType.QR);
            if (br.Read()) ret = br.GetCodeText();  // get only first code/
            br.Close();
            return ret;
        }
    }
}
---------  Finish my CODE    -----------------

when I run this code (both debug and release mode). I got a  InvalidOperationException  at br.Read().

I don't know why.

please solve it.

Help me.

 


bar coe is not reading

$
0
0
hi Team,

Please find the sample code and the sample file.
The code is not reading the barcode.

 private List<string> ReadBarcodesFromImage(ACS.PMO.IFOComp.IFOImage image)
        {
            List<string> barcodes = new List<string>();

            // -- get the image path from the IFO
            string FullImageName = image["ImageName"];
            if (FullImageName == null || FullImageName.Trim() == string.Empty)
                throw new Exception("IFO Line With No ImageName Attribute Found.");
            if (!System.IO.File.Exists(FullImageName))
                throw new Exception("Image Not Found At Path '" + FullImageName + "'.");

            //if (FullImageName.StartsWith("\\\\"))
            //    FullImageName = FullImageName.Trim().Substring(1);

            // -- read the barcodes

            Aspose.BarCodeRecognition.BarCodeReader reader = new Aspose.BarCodeRecognition.BarCodeReader(FullImageName, Aspose.BarCodeRecognition.BarCodeReadType.Code39Extended);

            try
            {
              
                string bc = string.Empty;

                // -- loop the barcodes found
                while (reader.Read())
                {
                    bc = reader.GetCodeText().Trim();

                    // -- we want to check the barcode against the regex
                    // -- if we don't find a match, throw this barcode away
                    // -- but only do this logic if they have at least one regex defined
                    if (FRegExpressionList.Count > 0)
                    {
                        string bc2 = bc;
                        bc = string.Empty;
                        foreach (string f in FRegExpressionList)
                        {
                            if (System.Text.RegularExpressions.Regex.IsMatch(bc2, f))
                            {

                                bc = bc2;
                                //need to review this code...checking the regular expression with dcert(if match found)
                                //if (f == DcertRegx)
                                    //GetAllDcertBarCodeDetails(bc);

                                break;
                            }
                        }
                    }

                    if (bc.Trim() != string.Empty)
                        barcodes.Add(bc.Trim());
                }
            }

            finally
            {
                reader.Close();
                reader = null;
            }
            return barcodes;
        }


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

 

Compact Framework Performance

$
0
0
I am using an HTC touch pro 2.  I took a photo of a Code 39 barcode and had it process it.  It takes 32 seconds for it to return the result.  I changed the camera to take a black and white photo and it was able to increase the speed to 30 seconds.

Is this the expected speed? Or is there a way to make it run faster?

2D DataMatrix Barcode can not read

$
0
0
Hi,

Please check the attached barcode image, it can not be read out. Could you please help to check? Thanks.

Lena

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();

Aspose.Barcode for java

BarCodeReader.Read() not reading barcode in the while loop

$
0
0
Hello,

I am experiencing a very strange issue with the BarCodeReader.Read() method.  When my program gets to reader.Read(), the loop is never entered; which to me indicates that the barcode cannot be read.  However, If I comment out the while loop and execute the various reader methods the barcode can be read successfully. 

For example, the following code snippet will result in a barcode not being read:

BarCodeReader reader = new BarCodeReader(@"C:\barcode.jpg"BarCodeReadType.Code128);

while (reader.Read())

{

    Console.Write("Code Text: " + reader.GetCodeText());

    Console.Write("Symbology Type: " + reader.GetReadType());

}

reader.Close();


The following will result in a barcode successfully being read without issue:


BarCodeReader reader = new BarCodeReader(@"C:\barcode.jpg"BarCodeReadType.Code128);

Console.Write("Code Text: " + reader.GetCodeText());

Console.Write("Symbology Type: " + reader.GetReadType());

reader.Close();


I have attached a copy of the PDF with barcode.


Thank you!


Example missing

$
0
0
Hi

seems that the "Insert BarCode in a Multi-page Tiff file" sample is not available anymore ....
The weird thing is that on github is listed as available example

https://github.com/asposebarcode/Aspose_BarCode_NET

but on Aspose Example Dashboard not. And of course Git Hub doesn't contains the named example.

Any idea ?

regards

G

Inconsistant results for Pharmacode recognition, depending on zoom level

$
0
0
We are encountering an issue with Pharmacode recognition. I have reproduced this in a simple test driver and our application. Essentially if the input file has the same barcode but rendered at a different resolution the results are inconsistent. Our application allows the user to select an area of a page (usually a pdf file) and we render that selected area to raster, which we pass to the BarCode library. I have attached three raster images of the same barcode. The first seems to return the correct result, the second (test4.jpg)returns a different value, the third (test5.jpg) returns 4 pharmacodes with different values.

Incorrect recognition of UPC vs EAN barcodes

$
0
0
For most EAN or UPC barcodes the library seems to return both types as an answer. The test file attached has an example of each type. The barcode library finds two barcodes of both EAN and UPC type at the same location (i.e. 4 barcodes, 2 EAN, 2 UPC), when the first should only be EAN and the second only UPC.

PDF417 incorrectly recognized (version 6.5.0 &amp; 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,

Very bad recognition results

$
0
0
Hi

We are using barcode recognition for a while now, but we allways get very bad recognition results. Sometimes out of 50% are not recognized correctly!

Now tried the new version of the library, with the following result:

Code128 is recognized more bad than in the previous version
Pdf417 still very bad results

The resolution of the documents are perfect. High resolutions scans (color) and after splitted with the Aspose.Pdf.Kit to PNG documents.

When downloding some freeware tools, we get perfect results with that!

What is wrong?


Regards

Christian
Viewing all 333 articles
Browse latest View live