Using AWS S3 for photo storage
Posted
by
Sam
on Stack Overflow
See other posts from Stack Overflow
or by Sam
Published on 2012-10-20T04:58:13Z
Indexed on
2012/10/20
5:00 UTC
Read the original article
Hit count: 137
I'm going to be using S3 to store user uploaded photos. Obviously, I wont be serving the image files to user agents without resizing them down. However, not one size would do, as some thumbnails will be smaller than other larger previews. So, I was thinking of making a standard set of dimensions scaling from the lowest 16x16 to some highest 1024x1024. Is this a good way to solve this problem? What if I need a new size later on? How would you solve this?
© Stack Overflow or respective owner