Search found 9 matches
- 2011-01-18T08:43:24-07:00
- Forum: Users
- Topic: Temporary Storage
- Replies: 2
- Views: 4949
Re: Temporary Storage
If it is a matter of clean up you can set up a program to delete files in your temporary directory that are older than some period, say an hour or day or more. That's what I'm hoping to do. I need to force Image Magick to use a directory I have access to so I can clean up after myself when I'm ...
- 2011-01-17T20:58:31-07:00
- Forum: Users
- Topic: Temporary Storage
- Replies: 2
- Views: 4949
Temporary Storage
Recently my host contacted me about filling the temporary storage on my shared server- they didn't tell me this with kind words. The cause of this was me processing very large files with Image Magick. As a result, I'm trying to use have it use a different directory using the following code: convert ...
- 2010-11-23T07:18:14-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
Response from host: The issue here is with memory allocation. Those processes exceeded the allowed user memory and so won't work with any version of ImageMagick. [Tue Nov 23 06:54:31 2010] [error] [client 66.45.229.82] convert: memory allocation failed `/tmp/magick-XXhzQRHZ' @ error/quantize.c ...
- 2010-11-22T20:16:11-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
That command works either way (resize first and coalesce first). My goal is to simply add a png to every frame of any given animated gif. The script below works for some gifs, but not the gif below: convert http://d.imagehost.org/0088/test.gif -coalesce -gravity Center -geometry +0+0 null: http ...
- 2010-11-22T11:57:18-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
I'm going to open a ticket with HostGator to see if they have any thoughts regarding the version issue. All of the code works with SOME gifs and the first section of code works with all gifs so it is definitely accessing the images correctly. I've even ran this with server relative paths to the ...
- 2010-11-22T08:12:40-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
My host (HostGator) is running version 6.6.0 rather than 6.6.5. Is that problem enough to make a difference? $image = "http://d.imagehost.org/0088/test.gif"; $watermark = "http://www.accessibletwitter.com/images/iconsSocial/twitter.png"; $exec = "convert $image -resize 32x32 -layers optimize output1 ...
- 2010-11-21T21:39:45-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
So its the size of the file that is the problem? I'd love to optimize them or scale the image size, but any commands I attempt to execute on them output nothing. Both of these fail: convert $image -layers optimize output.gif convert $image -resize 32x32 output.gif Is there a way to increase ...
- 2010-11-21T19:53:29-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
Re: coalesce failing on some gifs
Ah, my mistake- I uploaded one of the animated gifs I was testing that worked rather than one that doesn't. Please look at this one instead: http://d.imagehost.org/0350/bettertest.gif
- 2010-11-21T12:51:42-07:00
- Forum: Users
- Topic: coalesce failing on some gifs
- Replies: 12
- Views: 22626
coalesce failing on some gifs
I'm working with animated gifs and finding something as simple as the below is failing for some but not all animated gifs . convert $image -coalesce $output Where values of $image is a path to an animated gifs and $output is a path to the destination. For this gif, http://d.imagehost.org/0088/test ...