I have picked up an 6 or 7 year old php based website that has an image upload facility that creates 3 different sizes of said image. This worked fine until about 3 months ago. The host says they have not changed anything on the server. Also, the owner of the site simply isn't capable of making any alterations.
Now when we try and upload we get three different BLACK versions sitting on there server, with corrct file names along with all the other details (age, name etc) entered into a database.
Here are 1 set of the initial error codes
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /websites/LinuxPackage02/.../public_html/admin/php/nslib_php/nslib_image.php on line 133
Warning: imagedestroy(): supplied argument is not a valid Image resource in /websites/LinuxPackage02/.../public_html/admin/php/nslib_php/nslib_image.php on line [b]136[/b]
I have (I think) tracked down the error to the resize_image() function which is below. I have echoed out that $target_type=image/jpeg and imagecreatetruecolor was true
I am not really sure what to try next
Would somebody please be able to make a suggestion - many thanks
I'd be more than happy to supply any more info needed.
Edward
Here's the result of the echo statements:
Array
(
[name] => medoing bni.jpg
[type] => image/jpeg
[tmp_name] => /tmp/phpStIUXZ
[error] => 0
[size] => 87898
)
$target_type=image/jpeg
imagecreatetruecolor was true
I added in the line suggested thus around line 270 and it produced no output... it was defo a jpeg though:
if ($target_type == 'image/jpeg') {
// RESIZE the image with the parameters specified
//edward
var_dump($target_file, $source_file);
imagecopyresampled($target_file, $source_file, 0, 0, $source_x, $source_y, $target_width, $target_height, $source_width, $source_height);
and here's the function.
// function: resize_image (string $source_image, string $target_image, int $target_width, int $target_height[, boolean $crop_position])
// purpose: resizes an image using the parameters supplied
// parameters: [1] $source_image (string) -> the filename and path of the source file
// [2] $target_image (string) -> the filename and path of the target file
// [3] $target_width (int) -> the width of the target file (set as false for this to be calculted by the height)
// [4] $target_height (int) -> the height of the target file (set as false for this to be calculted by the width)
// [5] $crop_position (string) -> (optional) if the image is to be centre cropped (square), values are: left, right, top, bottom, centre
// [6] $quality (int) -> (optional) the jpeg quality
// returns: whether the image creation succeeded or failed
function resize_image ($source_image, $target_image, $target_width, $target_height, $crop_position = false, $quality = 75) {
// set the memory limit higher and the execution time higher for the script as large
// attachments may be processed
ini_set('memory_limit', '32M');
ini_set('max_execution_time', '60');
$return_var = false; // initialise the return variable
// get the source file type
$source_type = get_mime_type($source_image);
// get the target file type
if (is_numeric(strpos(strtolower($target_image), 'jpg')) || is_numeric(strpos(strtolower($target_image), 'jpeg'))) {
// if the type is jpeg
$target_type = 'image/jpeg';
} elseif (is_numeric(strpos(strtolower($target_image), 'gif'))) {
// if the type id gif
$target_type = 'image/gif';
}
// get the dimensions of the source image and check whether the file is valid
if (list($source_width, $source_height) = getimagesize($source_image)) {
// calculate the dimensions of the new photo
// if there is no width set then calculate from the ratio of the source image and
// the height dimension
if (!$target_width) {
$target_width = ($source_width / $source_height ) * $target_height;
}
// if there is no height set then calculate from the ratio of the source image and
// the width dimension
if (!$target_height) {
$target_height = ($source_height / $source_width ) * $target_width;
}
// if the target filetype is a jpeg, create a truecolour image
if ($target_type == 'image/jpeg') {
//edward
echo '<h2>$target_type='.$target_type.'</h2>';
// create an empty image in memory with the target's dimensions
//$target_file = imagecreatetruecolor($target_width, $target_height);
if($target_file = imagecreatetruecolor($target_width, $target_height)){
echo '<h2>imagecreatetruecolor was true</h2>';
}else{
echo '<h2>imagecreatetruecolor was false</h2>';
};
} else {
// otherwise create a pallete based image
// create an empty image in memory with the target's dimensions
$target_file = imagecreate($target_width, $target_height);
}
// if the source image is a jpeg then load it
if ($source_type == 'image/jpeg') {
echo '<h2>source_type='.$source_type.'</h2>';
// load the source image as a jpeg from disk into memory
// edward $source_file = imagecreatefromjpeg($source_image);
if($source_file = imagecreatefromjpeg($source_image)){
echo '<h2>imagecreatefromjpeg was true</h2>';
}else{
echo '<h2>imagecreatefromjpeg was false</h2>';
};
} elseif ($source_type == 'image/gif') {
// otherwise load the source image as a gif from disk into memory
$source_file = imagecreatefromgif($source_image);
}
// preset the source x and y positions of the output image
$source_x = 0;
$source_y = 0;
// copy the source width and height to some other variables used in calculation
$calc_width = $source_width;
$calc_height = $source_height;
// if it's specified that the image should be cropped
if ($crop_position) {
// calculate the source & target ratios
$source_ratio = $source_width / $source_height;
$target_ratio = $target_width / $target_height;
// calculate the other dimension
if ($source_ratio > $target_ratio) {
$source_width = ($target_width / $target_height ) * $calc_height;
} else {
$source_height = ($target_height / $target_width ) * $calc_width;
}
// depending on which crop position is selected, the calculations will be
// done to extract the required part
switch ($crop_position) {
case 'top':
$source_x = ($calc_width - $source_width) / 2;
$source_y = 0;
break;
case 'bottom':
$source_x = ($calc_width - $source_width) / 2;
$source_y = $calc_height - $source_height;
break;
case 'left':
$source_x = 0;
$source_y = ($calc_height - $source_height) / 2;
break;
case 'right':
$source_x = $calc_width - $source_width;
$source_y = ($calc_height - $source_height) / 2;
break;
default:
$source_x = ($calc_width - $source_width) / 2;
$source_y = ($calc_height - $source_height) / 2;
break;
}
}
// if a jpeg is to be created
if ($target_type == 'image/jpeg') {
// RESIZE the image with the parameters specified
imagecopyresampled($target_file, $source_file, 0, 0, $source_x, $source_y, $target_width, $target_height, $source_width, $source_height);
// remove the image of the source file from memory
imagedestroy($source_file);
// create a jpeg file on disk from the newly created image in memory and write to disk
$return_var = imagejpeg($target_file,$target_image, $quality);
// remove the image of the target file from memory
imagedestroy($target_file);
// if a gif file is to be created
} elseif ($target_type == 'image/gif') {
// RESAMPLE the image with the parameters specified
imagecopyresized($target_file, $source_file, 0, 0, $source_x, $source_y, $target_width, $target_height, $source_width, $source_height);
// remove the image of the source file from memory
imagedestroy($source_file);
// create a gif file on disk from the newly created image in memory and write to disk
$return_var = imagegif($target_file,$target_image);
// remove the image of the target file from memory
imagedestroy($target_file);
}
}
return $return_var; // return the status of the function
}