I want to make bigger application that stores multiple avatars for each registered user (different sizes of the same image).
Should I store original images and resized avatars in the same directory (small_avatar and big_avatar stored in the same directory) or should I keep different sized images in matching directories (small_avatar goes to small_avatar directory, big_avatar goes to big_avatar directory etc.)
Storing multiple avatars
79 Views Asked by 123dcck At
1
There are 1 best solutions below
Related Questions in THUMBNAILS
- LinkedIn Thumbnail problems
- How to link thumbnails at its redpectives post in blogger
- How to prevent artefacts in transparent images when generating thumbnails?
- how to download portion of video which was uploaded into AWS s3 bucket, though Nodejs SDKs
- How do i fix the broken thumbnails from a wordpress migration?
- thumbnail not displaying when i open view in flutter
- How can I reduce home page and post page thumbnail image when same thumbnail both side
- Can't get thumbnail from IShellItem using IThumbnailProvider
- Album Art now visible in Android 11
- Where and How to tell Youtube to create the WebP Thumbnails which are missing?
- Why does the image get rotated while creating a screenshot using sharp?
- How to vaildate a subscriber has uploaded a thumbnail using javascript
- How can I create in MAUI Android a thumbnail from a byte array?
- Issue with displaying thumbnail in Discord message using discord.py
- Adding url preview thumbnail for my react app
Related Questions in STORAGE
- Worth it to access data by blocks on modern OS/hardware?
- Remove files with LastWriteTime
- spring security + form login + redis session storage -> keep coming out anonymous User
- How to redirect to another page eg main.py after user fill in and click register button and store it on .ini local database on python using kivy
- JSON document based storage Flutter(android and iOS)
- Invoke-WebRequest : Cannot validate argument on parameter 'Uri' Brocade switch FOS REST API
- How to set storage path for main domain from sub domain - Laravel
- Could converting a JPG to PNG or PPM be a good idea?
- How to restart automatically the application after clearing its storage?
- How to change an item in a list forever?
- Internal Storage Video Downloder
- Flask Download File with Get Request
- How to initialize a data storage system
- Slow D3DX11CreateShaderResourceViewFromFile relatively CrystalDiskMark speed
- How to store and build paths that depend on user input
Related Questions in AVATARS
- Use gamer's avatar in Xbox game
- change anonymous avatar in blogger comments
- Avatar contact Image how to dynamically display user profile image and the last name with random color UWP?
- Openfire server pep based avatars , Android client
- Is there an alternative to avatars.io?
- Error.. trying to include the User Avatar with a posted comment
- Using avatar images for users in Rails
- Character slowly move up the ground using a humanoid animation type in Unity
- HTML - Image is not displaying in full
- is there a library to fetch user avatars?
- BuddyPress / Wordpress Get dynamic user ID
- Replace Buddypress Avatars with Simple Local Avatars
- Find Google+ avatar for given email address without OAuth
- Having Trouble Changing Avatar Location on my Wordpress site
- Jquery/Java Script: Customise an Image/Avatar by chainging options (e.g. Shape, Colour)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I do not there will be any difference but if you try to check some of the world`s largest websites you will see that they are keeping all in the same directory just with different prefixes. My guess is that saves some load time but I seriously doubt it is significant for the user or server.