blob: b81b400dd001b9bf61309ce2485ab3637e8a6067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __IMAGE_UTILS_H__
# define __IMAGE_UTILS_H__
HBITMAP BmpFilterLoadBitmap(BOOL *bIsTransparent, const wchar_t *ptszFilename);
int BmpFilterSaveBitmap(HBITMAP hBmp, const wchar_t *ptszFile, int flags);
HBITMAP CopyBitmapTo32(HBITMAP hBitmap);
BOOL MakeTransparentBkg(MCONTACT hContact, HBITMAP *hBitmap);
HBITMAP MakeGrayscale(HBITMAP hBitmap);
uint32_t GetImgHash(HBITMAP hBitmap);
#endif // __IMAGE_UTILS_H__
|