📄 image.h
字号:
#ifndef __IMAGE_H#define __IMAGE_Htypedef unsigned short Color16;typedef unsigned long Color32;typedef unsigned char pixel_t;typedef struct { pixel_t * buf; int pixelbytes; int rowbytes; int width, height;} PixImage;void fill_image(PixImage * image, Color32 color, int x, int y, int w, int h);void image_copy(PixImage * dst_image, int dx, int dy, PixImage * src_image, int sx, int sy, int w, int h);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -