使用PHP ImageMagick拼合透明PDF会产生负数

时间:2019-02-03 17:49:44

标签: php ghostscript imagick

正如标题所述,我正在尝试展平透明的PDF并将其另存为jpg。但是我一直得到负面印象。我知道我可以将其变平后再制作负片图像,但是我对为什么这种情况首先发生更感兴趣。下面是我的代码。在此先感谢您提供的任何光芒。

<div id="test">AAAAAAA</div>

编辑 Link to file

2 个答案:

答案 0 :(得分:1)

请注意,Imagemagick使用Ghostscript读取PDF。如果PDF是CMYKA,则Ghostscript无法正确处理。因此,请先在 阅读PDF之前添加-colorspace sRGB等效项,然后转换为RGBA。如果这不起作用,则将链接发布到您的一个PDF文件,该文件的行为与您描述的相同。参见http://us3.php.net/manual/en/imagick.setcolorspace.php

我对Imagick不太了解,因此我可能在下面的颜色空间中没有适当的语法。因此,请根据需要更正我的命令。

因此,请尝试以下操作:

$imagick->setColorspace(imagick::COLORSPACE_SRGB);
$imagick->readImage($imageFile);
$imagick->setImageBackgroundColor('#FFFFFF');
$imagick->setImage($imagick->mergeImageLayers(imagick::LAYERMETHOD_FLATTEN));
$imagick->setImageFormat("jpg");
$imagick->setImageCompression(imagick::COMPRESSION_JPEG);
$imagick->setImageCompressionQuality(100);
$imagick->writeImage($saveImageAs);


我假设您已经使用$ imagick = new Imagick()初始化了$ imagick;已经。如果没有,那么您需要这样做。

这是我使用Imagemagick 6.9.10.25 Q16 Mac OSX Sierra获得的图像的结果。

直接CMYK栅格化(背景Alpha丢失,背景变成白色):

convert 5_5x4_25-Grid.pdf -background skyblue -flatten result1.jpg


enter image description here

在栅格化之前从CMYK转换为sRGB。

convert -colorspace sRGB 5_5x4_25-Grid.pdf -background skyblue -flatten result2.jpg


enter image description here

在栅格化之前从CMYK转换为sRGB,然后使用-colorspace(颜色略有变色)转换回CMYK。

convert -colorspace sRGB 5_5x4_25-Grid.pdf -background skyblue -flatten -colorspace CMYK result3.jpg


enter image description here

在栅格化之前从CMYK转换为sRGB,然后使用-profile(更好地代表颜色)转换回CMYK:

convert -colorspace sRGB 5_5x4_25-Grid.pdf -background skyblue -flatten -profile /Users/fred/images/profiles/USWebCoatedSWOP.icc result4.jpg


enter image description here

请注意,使用Ghostscript的Imagemagick不会显示CMYK PDF的Alpha通道。

    Image: 5_5x4_25-Grid.pdf
  Format: PDF (Portable Document Format)
  Mime type: application/pdf
  Class: DirectClass
  Geometry: 414x324+0+0
  Resolution: 72x72
  Print size: 5.75x4.5
  Units: Undefined
  Colorspace: CMYK
  Type: ColorSeparation
  Endianess: Undefined
  Depth: 16/8-bit
  Channel depth:
    cyan: 8-bit
    magenta: 8-bit
    yellow: 8-bit
    black: 8-bit
  Channel statistics:
    Pixels: 134136
    Cyan:
      min: 0  (0)
      max: 34695 (0.529412)
      mean: 2051.88 (0.0313097)
      standard deviation: 6698 (0.102205)
      kurtosis: 14.5033
      skewness: 3.89729
      entropy: 0.258857
    Magenta:
      min: 0  (0)
      max: 54998 (0.839216)
      mean: 5682.95 (0.0867162)
      standard deviation: 13648.7 (0.208265)
      kurtosis: 2.95123
      skewness: 2.13618
      entropy: 0.258857
    Yellow:
      min: 0  (0)
      max: 55255 (0.843137)
      mean: 5710.18 (0.0871318)
      standard deviation: 13735.4 (0.209589)
      kurtosis: 3.0097
      skewness: 2.14687
      entropy: 0.258857
    Black:
      min: 0  (0)
      max: 42405 (0.647059)
      mean: 1985.17 (0.0302918)
      standard deviation: 8063.54 (0.123042)
      kurtosis: 16.6119
      skewness: 4.23784
      entropy: 0.258857

答案 1 :(得分:0)

问题是我使用的ghostscript版本。升级到ghostscript 9.22解决了该问题。