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
 Un LayersMergeAll After Save

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
khorsandreza Posted - Sep 14 2017 : 17:02:07
Hi

I use the "LayersMergeAll" command to combine all layers and then save as ".jpg" file. Is it possible to blend the layers temporarily and return to normal after being saved?
Like saving layers in Photoshop

R.K
5   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Sep 17 2017 : 20:40:07
Yes, that will work fine.



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
khorsandreza Posted - Sep 15 2017 : 17:39:01
Hello
Thanks, Nigel
With the following command, I've overcome the problem. Please give your idea of the piece of the order below
Sincerely
Reza Khorsandi
//-------------------------------


Var
_SaveFileName:String;
aBitmap: TIEBitmap;
begin
Try
     _SaveFileName := _'C:\TEMP\Finally.jpg';
      aBitmap := TIEBitmap.Create;
      aBitmap.Allocate( ImageEnView1.Width, ImageEnView1.Height ,ie24RGB );
      ImageEnView1.LayersDrawTo( aBitmap );
      aBitmap.Write(_SaveFileName );
.
{Continuation orders That outside From the subject There is a debate}
.
Finally
        FreeAndNil( aBitmap );
End;

xequte Posted - Sep 15 2017 : 16:22:26
Hi

I don't think it exists in that version. You should then use:

1. ImageEnView1.Proc.SaveUndo
2. ImageEnView1.LayersMergeAll
3. ImageEnView1.IO.SaveToFile
4. ImageEnView1.Proc.Undo


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
khorsandreza Posted - Sep 15 2017 : 09:18:42
Hello
Thanks for your advice!
I use the 5.2 trial version. Is this the command "ImageEnView1.LayersSaveMergedTo();" Is this version supported?
I did not find such a command among the commands.
xequte Posted - Sep 14 2017 : 22:32:12
Hi

You can use LayersSaveMergedTo to merge and then save without it affecting the content:

https://www.imageen.com/help/TImageEnView.LayersSaveMergedTo.html

Nigel
Xequte Software
www.xequte.com
nigel@xequte.com