📄 decolor.h
字号:
#ifndef _JPEG_DECOLOR_H
#define _JPEG_DECOLOR_H
#include "AMPlat.h"
#include "AMComDef.h"
#define OUTPUT_ORDER_BGR
typedef struct tagDecolorParam
{
MByte *pY;
MByte *pCb;
MByte *pCr;
MByte *outRGB;
int *COE_Cr;
int *COE_Cb;
#ifdef __WIN32__
int OutWidth;
int OutLineCount;
int BackBytes;
#endif
} DECOLOR_PARAM, * LPDECOLOR_PARAM;
MVoid JPG_YCMK_DeColor( int size, LPDECOLOR_PARAM pDecolorParam, int offset) ;
MVoid JPG_TrueColor_DeColor( register MByte *ColorLimitTable, int size, LPDECOLOR_PARAM pDecolorParam, int offset) ;
MVoid JPG_GrayScale_DeColor (int size, LPDECOLOR_PARAM pDecolorParam, int offset);
#endif /* _JPEG_DECOLOR_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -