Forum Moderators: coopster
I'm trying to create thumbnails for my website but I'm having a problem. When I use imagesx it keeps telling me "Warning: imagesx(): supplied argument is not a valid Image resource in ... on line 13". This is my code:
$basedir = "/home/blabla/public_html/blabla/";
$oSourceImage = $basedir."308.jpg";
$nWidth = imagesx($oSourceImage);
$nHeight = imagesy($oSourceImage);
What am I doing wrong here ? The picture is available in that specific directory.
imageAn image resource, returned by one of the image creation functions, such as imagecreatetruecolor().
I've already read the documentation yesterday evening, but now I really focused ;-) I guess I have to add the following code to make it work:
$basedir = "/home/blabla/public_html/blabla/";
$oSourceImage = $basedir."308.jpg";
$img = ImageCreateFromJpeg($oSourceImage);
$nWidth = imagesx($img);
$nHeight = imagesy($img);
I will check it out later on today. Thanks (again) for your help coopster!