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
 PasteFromClipboard and CopyMode

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
graph_man Posted - Aug 23 2022 : 09:09:08
Is it possible to select the CopyMode for this command (PasteFromClipboard)?

cmSrcAnd, cmSrcErase, cmMergeCopy etc.
5   L A T E S T    R E P L I E S    (Newest First)
graph_man Posted - Aug 25 2022 : 13:34:12
Thank you.
xequte Posted - Aug 24 2022 : 21:52:55
With a temp bitmap:

bmp := TBitmap.Create;
proc := TImageEnProc.CreateFromBitmap(bmp);
proc.PasteFromClipboard();

bmp.RenderToTIEBitmapEx(...);

proc.Free;
bmp.Free;


With a TImageEnView:

ImageEnView1.Proc.PasteFromClipboard();
ImageEnView1.IEBitmap.RenderToTIEBitmapEx(...);


Nigel
Xequte Software
www.imageen.com
graph_man Posted - Aug 24 2022 : 15:10:46
How to use RenderToTIEBitmapEx with clipboard?
graph_man Posted - Aug 24 2022 : 04:26:31
I use ImageEnView
xequte Posted - Aug 23 2022 : 17:58:44
Hi

What precisely you are looking to do? If you paste to a TIEBitmap (e.g. by attaching it to a TImageEnProc), then you can draw the TIEBitmap using one of the rendering operations:

https://www.imageen.com/help/TIEBitmap.RenderToTIEBitmapEx.html

Nigel
Xequte Software
www.imageen.com