Client side thumb creation OR Server side?
- by Totty
Hy,
I have two options to choose from:
Client side:
pro: image manipulations occurs on the client side, so no load on the server
cons: more uploaded data
Server side:
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?