From: Jean-Marc U. <uj...@gm...> - 2003-08-11 21:24:45
|
Hello !! I solved the problem now alone with a builtin function of Image:Magick: I added in the function createDisplayImage at Line 606 to lines an then it locks like this: ---------------------------------------------------------------------------- ------------------------------------------------ $x = $imageToScale->Border(color=>'black',width=>$scaledImageBorderWidth, height=>$scaledImageBorderWidth); die "$x" if "$x"; $x = $imageToScale->Profile("*"); die "$x" if "$x"; if (($displayScaledIcon) eq 'y' && ($maxDimension eq $previewMaxDimension)) { my($overlayXSize, $overlayYSize) = $scaledOverlay->Get('width', 'height'); $imageToScale->Composite(image=>$scaledOverlay,compose=>'over',geometry=>("+ ".($displayX - ($overlayXSize + $scaledImageBorderWidth))."+".($displayY - ($overlayYSize + $scaledImageBorderWidth)))); #overlay the scaled icon } ---------------------------------------------------------------------------- ------------------------------------------------ This change removes the EXIF and other infos in all rescaled images (thumbs and all pics not in original size). This was exactly what I wanted. See here: http://www.ulrichs.ch/ids/index.cgi?mode=album&album=./Night%20in%20Bern I found it here: http://www.imagemagick.org/www/convert.html#exam Greetings Jean-Marc |