我有一个96x96图像,我需要将它分成36个16x16并且我有一个下面给出的脚本在我的本地主机上正常工作但不能在我的虚拟主机上工作。
function makeTiles($name, $imageFileName, $crop_width, $crop_height)
{
$dir = "/pic";
$slicesDir = "/pic/16X16";
// might be good to check if $slicesDir exists etc if not create it.
$ImgExt = split(".",$imageFileName);
$inputFile = $dir . $imageFileName;
$img = new Imagick($inputFile);
$imgHeight = $img->getImageHeight();
$imgWidth = $img->getImageWidth();
$cropWidthTimes = ceil($imgWidth/$crop_width);
$cropHeightTimes = ceil($imgHeight/$crop_height);
for($i = 0; $i < $cropWidthTimes; $i++)
{
for($j = 0; $j < $cropHeightTimes; $j++)
{
$img = new Imagick($inputFile);
$x = ($i * $crop_width);
$y = ($j * $crop_height);
$img->cropImage($crop_width, $crop_height, $x, $y);
$data = $img->getImageBlob();
$newFileName = $slicesDir . $name . "_" . $x . "_" . $y . ".".$ImgExt[1];
$result = file_put_contents ($newFileName, $data);
}
}
}
致命的错误
Fatal error: Class 'Imagick' not found in myfile.php line number
我的主人说:
不幸的是,Imagick和图像魔法都是一样的,我们没有 它们作为PHP模块我们有像ImageMagick二进制文件和 图像魔术路径是/ usr / local / bin。在您的中包含此功能 脚本并检查您的网站功能。
我不知道如何修复此错误。
答案 0 :(得分:2)
如果我理解正确,您必须使用imagick
从脚本中调用exec()
二进制文件:
exec('/usr/local/bin/convert '.$inputFile.' -crop 96x96+ox+oy '.$newFilename);
ox
和oy
应替换为正确的偏移值。
以下是一些可能有用的链接: