Hi, I wonder which is better option for download thumbnails for my items list in Flutter app. For example when I set quality parameter to 10, Will request take longer than without quality parameter? Second option I'm considering is compress image in my app and always download in full quality.
which is better option for download thumbnails for my items list in Flutter app.
In general, I think it's good to use the preview endpoint.
For example when I set quality parameter to 10, Will request take longer than without quality parameter?
There's a tradeoff. changing the quality might take more time to process the file, but the file size could be smaller so network bandwidth could be less. Keep in mind, Appwrite caches files on the server too so the file processing would only be done once.
Second option I'm considering is compress image in my app and always download in full quality.
I prefer processing the file server-side because devices may not have enough resources to process the file without lagging the device.
Recommended threads
- Current User is Not authorized
recreating same Thread
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...