[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

RMagick Image Optimize

TomRossi7

3/17/2006 2:47:00 PM

I'm new to RMagick and am looking for how you can set the optimization
on a jpeg image. Can someone point me in the right direction?

Thanks!
Tom

3 Answers

Tim Hunter

3/17/2006 3:58:00 PM

0

If by "optimization" you mean compression, see here:
http://www.simplesystems.org/RMagick/doc/comtasks.html#c...

If you mean color reduction, see here:
http://www.simplesystems.org/RMagick/doc/image3.htm...

TomRossi7

3/17/2006 9:02:00 PM

0

Thanks! The compession is definitely what I am looking for. I'm
trying to use it dynamically when the image is rendered to a Rails web
page. Currently, I am using the follwoing to render the image:

send_data myimage.to_blob, :disposition => 'inline', :type =>
'image/jpg'

I tried using myimage.quality = 50, but it looks like that can only be
done on a write. Is there a way for me to set the quality when
rendering the image? Sorry if this is newbie stuff!

--Tom

Tim Hunter

3/17/2006 10:31:00 PM

0

TomRossi7 wrote:
> Thanks! The compession is definitely what I am looking for. I'm
> trying to use it dynamically when the image is rendered to a Rails web
> page. Currently, I am using the follwoing to render the image:
>
> send_data myimage.to_blob, :disposition => 'inline', :type =>
> 'image/jpg'
>
> I tried using myimage.quality = 50, but it looks like that can only be
> done on a write. Is there a way for me to set the quality when
> rendering the image? Sorry if this is newbie stuff!
>
> --Tom
>
quality works as an option to the to_blob method, too. To change the
compression level you have to specify quality as a optional argument to
the to_blob or write method. I don't know how you'd do that in a Rails
context. Perhaps a Rails expert will know.