I'm trying to create a PDF417 Reader Application. I was able to create PDF417 Codes.
This is the code I use to create the PDF417 Codes:
using STROKESCRIBECLSLib;
StrokeScribeClass ss = new StrokeScribeClass();
ss.Alphabet = enumAlphabet.PDF417;
ss.Text = "My Text";
ss.PDF417ErrLevel = 8;
ss.PDF417SymbolAspectRatio = 5;
int w = ss.BitmapW;
int h = ss.BitmapH;
ss.SavePicture(@"D:\pdf417.bmp", enumFormats.BMP, w, h);
if (ss.Error != 0)
MessageBox.Show(ss.ErrorDescription, "Write Error");
When I try to read the file:
MessageBox.Show(ss.GetPicture(enumFormats.GIF, w, h).ToString());
It gives me:
System.__ComObject
Does anyone have any idea how I can read the text in this PDF417 Code?