1
2
3
4
5
6
7
8
9
**** specification.
**** file that it does not conform to Adobe's published PDF
**** Please notify the author of the software that produced this
**** >>>> Mac OS X 10.4.11 Quartz PDFContext <<<<
**** The file was produced by:
**** This file had errors that were repaired or ignored.
**** Warning: considering '0000000000 XXXXX n' as a free entry.
**** Warning: considering '0000000000 XXXXX n' as a free entry.
2015-04-14T09:44:27 GwenDragonDas was du als Grauschleier bezeichnest kann ein Gamma- oder Farbprofilproblem sein.
2015-04-14T09:44:27 GwenDragonWie konvertierst du denn, ich bräuchte da mal Code für die reine Filter+Konvertierungsroutine..
1 2 3
my $img = Image::Magick->new(); $img->Read(file => "orig/$path/$base.$ext") and die "Can't read in the image: $!"; $img->Write(file => "target/$path/$base.jpg");
1 2 3 4 5 6 7
my $img = new Image::Magick; $img->Read(filename => "orig/$path/$base.$ext") and die("Kann Original-Bild nicht lesen: $!"); $img->Set(compression => "JPEG"); $img->Set(magick => 'jpg'); $img->Set(quality => 90); $img->Write(filename => "target/$path/$base.jpg");
2015-04-14T11:44:56 GwenDragonWas das PDF-Einlesen anbelangt, kann es sein, dass vielleicht das PDF nicht nach Norm erstellt ist? Wie wurde das erzeugt?
2015-04-16T07:53:53 GwenDragonDu solltest lieber das Profil,IPTIC und Kommentare mit Image::Magick->Strip() entfernen, bevor du die Ausgabedatei schreibst, wenn Safari so empfindlich ist.
Oder woher kommt der Anzeigefehler bei Safari?