Uploaded images gets bigger when resized via &w and &h parameters
-
Hi,
I uploaded some images and attached these images to a post. The original image is 642×410 and has ~11.8KBytes.
The image’s url is: “http://daltonmatos.files.wordpress.com/2009/04/ls-simples.png”. When I GET this url I see that the returned response is correct:$ curl -I http://daltonmatos.files.wordpress.com/2009/04/ls-simples.png
HTTP/1.1 200 OK
Content-Type: image/png
Content-Length: 11834Ok, the image returned has ~11.8KBytes
But when I use the resize parameters &w and &h to rezise this image to a *smaller* one, the response is much bigger!
$ curl -I “http://daltonmatos.files.wordpress.com/2009/04/ls-simples.png?w=540&h=410”
HTTP/1.1 200 OK
Content-Type: image/png
Content-Length: 744637That’s a ~744KByte response!
What I’m doing wrong? Am I using de resize parameters the wrong way?
Thanks in advance.
-
Thanks! it solves the problems.
I’ll use gif’s or use always the image with its original size (I found a theme that is large enough).
Thanks for the help!
- The topic ‘Uploaded images gets bigger when resized via &w and &h parameters’ is closed to new replies.