I am using the ImagXpress 8 .NET control. How do I load the image data into the SmartScan Xpress Barcode control?
To copy an image from the ImagXpress 8 .NET control, you can use the ToHdib method of the ImageX class as outlined in the code samples below. The sample code assumes the image data is in 1 bit per pixel format. For C# Developers: PegasusImaging.WinForms.ImagXpress8.ImagXpress ix = new PegasusImaging.WinForms.ImagXpress8.ImagXpress(); PegasusImaging.WinForms.ImagXpress8.ImageX theImageX = PegasusImaging.WinForms.ImagXpress8.ImageX.FromFile(“c:\\Pegasus.tif”); ssxBarcode1.reader.Analyze(theImageX.ToHdib(false).ToInt32()); For Visual Basic.