image_dither_unittest.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef _TEST_IMAGE_DITHER_H_
00028 #define _TEST_IMAGE_DITHER_H_
00029
00030 #include "image_dither.h"
00031
00032 namespace images
00033 {
00034 class TestImageDither
00035 {
00036 public:
00037 TestImageDither (void);
00038 ~TestImageDither (void);
00039
00040 public:
00041 void set_image(const std::string & filepath);
00042
00043
00044
00045
00046
00047
00048 void test (void);
00049
00050 private:
00051
00052
00053
00054
00055
00056
00057 void convert_8bits_to_24bits (const BitmapAttributes * attrs_src,
00058 BitmapAttributes * attrs_dst);
00059
00060 unsigned char *_convert_8bits_to_24bits(const unsigned char *data,
00061 int w, int h);
00062
00063
00064
00065
00066
00067
00068 void save_24bits_to_file (const BitmapAttributes * attrs);
00069
00070 private:
00071 std::string img_path;
00072 };
00073
00074 }
00075
00076 #endif// _TEST_IMAGE_DITHER_H_
00077