
Why does it matter what you name your image jpg? A good image file name can: 1) Be processed by a variety of different computer operating systems and 2) Help art directors will know who the art belongs to, even if it gets mixed with other artists.
What I've found from
doing web design coding, is that in general, it's always a good practice to:
- Put the file name in lower case letters.
- It's a good habit to limit characters to letters, numbers, and underscores.
- Don't use blank spaces when you name a file. Instead use underscores to_separate_words.
- Try to include your own name on the file, so art directors remember who the image belongs to, such as: kateharper_catcard.jpg or kharper_cat_card.jpg
- Some art directors want the date or special words included in the image filename. For excample, a greeting cards publisher might want a separate image file for front and inside text. You might consider using front_harper_cat_1.jpg and inside_harper_cat_1.jpg
- Keep it under 56 characters, the shorter the better. I've found 10-20 characters is usually enough room to squeeze in my name and a description.
Reference ArticleHere's more detailed information I found in this great
article from
Controlled Vocabulary Website on How to name image files.
Read complete article and see all 8 tips...1. Be careful with using special characters.
When creating file and folder names, limit your filenames to the characters A-Z, a-z, 0-9, underscore ( _ ), period ( . ), and hyphen ( - ). (But avoid using hyphens and periods since some older systems can't handle it.)
2. Do not use more than one period in a file name. Save it for your extensions (.jpg .gif .png) Why? Because doing so will ensure full backwards compatibility for some operating systems. Also, some mail filtering programs will consider a file with two periods to be a "virus" or "worm."
3. Do not assume names are case sensitive - or - not case sensitive
Do not expect a directory to be able to hold separate elements named "Lifestyle" and "lifestyle", and , do not expect a file created with the name of "AN18256R.JPG" to be opened or found successfully using "an18256r.jpg". Read complete article and see all 8 tips...