Jump to content

resize_image() with ImageMagick not working...


suttercain

Recommended Posts

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.

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.