Reputation: 23
What is the recommended Image upload and resize approach with the below Tech Stack :
I am wondering if anyone has insight on this in regards to performance, efficiency etc.
Here’s what we’ve tried
Which is highly recommended ? Are there alternatives ? Please me know.
Upvotes: 0
Views: 417
Reputation: 599956
The first recommendation I'd make is to not consider any of the products you mention for storing images, but instead use Cloud Storage (for which a Firebase SDK is also available).
The simplest way to then resize the image after it's been uploaded is through the Resize Images extension that Firebase providers. The extension is just a pre-built set of Cloud Functions, so if you want different behavior you can always fork its code and roll your own based on that.
Upvotes: 1