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
 load from bitmap help

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
duraganyolcu Posted - Dec 29 2011 : 10:46:57
hi, i am a new user of imageen. i have some troubles when using it.

i've an imageenvect component and i want to show a bitmap on it but there is no change on form when i tried.

ImageEnVect1: TImageEnVect;
...

xbitmap:=TBitmap.create;
xbitmap.width:=512; xbitmap.height:=384;
xbitmap.LoadFromFile('C:\image.bmp');

ImageEnVect1.IO.CreateFromBitmap(xbitmap);

i cannot use loadfromfile() function on imageenvect, because xbitmap is a result of another function i only have a bitmap as result, i m just trying not to use load from file. i want to assign a bitmap to imageenvect.

ImageEnVect1.IO.AttachedBitmap or
ImageEnVect1.IO.Bitmap := didn't work.
2   L A T E S T    R E P L I E S    (Newest First)
duraganyolcu Posted - Dec 29 2011 : 11:26:45
thanks fabrizio. it works.
fab Posted - Dec 29 2011 : 11:16:16
Try:

ImageEnVect1.Assign( xbitmap );