Search found 5 matches

by josecarlosrz19
2017-06-09T21:42:16-07:00
Forum: Fred's Scripts
Topic: "Toon" script problem only with some images
Replies: 10
Views: 77082

Re: "Toon" script problem only with some images

They probably will not want to upgrade. Typically, they are limited to versions of ImageMagick that come bundled with the Linux version they are using. I do not know what they use if the server is Windows. You could ask if they can install a current version of IM in your own directory, if they cann...
by josecarlosrz19
2017-06-09T21:01:37-07:00
Forum: Fred's Scripts
Topic: "Toon" script problem only with some images
Replies: 10
Views: 77082

Re: "Toon" script problem only with some images

You have memory problems. I suggest you talk to your system admin. convert input.jpg -resize 600 -quality 50 result.jpg I tried to -quality 1 and the error persists. You are right, it's an old ImageMagick version, I will try to talk to the hosting support. Any things should I ask to them? Thanks fo...
by josecarlosrz19
2017-06-09T20:11:57-07:00
Forum: Fred's Scripts
Topic: "Toon" script problem only with some images
Replies: 10
Views: 77082

Re: "Toon" script problem only with some images

What do you get from these typed in a TERMINAL or CMD window. convert -list format What does it say for JPG? convert -list configure What does it say for the line starting with DELEGATES? This is for JPG/JPEG: JPEG* JPEG rw- Joint Photographic Experts Group JFIF format (62) JPG* JPEG rw- Joint Phot...
by josecarlosrz19
2017-06-09T18:41:14-07:00
Forum: Fred's Scripts
Topic: "Toon" script problem only with some images
Replies: 10
Views: 77082

Re: "Toon" script problem only with some images

Thanks a lot for your answer. It was really illustrative. We are getting a little closer to the solution. The reason I rewrote it in PHP is because I use Windows on local machine, but I have the hosting space now that is running on Linux, so it opens a lot of possibilities for the support. I tried t...
by josecarlosrz19
2017-06-09T15:36:24-07:00
Forum: Fred's Scripts
Topic: "Toon" script problem only with some images
Replies: 10
Views: 77082

"Toon" script problem only with some images

I clarify I use PHP (exec) and the ImageMagick version I'm using is: 6,7,8,9 (from "LIB_VERSION_NUMBER"). First of all, I save the picture from a URL with PHP. This is ok. Then, I execute: convert picture.jpg -resize 600 picture.jpg This is ok too, the picture is getting resized successful...