I have made a simple app with a form which gets user info and their image, when they submit form it saves data on google datastore and image in google cloud storage.
To use cloud storage space efficiently i want to upload resized(smaller) image on cloud storage, but as of now i couldn't found a solution for that, because GAE doesnt allow local storage to process image(for resizing).
Can you suggest any solution to use GCS space efficiently?
one solution i tried is to upload the image again using resized url(getImageServingUrl) and then delete the primary/first image, but i think its not very efficient way to do this task, as it will use server processing time.