Reputation: 1
I am new to android and developing an online food delivery application.
I want to use cloudinary to store images so that I can transform them to different sizes easily and can display it on app for better look and feel.
So my question is- in which format, pixel and size of image should upload on cloudinary so that after transformation it won't get much distorted and final size of image should be in few KBs.
Upvotes: 0
Views: 151
Reputation: 460
It's recommended to upload the original image to Cloudinary as-is and then deliver the transformed images. For example, this is the original sample image - http://res.cloudinary.com/demo/image/upload/sample.jpg
Transforming it to a 100X100 on-the-fly - http://res.cloudinary.com/demo/image/upload/w_100,h_100,c_fill/sample.jpg
You can also perform the transformations eagerly (to be available immediately) - http://cloudinary.com/documentation/upload_images#eager_transformations
Upvotes: 0