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
 How to do Barcode recognition of PDF file that has

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
ImageEnSA Posted - Aug 28 2019 : 20:30:12

Hi everyone,

I need a demo of barcode recognition of a pdf file that has multiple pages (each page might have multiple barcodes)

thanks

3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Aug 29 2019 : 22:30:44
Hi

The procedure for multipage files will be the same as for a single image file, except set ImageIndex before calling LoadFromFile.

https://www.imageen.com/help/TIOParams.ImageIndex.html


Here are some examples:

// Load a GIF and save each of its pages as a BMP File
ImageEnView1.IO.LoadFromFile('C:\input.gif');  // Load first image to get valid value for Params.ImageCount
for I := 0 to ImageEnView1.IO.Params.ImageCount - 1 do
begin
  ImageEnView1.IO.Params.ImageIndex := I;
  ImageEnView1.IO.LoadFromFile('C:\input.gif');
  ... Check for barcodes ...
end;

OR

idx := 0;
ImageEnView1.IO.LoadFromFile('C:\input.tif');
 ... Check for barcodes ...
while ImageEnView1.IO.Seek( ieioSeekNext ) <> idx do
begin
  ImageEnView1.IO.PrintImage();
  ... Check for barcodes ...
  inc(idx);
end


Nigel
Xequte Software
www.imageen.com
ImageEnSA Posted - Aug 29 2019 : 20:18:27
OK, already have them .. may you please send me an example of Barcode recognition of PDF file that has multiples files

xequte Posted - Aug 29 2019 : 16:55:24
Hi

That will be two demos. To load PDF files into ImageEn you need a plug-in such as WPViewPDF:

https://www.imageen.com/WPViewPDF/

Barcode recognition is supported by our IEVision add-on, which has a demo at:

https://www.imageen.com/demos/index.html#IEVision

Nigel
Xequte Software
www.imageen.com