T O P I C R E V I E W |
tgentry |
Posted - Nov 07 2014 : 06:03:38 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;
Any Help would be greatly appreciated.
|
3 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Nov 09 2014 : 13:30:52 Hi
2 ImageEnViews? Do you need to display two images simultaneously? You could also use a TImageEnMView which can show two images.
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
tgentry |
Posted - Nov 07 2014 : 15:20:17 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. |
xequte |
Posted - Nov 07 2014 : 12:45:04 Hi
Your code looks fine. What error do you encounter?
Nigel Xequte Software www.xequte.com nigel@xequte.com
|