Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I suppose you converted a image with IPTC data to an EPS file (convert C:\imageA.eps). Of course, IM is smart enough to find and extract IPTC data. IPTC data can be added to a preview image of a EPS file only. My solution is
1. extract/prepare IPTC data (iptcData.iptc)
2. apply IPTC data to file
Actually i've already tried to do that, but when IM converts a JPG to EPS the IPTC profile is lost.
Even if the original JPG has IPTC the converted EPS has no IPTC (As least on all intents I have made, if you know how to do I woulb be extremely gratefull).
I even found later a documentation on IM site that IM doesn't apply IPTC to EPS
EPS
Encapulated Postscript is actually exactly the same as normal postscript (a
vector image format) except it is a single page image, and a "Bounding Box'
entry is present to define the exact area the image covers. Its purpose is
to allow other programs to move and scale the image when inserting it into
other postscript documents.
IM handles it in basically the same way as postscript. See
Postscript Text Handling, and
Vector Image formats.
To generate an ASCII85-encoded Encapsulated Postscript Image, use this
command:
convert image.jpg
-compress none eps2:image.eps
Use "EPS2:" or "EPS3:" to create JPEG compressed EPS files:
convert image.jpg -compress jpeg eps2:image.eps
Note: Adding profiles to EPS images are on the 'todo' list but is
currently not supported.
The IPTC profile is a metadata embedded to the image.
It can store identification atributes of the image, such as caption, credit, author, keywords, etc.
Actually I see that IM can stores other profile type on EPS, such as ICM. ICM is a color conversion set file that can be successfully embedded as a profile to an EPS file, even with IM. The only profile I can't store is IPTC.
So, if we'll have an upgrade that solves IPTC embed to EPS problems, which IM version shoul I expect? I'm using actually 6.3.1. Should I look for a 6.3.4 next week?
I am just wanting to know for IM Examples. Unless I have some simple program that can handle this profile it is rather useles for me.
however if you have a 'blank' or 'default' copy of the that profile. Send it to me and I'll include it in IM examples. I may even try to figure out an example that gets IM to -set (change) some of the attributes in that profile.
I mean I may not use it myself, but it probably should be in IM Examples.
Speaking of which is someone would like to edit/update the profiles section (or any other section) in IM Examples, mail me. I'd love a few contributors.