jpg IS jpeg
2006-07-03 08:04:40
·
answer #1
·
answered by Anonymous
·
0⤊
1⤋
Right click on the file and click RENAME.
Essentially, as all the others here say - JPG and JPEG are the same thing and its just a 3-letter extension convention which makes people (or cameras) name their photos with a JPG extension. You can safely rename JPG to JPEG and vice versa without affecting the photograph in any way.
2006-07-04 00:37:04
·
answer #2
·
answered by great_guns2003 3
·
0⤊
0⤋
Each of the Windows extensions you mention (JPG and JPEG) are and mean the same thing to the operating system. Windows is configured by default (as are most applications) to recognize both extensions so it is simply a matter of personal preference.
2006-07-03 14:33:30
·
answer #3
·
answered by cptdrinian 4
·
0⤊
0⤋
jpg jpeg it is the same thing was named jpg for 8.3 naming convention on older pc's eg.. myphotos.jpg = 8.3 8 letter file name and 3 letter file extension
2006-07-03 08:09:31
·
answer #4
·
answered by ifoodosa 1
·
0⤊
0⤋
Is absolutely the same thing. Changing the name doesn't change the quality of the picture unless you want to change the picture to gif which is another story. You do that in a picture editor, chose Save As and change the format of the picture to another name.
2006-07-03 12:43:06
·
answer #5
·
answered by Anonymous
·
0⤊
0⤋
use notepad, paste this in it and save as rename.VBS
CODE
'(c) ONEMANCAN
'Rename all type1 files to type 2 files in a folder
Dim fso, f, f1, fc, s, Folder, lname, type1, type2
Folder = "c:\test"
type1 = "jpeg"
type2 = "jpg"
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFolder(Folder)
Set fc = f.Files
For Each f1 in fc
lname=LCase (f1.Name)
if (right (lname,Len (type1)) =type1) then
s=Replace(lname, type1, type2)
wscript.echo f1.Name & " rename to " & s
f1.Name = s
end if
Next
Or simply open a command prompt (Start > Run > cmd), navigate to the appropriate directory and type: ren *.jpeg *.jpg
2006-07-03 08:05:54
·
answer #6
·
answered by Trent 3
·
0⤊
0⤋
Add an E
2006-07-03 08:03:31
·
answer #7
·
answered by Anonymous
·
0⤊
0⤋
They are the same thing...
unless you want to add the "E"
2006-07-03 09:42:37
·
answer #8
·
answered by uhhhhhhhh 3
·
0⤊
0⤋
give your friend jp g the middle initial e... i must say, it's much more distinguished!
2006-07-10 07:11:13
·
answer #9
·
answered by nomad 3
·
0⤊
0⤋
son la misma cosa! (they are the same thing)
2006-07-03 08:13:11
·
answer #10
·
answered by Lorena Deranla 2
·
0⤊
0⤋