Home
Features
Demos
Store
Forum
Support
ImageEn Forum
Profile
Join
Active Topics
Forum FAQ
Search
Forum membership is Free! Click
Join
to sign-up
Username:
Password:
Save Password
Forgot your Password?
All Forums
ImageEn Library for Delphi, C++ and .Net
ImageEn and IEvolution Support Forum
renaming layers
New Topic
Reply to Topic
Author
Topic
murod
Argentina
6 Posts
Posted - Feb 03 2012 : 19:52:52
how to rename layers and save them by seted name???
xequte
39056 Posts
Posted - Feb 04 2012 : 01:30:13
Hi
You can rename objects as follows:
// Rename the object I just added
ImageEnVect1.ObjName[-2] := 'My Object';
This name is saved with the layers.
You can use the name to find the index of an object too:
iIndex := ImageEnVect1.GetObjFromName('My Object');
Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
murod
Argentina
6 Posts
Posted - Feb 04 2012 : 03:48:06
thank you very much... but i want to rename many layers (as in Photoshop) added in ImageEnview and ImageEnMview and save all layers ...
fab
1310 Posts
Posted - Feb 04 2012 : 04:20:12
ImageEn stores layer name in ImageEnView.Layers[].Name, so you can change the name with:
// change name of layer 0
ImageEnView.Layers[0].Name := 'new name';
Finally you can save to PSD:
ImageEnView.IO.SaveToFile('output.psd');
murod
Argentina
6 Posts
Posted - Feb 04 2012 : 04:55:17
Thanks you very much... it works perfect...!!!!
Topic
New Topic
Reply to Topic
Jump To:
Select Forum
ImageEn Library for Delphi, C++ and .Net
ImageEn and IEvolution Support Forum
--------------------
Home
Active Topics
Frequently Asked Questions
Member Information
Search Page