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

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 IEVisionLib.createBarCodeScanner().scan reading error

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
aleatprog Posted - Mar 15 2025 : 04:59:06
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
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Mar 16 2025 : 22:32:00
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
aleatprog Posted - Mar 16 2025 : 08:49:24
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
xequte Posted - Mar 15 2025 : 17:50:26
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