Jump to content

Image Magik


deathdeyfer2002

Recommended Posts

All-

 

I'm trying to automatically resize all of the images on my webpage.  I currently have them stored in an array.  I can access the array from the following code

 

 


for ($imagecounter = 0; $imagecounter < $pic_count; $imagecounter++)
{
$currentimage = $folder[$imagecounter];
echo "<img src='/Movies/$currentimage' >";
}

 

That goes through all of the images and displays them as pictures.  I wanted to use the function from Imagemagik: mogrify .  From the command line it resized the images without any trouble using the following code

mogrify -resize 200x125 Left1.png

 

I have been trying to incorporate this into PHP to have it do this automatically.  Here is what I tried and it appears to be failing everytime

 

$command = '"mogrify -resize 468.75x200"/home/deathdefyer2002/imageA.jpg
exec($command);

 

 

Please help. 

Link to comment
Share on other sites

When I reload the page, It seems to be loading for a little bit but nothing new is being displayed. 

 

I entered

exec('mogrify -resize 468.75x200  /home/deathdefyer2002/imageA.jpg');

 

I am testing the code by using the following:

 

echo "<img src='/home/deathdefyer2002/imageA.jpg' >";

 

Every refresh and the image never changes.

 

 

Link to comment
Share on other sites

try this out

 

$command = 'mogrify -resize 468.75x200 /home/deathdefyer2002/imageA.jpg';
$output = array();
exec($command, $output);
var_dump($output);

 

also this

 

echo "<img src='/home/deathdefyer2002/imageA.jpg' >";

 

is that the right path, it should a http path and not your linux path

 

 

Link to comment
Share on other sites

I went ahead and updated the code and I still receive the following output string(0) ""

 

 

The Imgsrc line appears to be working just fine.  It IS displaying the image, but with the original dimensions.  If I run the mogrify command on the command line and refesh the page, it does change the resolution.    If you beleive that the IMG SRC could be the problem, then I will go ahead and update that to the HTML path.

 

 

Link to comment
Share on other sites

not too sure, but could be a permission issue as your php script will run as restricted user you might even want to change the command to a absolute path like for example

 

$command = '/usr/bin/mogrify -resize 468.75x200 /home/deathdefyer2002/imageA.jpg';

 

the above is just an example your command could be located at a different location, you can find the location on the shell by typing

 

which mogrify

 

hope its helpful

that should show you the full path of the command.

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.