On 22/12/16 17:01, Trussardi Dario Romano wrote:
Ciao,
after upload an image ( with MAFileDescription support )
i need to create the relative logo image with specific size 128 x 128
px.
How i can scale the image into Pharo?
You can, but you might not want to. Scaling images is rather slow, you
often want an external process for that, especially if you want to
operate from disk to disk. You do not want to block your image too long,
and you might want to have your front-end web server serve those logo's
instead of your smalltalk image. ImageMagick can be useful there.
Stephan