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.

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.