Optimize image size in Parse.com -
I have a strange problem with the way to resize on parse image modules: First of all I have a 3.8MB (1920x1080px) The image gets a parse cloud code, then I will resize it to 384x216 pix.
I do not know when I download the resultant image in my front application, the file size is still 3.8 MB, while the size of the image
I have my users Can not allow images to be compelled to download so heavy
Any suggestions about how to solve it?
I am ready to work with an external library, as long as it can be executed on parse cloud code.
Do not resize images in the cloud, resize them on the clients and send small files to the web. But it takes less processing time to resize them than travel.
You are seeing an old image in front of your application, probably because of internal cache of pars. Queries that have been sent before loading the cache to reduce the amount of data transferred. You can easily see and reset the application and see that your images might work well.
Comments
Post a Comment