1

我们在我们的 LAMP 堆栈上使用 ImageMagick(版本:ImageMagick 6.9.1-7 Q16 x86_64)及其 PHP 扩展 Imagick 将 SVG 转换为 JPEG,当 SVG 包含任何文本(12-13秒/文件)。

当从命令行(或直接使用 IM 的转换)作为独立的 PHP 脚本运行相同的东西时,无论它是否有文本,它都会在 1 秒内快速转换。

值得一提的是,GraphicsMagick 没有这个问题。(但它有一些未解决的 SVG 错误并阻止我们使用它。)

有人知道为什么字体需要这么长时间才能在 LAMP 堆栈上进行处理,或者如何确定减速的根本原因吗?

示例 SVG:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg"     xmlns:xlink="http://www.w3.org/1999/xlink" width="344" height="243"  viewBox="0 0 737 521">
<g class="main">
    <title>Main</title>
    <image xmlns:xlink="http://www.w3.org/1999/xlink" id="svg_12"  height="218.4417" width="291.2556" y="32.2537" x="-10.893" xlink:href="/tmp/767756670842438737_7032fbfb3c364e6da226254687eb1edb.jpg" style="pointer-events:inherit">29.75235 32.253654 209.964875 218.441697</image>
    <g font-size="normal" font-family="Allerta" class="textarea" id="svg_13" style="pointer-events:inherit">
        <rect opacity="0" fill-opacity="0" stroke-opacity="0" stroke-width="2" fill="#000" id="svg_10" height="32" width="150.4384" y="293.06824" x="550.14683" style="pointer-events:inherit"/>
        <text text-anchor="start" xml:space="preserve" fill="#000" font-size="21" y="293" x="550" id="svg_68" style="pointer-events:inherit">
            <tspan dy="14" x="550" xml:space="preserve" id="svg_69" style="pointer-events:inherit">
        hello </tspan>
            <tspan dy="21" x="550" xml:space="preserve" id="svg_70" style="pointer-events:inherit">gc </tspan>
        </text>
    </g>
</g>
</svg>

以及要转换的代码:

$im = new Imagick(); 
$svg = file_get_contents($svgFile); 
$svg = str_replace(array("\n", "\r", "\t"), '', $svg); 
$im->readImageBlob($svg); 
$im->setImageFormat("jpeg"); 
$im->writeImage($jpgFile); 
$im->clear(); 
4

1 回答 1

0

那个 SVG 对我来说转换得很好。

对此进行调查的方法是使用以下命令通过 strace 运行 PHP 脚本:

strace -f -F /usr/local/bin/php testScript.php

但是在您的系统上使用适当的 PHP 路径。

很有可能存在一些错误情况,导致“某事”花费的时间比它应该做的要长得多。上面的 strace 命令将允许您查看正在执行的所有系统调用,以及每个调用需要多长时间。

我怀疑在返回错误代码之前,您会看到一些系统调用几乎占用了所有处理时间。如果您无法弄清楚它的输出是什么意思,请将输出附加到您的问题或 pastebin 中,我将尝试解释符文。

警告- strace 能够捕获您可能不想透露的信息(例如密钥),因此在将其输出发布到任何地方之前应该小心。

于 2015-07-19T21:02:30.990 回答