Search found 4 matches
- 2011-01-23T08:46:28-07:00
- Forum: IMagick
- Topic: $image->writeImage('name/of/image') freezing on one image...
- Replies: 2
- Views: 9698
Re: $image->writeImage('name/of/image') freezing on one imag
Hmm, that is weird, I am currently resizing the rest of the images, it'll take a few hours because it is quite a few and is transferring each image to another server via ftp. After it is done, I'll see what is up with that one image and let everyone know what I find.
- 2011-01-23T07:20:28-07:00
- Forum: IMagick
- Topic: $image->writeImage('name/of/image') freezing on one image...
- Replies: 2
- Views: 9698
$image->writeImage('name/of/image') freezing on one image...
Ok I have a loop that resizes various images into medium and large versions of that image. It seems everything works fine until I go to write a particular image out to the server...(just this one image in the loop, others seem to be working fine.) On this particular image the file is created, but ...
- 2010-12-19T11:39:03-07:00
- Forum: Users
- Topic: Trying to get pixel color data for every pixel in an image
- Replies: 2
- Views: 6419
Trying to get pixel color data for every pixel in an image
The images will be smaller like 300x60 or so on average... but the method I am using is way too slow... is there a faster way than the php example below? $image = 'test.jpg'; $imageSize = getimagesize($image); for($w=0; $w<=$imageSize[0]; $w++){ for($h=0; $h<=$imageSize[1]; $h++){ $txt[$w][$h ...
- 2010-12-18T11:51:40-07:00
- Forum: IMagick
- Topic: convert: unrecognized distortion type `Shepards'
- Replies: 1
- Views: 6296
convert: unrecognized distortion type `Shepards'
I am new to many of the feature of imagemagick an have only used it in the past to do basic image converting. I am trying the Shepards distort example on the following page: http://www.imagemagick.org/Usage/distorts/#shepards but I am getting the following error: convert: unrecognized distortion ...