Search found 13 matches

by bjn
2013-09-27T19:27:33-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Re: Incredibly slow SRT operation when scaling to small size

The problem I was pointing out was very slow operation on that SRT. Though my guesses about why it was occuring were wrong, I think I specified well enough the issue I was experiencing. I did in fact point out, for example, Fred, that I was letting the user zoom, rotate and position the image, not ...
by bjn
2013-09-27T17:33:44-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Re: Incredibly slow SRT operation when scaling to small size

+distort did not work for me, since this SRT operation is not the only thing going on. That messed up a lot of positioning for me. It may have been possible to fix all that, and I'll look into +distort in future, but right now I'm on a schedule and need to roll out this fix as soon as I can. -scale ...
by bjn
2013-09-27T15:59:49-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Re: Incredibly slow SRT operation when scaling to small size

I'm noticing with other tests that the smaller I set that scale factor the longer it takes. Even scaling an 800x600 jpeg to 0.1 is taking a good 20 seconds. I'm not sure if there's some singularity where it'll spin for ever or not, but it does seem to be much too slow regardless.
by bjn
2013-09-27T15:47:13-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Re: Incredibly slow SRT operation when scaling to small size

See my original example, which didn't involve HTTP.

The problem exists whether the image is downloaded first or not.
by bjn
2013-09-27T14:57:33-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Re: Incredibly slow SRT operation when scaling to small size

It doesn't seem to matter what the input is. I see the problem for instance with this:

Code: Select all

convert http://www.austintexas.gov/sites/default/files/files/Animal_Services/cute-kitten-playing.jpg -distort SRT '0,0 0.002 0 0,0' out.jpg
by bjn
2013-09-27T14:49:36-07:00
Forum: Bugs
Topic: Incredibly slow SRT operation when scaling to small size
Replies: 16
Views: 13041

Incredibly slow SRT operation when scaling to small size

I'm letting a user zoom and rotate and position an image on a web page and then passing the parameters to a server which runs Imagemagick to produce an image. I had a runaway server process just now, and have inspected and boiled it down to this: convert foreground.png -distort SRT '0,0 0.0027 0 0,0 ...
by bjn
2013-09-19T14:07:27-07:00
Forum: Bugs
Topic: Imagemagick won't follow HTTP Location headers
Replies: 11
Views: 15017

Re: Imagemagick fails when trying to get images from HTTPS U

On my Linux machine Imagemagick will load the HTTPS duckduckgo file but not the one from Facebook. <bjn@sponvoid:/tmp>$ convert https://duckduckgo.com/assets/logo_homepage.normal.v102.png d.png <bjn@sponvoid:/tmp>$ convert "https://graph.facebook.com/4/picture?width=177&height=113" out.jpg convert ...
by bjn
2013-09-19T14:00:37-07:00
Forum: Bugs
Topic: Imagemagick won't follow HTTP Location headers
Replies: 11
Views: 15017

Re: Imagemagick fails when trying to get images from HTTPS U

I'm on Mac OS X, not Windows.
by bjn
2013-09-19T11:05:53-07:00
Forum: Bugs
Topic: Imagemagick won't follow HTTP Location headers
Replies: 11
Views: 15017

Re: Imagemagick fails when trying to get images from HTTPS U

My wget is "GNU Wget 1.14", which says it's built with "+https" and "+ssl/openssl". Maybe yours wasn't built with that. Try that URL in a browser, or with curl or something. Do you get a picture? The point, anyway, is that Imagemagick (the version I have at least) succeeds on HTTP but fails on HTTPS ...
by bjn
2013-09-18T22:43:21-07:00
Forum: Bugs
Topic: Imagemagick won't follow HTTP Location headers
Replies: 11
Views: 15017

Re: Imagemagick fails when trying to get images from HTTPS U

wget works for me. $ wget "https://graph.facebook.com/4/picture?width=177&height=113" -O test.jpg --2013-09-18 22:42:01-- https://graph.facebook.com/4/picture?width=177&height=113 Resolving graph.facebook.com... 31.13.74.49, 2a03:2880:f00b:301:face:b00c::1 Connecting to graph.facebook.com|31.13.74 ...
by bjn
2013-09-18T21:33:55-07:00
Forum: Bugs
Topic: Imagemagick won't follow HTTP Location headers
Replies: 11
Views: 15017

Imagemagick won't follow HTTP Location headers

Edit: old subject was "Imagemagick fails when trying to get images from HTTPS URLs", which was incorrect -- cause of bug is now clearer. I found recently that I can specify input images as URLs, and that works very well. But I found today that if I use an HTTPS URL Imagemagick fails. Example ...
by bjn
2010-09-06T07:43:35-07:00
Forum: Users
Topic: Convert 32-bit Jpegs to 24-bit
Replies: 2
Views: 15191

Re: Convert 32-bit Jpegs to 24-bit

Thanks very much. This was the solution.
by bjn
2010-09-06T05:50:36-07:00
Forum: Users
Topic: Convert 32-bit Jpegs to 24-bit
Replies: 2
Views: 15191

Convert 32-bit Jpegs to 24-bit

I have what jpeginfo identifies as 32-bit Jpegs. They're displaying fine in Firefox on my Linux machine but not in IE8 on my Windows VM. They're also much larger in filesize than I would have expected. How can I convert them down to normal 24-bit Jpegs? I certainly don't need any kind of alpha ...