screenshot format

Discussion among members of the development team.

Moderator: Forum Moderators

Post Reply
toms
Posts: 1717
Joined: November 6th, 2005, 2:15 pm

screenshot format

Post by toms »

I don´t know if this topic is right here...

If I make a sreenshot, it is saved as a .bmp picture.:o
I don´t like it. It only takes much capacity from my PC :evil:
And I don´t want to change the format everytime.
Every screenshot has about 2,3 Megabytes!:(

There are other things I have to do :evil:

Why not jpg or another compressed-format?

(I use BfW 1.0)
First read, then think. Read again, think again. And then post!
User avatar
Tomsik
Posts: 1401
Joined: February 7th, 2005, 7:04 am
Location: Poland

Post by Tomsik »

I don't think BMP is best format, but you don't lose quality, and every program can read them. (even M$ Paint)
toms
Posts: 1717
Joined: November 6th, 2005, 2:15 pm

Post by toms »

Who needs paint?
First read, then think. Read again, think again. And then post!
User avatar
Ankka
Posts: 594
Joined: January 2nd, 2005, 2:40 pm
Location: Finland

Post by Ankka »

I didn't know BfW had a built-in screenshot feature...
scott
Posts: 5243
Joined: May 12th, 2004, 12:35 am
Location: San Pedro, CA

Post by scott »

I think it is due to a limitation in SDL.
Hope springs eternal.
Wesnoth acronym guide.
Disto
Posts: 2039
Joined: November 1st, 2004, 7:40 pm
Location: Cambridge, UK

Post by Disto »

toms wrote:Who needs paint?
Neorice uses it, and he's made *some* of the funkiest art around.
Creator of A Seed of Evil
Creator of the Marauders
Food or Wesnoth? I'll have Wesnoth
User avatar
ivanovic
Lord of Translations
Posts: 1149
Joined: September 28th, 2004, 10:10 pm
Location: Germany

Post by ivanovic »

The reason is simple: it is to avoid a new dependency. This way we do not need to include libjpeg with the binarys. We already got many dependencies. Bitmaps should be fine as first screenshots. You can easily convert them to another format.
torangan
Retired Developer
Posts: 1365
Joined: March 27th, 2004, 12:25 am
Location: Germany

Post by torangan »

Maybe they should be saved as PNG images if that doesn't cause huge problem with SDL. I'm rather sure that libpng is already required. :D
WesCamp-i18n - Translations for User Campaigns:
http://www.wesnoth.org/wiki/WesCamp

Translators for all languages required: contact me. No geek skills required!
User avatar
Viliam
Translator
Posts: 1341
Joined: January 30th, 2004, 11:07 am
Location: Bratislava, Slovakia
Contact:

Post by Viliam »

:idea: How to make changing picture format less annoying:

On MS Windows, I have installed the ImageMagick command-line graphic tool. Then in the Explorer file type menu I choose extension "BMP" and add a new action:

Code: Select all

Convert to PNG
"C:\Program Files\ImageMagick-6.2.0-Q16\convert.exe" %1 -quality 90 %1.png
After this, I simply right-click a BMP file, choose "Convert to PNG" from menu, and it is converted; for example "picture.bmp" to "picture.bmp.png". Then, I delete the old file.

I have also similar actions to convert to JPG (one to 90% quality, another to 75% quality), etc. I think this is as simple as possible without using the command line. A nice command-line solution could be to make a script that converts all BMP files in current directory to PNG files.
Dave
Founding Developer
Posts: 7071
Joined: August 17th, 2003, 5:07 am
Location: Seattle
Contact:

Post by Dave »

torangan wrote:Maybe they should be saved as PNG images if that doesn't cause huge problem with SDL. I'm rather sure that libpng is already required. :D
SDL doesn't support PNG write, only PNG read.
“At Gambling, the deadly sin is to mistake bad play for bad luck.” -- Ian Fleming
toms
Posts: 1717
Joined: November 6th, 2005, 2:15 pm

Post by toms »

Ankka wrote:I didn't know BfW had a built-in screenshot feature...
It has maybe no hotkey configured...You find it under "options".
First read, then think. Read again, think again. And then post!
Post Reply