Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

Ray.Paseur sometimes uses Gmail
14 years ago
If you have a blank in the file name, and you use a local URL, this function works. Not so with a fully qualified URL

<?php
$url
= 'RAY_rgb 300x100.jpg';
$img = ImageCreateFromJPEG($url);
// WORKS PERFECTLY

$url = 'http://www.example.com/RAY_rgb 300x100.jpg';
$img = ImageCreateFromJPEG($url);
// FAILS Warning: imagecreatefromjpeg() [function.imagecreatefromjpeg]: gd-jpeg: JPEG library reports unrecoverable error
?>

<< Back to user notes page

To Top