📄 imgprocessing.h
字号:
#ifndef _IMG_PROCESSING_H_
#define _IMG_PROCESSING_H_
#include "cdib.h"
const int MOVE_X=2;
const int MOVE_Y=2;
const float ZOOM_X=2.0;
const float ZOOM_Y=2.0;
const float SHRINK_X=0.5;
const float SHRINK_Y=0.5;
BOOL imageMoving(CDIB& img,int mx,int my);
BOOL scale_zeroOrder(CDIB& img,float k_x,float k_y);
BOOL scale_oneOrder(CDIB& img,float k_x,float k_y);
BOOL imageRotate(CDIB& img,double angle );
#endif //_IMG_PROCESSING_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -