English 中文(简体)
想象与 PHP 的蒙合
原标题:Imagick montage with PHP

我想要这个功能,但我一辈子都想不出怎么用这里所描述的功能:http://php.net/manual/en/imagick.montageimage.php 。Googling迄今毫无结果。

我读了这个", http://www.imagemagick.org/Usage/montage/" rel="nofollow noreferrerr" >http://www.imagemagick.org/Usage/montage/ , 在指挥线上似乎很容易, 但你如何指定 PHP 操作的 URL?

我也看过这个,但这只会让我更困惑, 因为做这个的人说这对他没用。 Imagick PHP扩展 - Montaage help?

问题回答

我不知道如何用想象方法,但用命令线和php,它会是这样:

exec("montage balloon.gif medical.gif present.gif shading.gif montage.jpg");

您可以使用变量:

exec("montage $image1 $image2 $image3 $image4 $output");

您可以创建一个循环和共鸣? 所有的图像都变成一个变量, 这样变量就会是 :

$images = "$image1 $image2 $image3 $image4";

exec("montage $images $output");

您可能可以看到 exec () 的图像映像比 imagick 简单得多 。

我不确定您能否使用一系列图像 。

我同意 - php 方法 montageImaage () 是非常混乱的。 我找到了另一种方法, 使用 appendimages ()

这就是我如何用 pdf 水平生成的平方块瓷砖 :

$im = new Imagick();
$im->readimageblob($blob);
$im->setiteratorindex(0); // start at first page (blob-specific)
$im->setImageFormat( png ); // jpg-artifacts - not thanks
$montage = $im->appendImages(false); // true will tile vertically

http://www.php.net/manual/en/imagick.appendimages.php" rel=“no follow” >Imagick:附录images () -php.net





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签