convert
ImageMagickのコマンドを実行できない新しいホスティング会社に引っ越しています。だから私は今、まっすぐなPHPを通してそれをやろうとする必要があります. 私はそれを理解しようとかなりの時間を費やしましたが、どこを見ても、人々は私のconvert
ようにコマンドを使用することを推奨しています。次のコマンドをストレート PHP で記述する際のヘルプやガイダンスをいただければ幸いです。
# Applies overlay $filter_image to the original $image
convert $image ( -clone 0 -alpha off $filter_image -compose SoftLight -composite ) -compose SrcIn -composite $output_image
と
# Apply a blur to an image
convert $image -blur 0x$blur_radius $output_image
更新:
構文を理解し、回答として投稿しました。