Hello, I'm new to ImageEn and Delphi. Im currently using Delphi XE7. I have been trying to update a old Delphi 7 imaging program that used ImageLib from skyline. I'm having a issue where the images are stored as single scans as book and page on a shared drive. Example \\imagestorage\book\page.tif. Can someone give me a idea on how to load more than one page with ImageEn? Meaning I have Book 4100 first page is 00001.tif and last page is 00010.tif. however the book itself has 300 pages worth of scanned tifs. so the share has \\imagestorage\04100\00001.tif thru 00300.tif. I just need the total pages for 1 thru 10. I would then need to add a button to show the next image in line.
Here is what I have as code to load a single image.
if FileExists(location + booktext +'\'+ pagetext +'.tif') then imageenview1.IO.LoadFromFile(location + booktext + '\' + pagetext + '.tif') else imageenview1.Clear;
I figured it out. I was not getting any error. I just did not know the procedure to do next image. I didn't realize you had to have 2 imagenview components. thanks for the reply.