image_dither.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 _IMAGE_DITHER_H_
00028 #define _IMAGE_DITHER_H_
00029
00030 #include <gdk-pixbuf/gdk-pixbuf.h>
00031 #include <glib.h>
00032
00033 #define WHITE_BACKGROUND 255
00034
00035 namespace images
00036 {
00037 typedef struct
00038 {
00039 int width;
00040 int height;
00041 int rowstride;
00042 int bytes_per_pixel;
00043 unsigned char * data;
00044 }BitmapAttributes;
00045
00046
00047
00048
00049 class ImageDither
00050 {
00051 public:
00052 ImageDither(void);
00053 ~ImageDither(void);
00054
00055 public:
00056
00057
00058
00059
00060
00061
00062 void dither_to_8bits(const BitmapAttributes *attrs_src,
00063 BitmapAttributes *attrs_dst);
00064
00065 private:
00066
00067
00068
00069
00070
00071
00072
00073
00074 unsigned char*dither_32bits_to_8bits(const unsigned char *data,
00075 int w, int h, int rowstride);
00076
00077 unsigned char*dither_24bits_to_8bits(const unsigned char *data,
00078 int w, int h, int rowstride);
00079
00080 public:
00081
00082
00083
00084
00085
00086 static int get_rowstride(int width,
00087 int bytes_per_pixel,
00088 int alignment);
00089 };
00090
00091 }
00092
00093 #endif // _IMAGE_DITHER_H_
00094
00095