I have a DNG file with EXIF and IPTC data. I've also adjusted the color correction in the DNG file. And now I want to convert the DNG to JPG. I've tried following command:
Code: Select all
<?php
$filename = 'target/'.time().'.jpg';
shell_exec('convert dng:source/Testdatei_JAPO_20111220_8415testtest2.dng -resize 1024x1024 '.$filename.'');
?>
And the second issue: ImageMagick deletes some IPTC information in the converted JPG file…?