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
 Inquiry About PSD Metadata Support in ImageEn 13.1.0

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
Aamir Posted - Apr 30 2024 : 12:09:12
Dear ImageEn Support Team,

I hope this message finds you well. I am currently using ImageEn version 13.1.0 and I have been very impressed with its capabilities for image processing and editing.

I am reaching out to inquire about the support for PSD (Photoshop Document) files, specifically regarding the reading and writing of metadata. My project requires manipulation of metadata within PSD files and I would like to know if ImageEn provides this functionality.

Could you please provide information on whether ImageEn supports the following:
• Reading metadata from PSD files

• Writing metadata to PSD files

• Accessing and modifying XMP, IPTC, and EXIF data within PSD files

Any guidance or documentation you could provide on this matter would be greatly appreciated.

Thank you for your time and assistance.




Best regards,

Aamir
3   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - May 02 2024 : 22:04:28
Hi Aamir

Sorry, the EXIF demo ignores PSD files when saving. I will add that in the next update.

To add EXIF data to PSD file:

// Add EXIF to PSD file
ImageEnView1.IO.LoadFromFile( 'D:\Image.psd' );
ImageEnView1.IO.Params.EXIF_ImageDescription := 'This is EXIF data';
ImageEnView1.IO.Params.EXIF_DateTime2 := Now;
ImageEnView1.IO.Params.EXIF_DateTimeOriginal2 := Now;
ImageEnView1.IO.Params.EXIF_HasEXIFData  := True;
ImageEnView1.IO.SaveToFile( 'D:\Image.psd' );



Nigel
Xequte Software
www.imageen.com
Aamir Posted - May 02 2024 : 11:30:18
Thanks for the fast reply.

"Exif.exe" is able to read the properties from PSD but it is not saving the data into PSD.

can you please provide a code snippet to read and write some information into PSD metadata? it would be greatly appreciated.

Aamir
xequte Posted - Apr 30 2024 : 16:12:57
Hi Aamir

Please see:

https://www.imageen.com/help/File_Formats.html#PSD

ImageEn supports reading and writing of EXIF and XMP meta-data in PSD files.

Please also try the "Exif Editor" and "XMP Meta Data" demos:

https://www.imageen.com/demos/



Nigel
Xequte Software
www.imageen.com