Imagick::readImageFile

(PECL imagick 2, PECL imagick 3)

Imagick::readImageFileReads image from open filehandle

Description

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

Reads image from open filehandle

Parameters

filehandle

fileName

Return Values

Returns true on success.

Errors/Exceptions

Throws ImagickException on error.

add a note

User Contributed Notes 1 note

up
5
ben dot james at acknowledgement dot co dot uk
16 years ago
An example of reading an image file from a URL, using a handle returned by 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');
?>
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant