Please explain the conversion....

For system help, all hardware / software topics NOTE: use Coders Corner for all coders topics.

Moderators: Krom, Grendel

Post Reply
User avatar
will_kill
DBB Captain
DBB Captain
Posts: 721
Joined: Mon Jul 11, 2005 5:52 pm

Please explain the conversion....

Post by will_kill »

from bitmap to gif or jpeg. Why is it importent and how do I do it? :?
User avatar
Lothar
DBB Ghost Admin
DBB Ghost Admin
Posts: 12133
Joined: Thu Nov 05, 1998 12:01 pm
Location: I'm so glad to be home
Contact:

Post by Lothar »

1) why is it important?

Different image types (bmp, gif, jpg, png, etc.) have different space requirements and different levels of quality. Bitmaps take up significantly more storage space (and are therefore slower to load on a modem) than most other formats. So, you want to convert to other types in order to save space and loading time.

2) how do you do it?

Open up any generic image editing program. Even Paint will do. Open up the .bmp image in that program, and then go to "file" and "save as". On your save-as screen, there should be a "save-as type" drop-down menu. Select whatever type you want there.
User avatar
will_kill
DBB Captain
DBB Captain
Posts: 721
Joined: Mon Jul 11, 2005 5:52 pm

Post by will_kill »

wow, what a clear, concise explanation. Thanks for your response and thanks too for making it so e-z to understand :)



o_O why does it only give me the option to save in .tif?
User avatar
fliptw
DBB DemiGod
DBB DemiGod
Posts: 6458
Joined: Sat Oct 24, 1998 2:01 am
Location: Calgary Alberta Canada

Post by fliptw »

IIRC, only versions of paint from XP and later gave you that option.

nab irfanview it'll get the job done.
User avatar
will_kill
DBB Captain
DBB Captain
Posts: 721
Joined: Mon Jul 11, 2005 5:52 pm

Post by will_kill »

fliptw wrote:IIRC, only versions of paint from XP and later gave you that option.

nab irfanview it'll get the job done.
Wow! what an awesome program....many thanks!


and BTW, what does "IIRC" mean :?:
User avatar
Stryker
DBB Admiral
DBB Admiral
Posts: 1103
Joined: Sat Jun 12, 2004 7:58 am
Contact:

Post by Stryker »

If I Remember Correctly.
User avatar
roid
DBB Master
DBB Master
Posts: 9990
Joined: Sun Dec 09, 2001 3:01 am
Location: Brisbane, Australia
Contact:

Post by roid »

User avatar
will_kill
DBB Captain
DBB Captain
Posts: 721
Joined: Mon Jul 11, 2005 5:52 pm

Post by will_kill »

kew...thx fellas, especially for the linky roid :wink:
User avatar
Diedel
D2X Master
D2X Master
Posts: 5278
Joined: Thu Nov 05, 1998 12:01 pm
Contact:

Post by Diedel »

will_kill,

there's a little more to it.

There are ways to reduce the size of a file, particularly of image files. Some compression methods are lossless, i.e. all information of the original file is still somehow available in the compressed file. An example is PNG, or some TGA sub formats.

Other compression methods loose some information. These formats usually work with the weaknesses of the eye and try to trick it so that the compressed image looks very much like the original. The higher the compression, the lower the image fidelity. A good example is highly compressed jpg: You will notice the quality loss in the image.

So if you want to send images somewhere, chose a compressed file format. If 100% fidelity to the original is not required, you can e.g. chose jpg.
User avatar
will_kill
DBB Captain
DBB Captain
Posts: 721
Joined: Mon Jul 11, 2005 5:52 pm

Post by will_kill »

thanks much Diedel :)
Post Reply