如何在drupal自定义图像样式中使用来自imagemagick的复合

时间:2013-03-14 18:52:06

标签: drupal imagemagick

这是我的目标: 在应用了scale_and_crop效果之后,iu想要创建一个精灵,该精灵将保持裁剪后的图像+下方的副本,该精灵将对其施加效果(称为复合乘法)。 我可以使用如下图像在命令行中生成“受影响”的图像:

       $cmd = 'composite -compose Multiply -gravity center \
        ' . $img_original_path . ' ' . $img_texture_path . ' ' .$img_result_destination;

    $return = null;
    $output = array();
    exec($cmd, $output, $return);
    var_dump($cmd, $output, $return);

我的最后一招是将模板中的样式包装调用,以便在从裁剪后的图像调用时生成精灵,但我希望能够在一次传递中完成...

感谢你花时间阅读!

0 个答案:

没有答案