Hy,
I have two options to choose from: Client side(with FLASH or Javascript): pro: image manipulations occurs on the client side, so no load on the server cons: more uploaded data
Server side(Ruby on rails): pro: less uploaded data cons: image manipulations occurs on the server side, so there are some load and will be queried...
For example, when you upload an image, you will get 4 images: a large image, medium, thumb1, thumb2, so in the case of the client side will be needed to upload the 4 optimized images. For the server side, will be only uploaded 1 optimized image and then manipulated.
What is better and less consuming way?
EDIT: On server side: I really do not know these details but will be used ruby on rails.
The only thing I wanted to know if is more consuming: 1) load an image with FLASH, optimize it, upload on server, then on server side make 4 thumbs and then save.
OR
2) load an image in FLASH, make 4 thumbs and upload them on server.
The thumb resolutions are still variable, so I cant say the sizes.