ビットマップ画像を読み書きするためのライブラリ [詳細]
#include "../mist.h"#include "../config/color.h"#include "../config/endian.h"#include "../limits.h"#include <iostream>#include <string>#include <deque>#include <map>#include <algorithm>ネームスペース | |
| namespace | mist |
関数 | |
| template<class T , class Allocator > | |
| bool | mist::read_tga (array2< T, Allocator > &image, const std::string &filename) |
| TGA画像をMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_tga (array2< T, Allocator > &image, const std::wstring &filename) |
| TGA画像をMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::write_tga (const array2< T, Allocator > &image, const std::string &filename, typename array2< T, Allocator >::size_type tga_bits=32, bool is_encode_RLE=true) |
| MISTコンテナの画像をTGA形式でファイルに出力する | |
| template<class T , class Allocator > | |
| bool | mist::write_tga (const array2< T, Allocator > &image, const std::wstring &filename, typename array2< T, Allocator >::size_type tga_bits=32, bool is_encode_RLE=true) |
| MISTコンテナの画像をTGA形式でファイルに出力する | |
ビットマップ画像を読み書きするためのライブラリ
1.8.1.2