Imagick::readImageFile

(PECL imagick 2, PECL imagick 3)

Imagick::readImageFile从打开的文件句柄读取图像

说明

public Imagick::readImageFile(resource $filehandle, string $fileName = null): bool

从打开的文件句柄读取图像

参数

filehandle

fileName

返回值

成功时返回 true

错误/异常

发生错误时抛出 ImagickException。

添加注释

用户贡献注释 2 个注释

5
ben dot james at acknowledgement dot co dot uk
15 年前
从 URL 读取图像文件的示例,使用 fopen() 返回的句柄

<?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');
?>
-11
quickshiftin at gmail dot com
9 年前
如果设置了第二个参数,它将更新 getFilename() 的结果。否则,getFilename() 的结果将保留其原始值,在调用 readImageFile() 之前。
To Top