BMP,PNG,PNM,TIFF,JPEG,GIF の画像を読み書きするためのライブラリ [詳細]
#include "../mist.h"#include "bmp.h"#include "png.h"#include "gif.h"#include "tiff.h"#include "jpeg.h"#include "pnm.h"#include "tga.h"#include <iostream>#include <string>ネームスペース | |
| namespace | mist |
関数 | |
| template<class T , class Allocator > | |
| bool | mist::read_image (mist::array2< T, Allocator > &image, const std::string &filename) |
| JPEG,TIFF,PNG,BMP,PNM,GIF 画像を拡張子に基づいてMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::read_image (mist::array2< T, Allocator > &image, const std::wstring &filename) |
| JPEG,TIFF,PNG,BMP,PNM,GIF 画像を拡張子に基づいてMISTコンテナに読み込む | |
| template<class T , class Allocator > | |
| bool | mist::write_image (const mist::array2< T, Allocator > &image, const std::string &filename) |
| MISTコンテナの画像をTIFF形式でJPEG,TIFF,PNG,BMP,PNM,GIF 画像形式でファイルに出力する | |
| template<class T , class Allocator > | |
| bool | mist::write_image (const mist::array2< T, Allocator > &image, const std::wstring &filename) |
| MISTコンテナの画像をTIFF形式でJPEG,TIFF,PNG,BMP,PNM,GIF 画像形式でファイルに出力する | |
BMP,PNG,PNM,TIFF,JPEG,GIF の画像を読み書きするためのライブラリ
1.8.1.2