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 load all image

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
dracola Posted - Dec 13 2011 : 23:15:51
How to load all image in a folder itu multiple imageENview ???
4   L A T E S T    R E P L I E S    (Newest First)
dracola Posted - Dec 14 2011 : 04:47:55
Thanks fabrizio, i will try it
fab Posted - Dec 14 2011 : 03:23:00
TImageEnMView can show images as thumbnails. It is possible to load only thumbnails instead of full images setting ImageEnMView.StoreType:=ietThumb.
Anyway you have to handle checkboxes, comboboxes, in your code.
dracola Posted - Dec 14 2011 : 02:35:58
I tried to make application kiosk where people can load their image from memory / flash disk
i want to cache all image first (i don't know how) and then display it 6 or 8 image each/page.
what best component should i use. thank's fabrizio.

something like this

fab Posted - Dec 14 2011 : 00:52:54
To handle multiple images you have to use TImageEnMView. For example it can load all images in a folder with:

ImageEnMView1.FillFromDirectory('c:\images');

If you want use TImageEnView you have to loop manually among all images in the folder and execute this for each image and for each component:

ImageEnView1.IO.LoadFromFile(filename);