suttercain Posted September 22, 2007 Share Posted September 22, 2007 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. Link to comment https://forums.phpfreaks.com/topic/70277-resize_image-with-imagemagick-not-working/ Share on other sites More sharing options...
suttercain Posted September 22, 2007 Author Share Posted September 22, 2007 que paso? Link to comment https://forums.phpfreaks.com/topic/70277-resize_image-with-imagemagick-not-working/#findComment-353021 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.