使用 fopen() 返回的句柄从 URL 读取图像文件的示例
<?php
$handle = fopen('http://example.com/foo.jpg', 'rb');
$img = new Imagick();
$img->readImageFile($handle);
$img->resizeImage(128, 128, 0, 0);
$img->writeImage('images/foo.jpg');
?>
(PECL imagick 2, PECL imagick 3)
Imagick::readImageFile — 从打开的文件句柄读取图像
文件句柄
文件名
成功时返回 true
。
错误时抛出 ImagickException。
使用 fopen() 返回的句柄从 URL 读取图像文件的示例
<?php
$handle = fopen('http://example.com/foo.jpg', 'rb');
$img = new Imagick();
$img->readImageFile($handle);
$img->resizeImage(128, 128, 0, 0);
$img->writeImage('images/foo.jpg');
?>