I've been playing with your Barcode Reader and assume I am doing something wrong or missing something.
First, is there a way to "push the Open button" from the library? When I produce a barcode image, I'd like to just have it read that when I ask in code... not from the button.
Secondly and more important, I can't get a good read. I have created a demo app that I'd be happy to share. I print a 128 barcode to PNG file. Then, I attempt to read the value back using the reader and it never returns the value I entered into the barcode.
Output Barcode to PNG File:
Let me know if you want me to upload my demo app.
Joel
First, is there a way to "push the Open button" from the library? When I produce a barcode image, I'd like to just have it read that when I ask in code... not from the button.
Secondly and more important, I can't get a good read. I have created a demo app that I'd be happy to share. I print a 128 barcode to PNG file. Then, I attempt to read the value back using the reader and it never returns the value I entered into the barcode.
Output Barcode to PNG File:
SaveFileDialog dialog =
new
SaveFileDialog()
{
DefaultExt =
"png"
,
Filter =
"png (*.png)|*.png"
};
if
(dialog.ShowDialog() ==
true
)
{
using
(Stream stream = dialog.OpenFile())
{
Telerik.Windows.Media.Imaging.ExportExtensions.ExportToImage(
barCode,
stream,
new
PngBitmapEncoder());
}
}
Let me know if you want me to upload my demo app.
Joel