Search found 10 matches

by eholz1
2007-03-15T14:39:25-07:00
Forum: MagickWand for PHP
Topic: Correct permissions for reading and writing images
Replies: 4
Views: 19951

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 drwx...
by eholz1
2007-03-15T10:40:35-07:00
Forum: MagickWand for PHP
Topic: Correct permissions for reading and writing images
Replies: 4
Views: 19951

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 ...
by eholz1
2007-03-14T16:11:16-07:00
Forum: MagickWand for PHP
Topic: MagickWriteImage fails (sometimes)
Replies: 4
Views: 19599

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...
by eholz1
2007-03-13T07:57:46-07:00
Forum: MagickWand for PHP
Topic: MagickWriteImage fails (sometimes)
Replies: 4
Views: 19599

Re: MagickWriteImage fails (sometimes)

Yes, I will do that. should be there anyway!!!!
Thanks,

eholz1
by eholz1
2007-03-12T13:13:55-07:00
Forum: MagickWand for PHP
Topic: MagickWriteImage fails (sometimes)
Replies: 4
Views: 19599

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/my...
by eholz1
2007-02-12T16:46:18-07:00
Forum: MagickWand for PHP
Topic: use a "string" value to set parameters for MagickTransformIm
Replies: 2
Views: 13573

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 wa...
by eholz1
2007-02-11T13:20:14-07:00
Forum: MagickWand for PHP
Topic: use a "string" value to set parameters for MagickTransformIm
Replies: 2
Views: 13573

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, ...
by eholz1
2007-02-05T13:06:56-07:00
Forum: MagickWand for PHP
Topic: Equivalent command in Magickwand for convert -resize
Replies: 2
Views: 16794

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)...
by eholz1
2007-02-05T13:02:51-07:00
Forum: MagickWand for PHP
Topic: MagickWand with Linux
Replies: 3
Views: 16988

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 directo...
by eholz1
2007-02-04T20:26:49-07:00
Forum: MagickWand
Topic: an eqivalent command magicwand and Imagemagick
Replies: 0
Views: 9128

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) ...