Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

save_bmp(3alleg4) [opendarwin man page]

save_bmp(3alleg4)						  Allegro manual						 save_bmp(3alleg4)

NAME
save_bmp - Saves a bitmap into a BMP file. Allegro game programming library. SYNOPSIS
#include <allegro.h> int save_bmp(const char *filename, BITMAP *bmp, const RGB *pal); DESCRIPTION
Writes a bitmap into a 256-color or 24-bit truecolor BMP file. RETURN VALUE
Returns non-zero on error. SEE ALSO
save_bitmap(3alleg4) Allegro version 4.4.2 save_bmp(3alleg4)

Check Out this Related Man Page

save_bitmap(3alleg4)						  Allegro manual					      save_bitmap(3alleg4)

NAME
save_bitmap - Saves a bitmap into any supported file format. Allegro game programming library. SYNOPSIS
#include <allegro.h> int save_bitmap(const char *filename, BITMAP *bmp, const RGB *pal); DESCRIPTION
Writes a bitmap into a file, using the specified palette, which should be an array of 256 RGB structures. The output format is determined from the filename extension: at present this function supports BMP, PCX and TGA formats. Two things to watch out for: on some video cards it may be faster to copy the screen to a memory bitmap and save the latter, and if you use this to dump the screen into a file you may end up with an image much larger than you were expecting, because Allegro often creates virtual screens larger than the visible screen. You can get around this by using a sub-bitmap to specify which part of the screen to save, eg: BITMAP *bmp; PALETTE pal; ... get_palette(pal); bmp = create_sub_bitmap(screen, 0, 0, SCREEN_W, SCREEN_H); save_bitmap("dump.pcx", bmp, pal); destroy_bitmap(bmp); RETURN VALUE
Returns non-zero on error. SEE ALSO
save_bmp(3alleg4), save_pcx(3alleg4), save_tga(3alleg4), load_bitmap(3alleg4), register_bitmap_file_type(3alleg4) Allegro version 4.4.2 save_bitmap(3alleg4)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Shopt -s histappend

What is the point of this? Whenever I close my shell it appends to the history file without adding this. I have never seen it overwrite my history file. # When the shell exits, append to the history file instead of overwriting it shopt -s histappend (3 Replies)
Discussion started by: cokedude
3 Replies

2. OS X (Apple)

Undeletable file

Greetings, I'm trying to delete a file with a weird name from within Terminal on a Mac. It's a very old file (1992) with null characters in the name: “␀␀Word FinderÂŽ Plus™”. Here are some examples of what I've tried: 12FX009:5 dpontius$ ls ␀␀Word FinderÂŽ Plus™ 12FX009:5 dpontius$ rm... (29 Replies)
Discussion started by: dpontius
29 Replies