what is the recommended size format for the images to be shown correctly?
and is there a way to convert image that isn’t in the correct size?
thank you
what is the recommended size format for the images to be shown correctly?
and is there a way to convert image that isn’t in the correct size?
thank you
Mostly anything will work. There’s some good information here.
https://docs.glideapps.com/all/guides/quick-starts/intermediate-techniques/working-with-images
@11116 similar to the question asked here.
Recommended Image Dimensions?
Size does matter when you want a speedy app and your images are stored at e.g. google drive.
If the images are stored via Glide it might not matter (I don’t know) as glide has the possibility to shrink the image size before loading. I personally don’t like that option as I’m out of control of the image. I can’t delete it again.
Cloudinary has been discussed quite a bit the the community and it as some cool options e.g. reducing the size the image before retrieving it (and other very cool stuff). Do a search in the forum if you want to know more.
I myself haven’t found the optimal resolution and how to compute it based on the images you want to insert. iPhone 11 Pro has 1125px width resolution so I’ll try to obtain that and reducing the quality when I save the jpg images.
Would like some further input to setting the optimal size.
If you want people to enlarge the image you should take this into consideration when you size your image.
Hello, I’ve tried that link on a few different pages and it’s no longer working. Do you know if it actually had preferred resolution or best practice for that included on it?
I drop my images into tiny (https://tinypng.com/) before I use them in the app.
I don’t recall, but I think it may have referred to the different size ratios. Beyond that, I have no idea
I’ve found that 1080X1080 works fine.
Yes, that works great. Thank you for the tip.
It’s the aspect ratio that matters much more than the actual dimensions. You should try to match the aspect ratio to that of the image container being used.
For example, if you’re using an Image component with a 3:2 aspect ratio setting, then you’ll get best results with an image of the same aspect ratio. 300x200, 600x400, 900x600, etc.