Hello,
I have the following code:
<?php
function resize_image($image_name, $dest_name, $t_width, $t_height){
global $vars, $handle3, $debug_file;
// /usr/bin/convert or /usr/local/bin/convert or /usr/bin/mogrify
$CONVERT_PATH = '/usr/bin/convert'; //location of convert program
//$CONVERT_PATH = '/usr/local/bin/convert';
//$CONVERT_PATH = '/usr/bin/mogrify';
$CONVERT="$CONVERT_PATH";
$exec_str= " $CONVERT -resize " .$t_width . "x" . $t_height . " \"$image_name\" \"$dest_name\" ";
$image_resize_exe = system($exec_str, $output);
$content = "ImageMagick says: $exec_str";
$ImagePathDisplay = 'http://www.supermandatabase.com/images/4ndvddb/medium/'.$row['cover_art'];
$ImagePath = 'http://www.supermandatabase.com/images/4ndvddb/medium/'.$row['cover_art'];
$OgImage = 'http://www.supermandatabase.com/images/4ndvddb/images/'.$row['cover_art'];
if(!file_exists($ImagePath)){
resize_image($OgImage, $ImagePath, 150, 300);
}
?>
I am not getting any error messages but the image is not being resized and placed into the desired directory. Any advice or suggestions? Thanks.