ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 IEVisionLib.createBarCodeScanner().scan reading error
 New Topic  Reply to Topic
Author Previous Topic Topic Next Topic  

aleatprog

139 Posts

Posted - Mar 15 2025 :  04:59:06  Show Profile  Reply
Hi,

using the same *.exe and *.dll files on two systems and loading the same PDF document, the installation on my system (Win10 64bit) reads a barcode (symbols.size = 1) meanwhile the installation on the customer's system (WinSrv2016 64bit) fails (symbols.size = 0).

(1) On both systems, *.exe and *.dll files are located in the same folder and OnFormCreate IEVisionAvailable() results true.

(2) The PDF document is loaded in an ImageEnView1 with PdfViewer enabled and attached to an ImageEnMView1.

(3) Barcode recognition is executed in a function(PageIdx: Integer): String;
var
  IEBitmap: TIEBitmap;
  symbols: TIEVisionVectorObjRef;
begin
  IEBitmap := TIEBitmap.Create(ImageEnMView1.GetTIEBitmap(PageIdx));
  try
    symbols := IEVisionLib.createBarCodeScanner().scan(IEBitmap.GetIEVisionImage(), IEVisionRect( 0, 0, 0, 0 ));
    if symbols.size() > 0 then
      result := TIEVisionBarCodeSymbol(symbols.getObj(symbols.size() - 1)).getData().c_str();
  finally
    IEBitmap.Free;
  end;
end;


In order to correctly use IEVisionLib.createBarCodeScanner().scan on the customer's system, are there other files to distribute than ievision64.dll?

May somebody give me a hint where to search for the cause of the malfunction?

Thank you in advance,
Ale

xequte

38918 Posts

Posted - Mar 15 2025 :  17:50:26  Show Profile  Reply
Hi Ale

You're reading from a PDF files, so have you included iepdf64.dll? Have you checked the version numbers of the DLL's are all valid.

Check if there are any DLL loading issues:

http://www.imageen.com/help/TIEGlobalSettings.DLLLoadingLog.html

Nigel
Xequte Software
www.imageen.com
Go to Top of Page

aleatprog

139 Posts

Posted - Mar 16 2025 :  08:49:24  Show Profile  Reply
Hi Nigel,

yes, iepdf64.dll is included and registered by setup. All *.exe and *.dll files distributed by the setup are taken from the Delphi project's \Win64\Debug\ folder.

As initially described, IEVisionLib.createBarCodeScanner().scan doesn't return a barcode value from an TIEBitmap after (1) the source PDF file had been loaded in ImageEnView.PdfViewer and (2) the IEBitmap had been delivered by the connected ImageEnMView. The TIEBitmap processed by IEVision has correct width + height; I didn't checked if it is blank. Anyway, there shouldn' be an issue with iepdf64.dll as in the moment IEVision starts to scan, the PDF had just been loaded.

PS: I'll include TIEGlobalSettings.DLLLoadingLog at system start, thank you for this hint. : )

Ale
Go to Top of Page

xequte

38918 Posts

Posted - Mar 16 2025 :  22:32:00  Show Profile  Reply
Hi Ale

Sorry, I need more information, so we can narrow down where it is failing. Are you able to reproduce the issue on your system? If so, try saving the IEBitmap being scanned. Then test whether the saved bitmap works in our demo DLL (compiled for 32bit).

Nigel
Xequte Software
www.imageen.com
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
Jump To: