PHP 8.5.0 Beta 1 available for testing

Voting

: max(seven, two)?
(Example: nine)

The Note You're Voting On

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');
?>

<< Back to user notes page

To Top