Search found 2 matches

by martinto
2011-08-22T08:53:23-07:00
Forum: MagickWand
Topic: How do I replace the IPTCT metadata
Replies: 2
Views: 17939

Re: How do I replace the IPTCT metadata

I have cracked it! Photoshop uses XMP as well as IPTC metadata, and I should use 8BIM and not IPTC so this is the result:

pansi := MagickRemoveImageProfile(Wand, PAnsiChar('XMP'), @len);
pansi := MagickRemoveImageProfile(Wand, PAnsiChar('8BIM'), @len);
if pansi = nil then
Exit;
Result ...
by martinto
2011-08-22T01:41:42-07:00
Forum: MagickWand
Topic: How do I replace the IPTCT metadata
Replies: 2
Views: 17939

How do I replace the IPTCT metadata

I am attempting to remove the existing IPTC metadata from an image and then add my own so that I can set author, byline and copyright information.

I am programming in Delphi and have succeeded in reading in an image, resizing it, and then writing it back out to a new location so I am calling the ...