Search found 10 matches
- 2007-03-15T14:39:25-07:00
- Forum: MagickWand for PHP
- Topic: Correct permissions for reading and writing images
- Replies: 4
- Views: 20467
Re: Correct permissions for reading and writing images
hello squig here are the permissions for the folder (25): drw-rw-rw- 3 apache webdev 4.0K Mar 15 09:59 25 and here are the permissions for the files under "25" 25/... -rwxrwxrwx 1 apache webdev 69K Mar 15 09:55 coffeeandcars.JPG -rwxrwxrwx 1 apache webdev 69K Mar 15 09:59 son_cher.jpg drwxrwxrwx 2 ...
- 2007-03-15T10:40:35-07:00
- Forum: MagickWand for PHP
- Topic: Correct permissions for reading and writing images
- Replies: 4
- Views: 20467
Correct permissions for reading and writing images
Hello Magickwand and php group, I am having trouble setting permissions correctly so that the magickwand api (php 5.2) can read and write images. I usually read a file from one directory, create a magickwand resource from that file, and transform the image, and save the new image with a new name to ...
- 2007-03-14T16:11:16-07:00
- Forum: MagickWand for PHP
- Topic: MagickWriteImage fails (sometimes)
- Replies: 4
- Views: 20025
Re: MagickWriteImage fails (sometimes)
Hello PHP/Magic wand I discovered my problem. It turns out that MagickWandWrite, etc is VERY sensitive to having incorrect permissions on folders and files! This issue, sadly, I created. I am still not quite sure how to set permissions appropriately, but it seems if I have apache as the owner, and a ...
- 2007-03-13T07:57:46-07:00
- Forum: MagickWand for PHP
- Topic: MagickWriteImage fails (sometimes)
- Replies: 4
- Views: 20025
Re: MagickWriteImage fails (sometimes)
Yes, I will do that. should be there anyway!!!!
Thanks,
eholz1
Thanks,
eholz1
- 2007-03-12T13:13:55-07:00
- Forum: MagickWand for PHP
- Topic: MagickWriteImage fails (sometimes)
- Replies: 4
- Views: 20025
MagickWriteImage fails (sometimes)
Hello Magickwand group, I have a perplexing problem. I am using Fedora Core 6, PHP 5.2, and apache 2.2. I have Magicwand, Imagemagick, and GD in my php config. I have two php pages, one where I read an image(s) and size(s), and resize the image, and do a write to a diff path (reads from testimage ...
- 2007-02-12T16:46:18-07:00
- Forum: MagickWand for PHP
- Topic: use a "string" value to set parameters for MagickTransformIm
- Replies: 2
- Views: 13839
Re: use a "string" value to set parameters for MagickTransformIm
I did discover one thing after I made this post - if the image size is the same i.e. before "size" = after "size", the image transform will not transform! so - what I did, was shrink my height and width by a few pixels (like 100), and then I would get a $resouce_image from the wand, etc. Thanks ...
- 2007-02-11T13:20:14-07:00
- Forum: MagickWand for PHP
- Topic: use a "string" value to set parameters for MagickTransformIm
- Replies: 2
- Views: 13839
use a "string" value to set parameters for MagickTransformIm
Hello I stumped!!! I am trying to use the following type of code to transform an image. $size = $width.'x'. $height; $resizedImage = MagickTransformImage( $magick_wand, '0x0', "$size"); this does not work for me - it works fine if I use: $resizedImage = MagickTransformImage( $magick_wand, '0x0 ...
- 2007-02-05T13:06:56-07:00
- Forum: MagickWand for PHP
- Topic: Equivalent command in Magickwand for convert -resize
- Replies: 2
- Views: 17087
Equivalent command in Magickwand for convert -resize
I have been looking for a command in magickwand for php, that will do the same thing as this command line entry for ImageMagick convert spyder.jpg -resize 900x752\> resize_spyder.jpg - in this case the height is the factor I want limited. the width actually comes out to less than 900 (which is fine ...
- 2007-02-05T13:02:51-07:00
- Forum: MagickWand for PHP
- Topic: MagickWand with Linux
- Replies: 3
- Views: 17402
Re: MagickWand with Linux
You need to check your magickwand installation. see this link: http://www.magickwand.org/ also check this you may have to do something like this: i install PHP 4.4.2 follow steps. rm ./configure rm: remove regular file `./configure'? y ./buildconf --force Forcing buildconf using default Zend ...
- 2007-02-04T20:26:49-07:00
- Forum: MagickWand
- Topic: an eqivalent command magicwand and Imagemagick
- Replies: 0
- Views: 9265
an eqivalent command magicwand and Imagemagick
I have been looking for a command in magickwand for php, that will do the same thing as this command line entry for ImageMagick convert spyder.jpg -resize 900x752\> resize_spyder.jpg - in this case the height is the factor I want limited. the with actually comes out to less than 900 (which is fine ...