📄 ppmfile.h
字号:
#ifndef PPMFILE_H#define PPMFILE_H#include <stdio.h>extern FILE *imgPPMOpen(char *filename,long *xflen,long *yflen, long type);extern void imgPPMClose(FILE *fPtr);extern long imgPPMRead(FILE *fPtr,long xBegin,long yBegin,long xLen,long yLen,char *stenArray);extern long imgPPMWrite(FILE*fPtr,long xBegin,long yBegin,long xLen,long yLen,char *stenArray);extern long imgPPMGet(char *sImage,long xBegin,long yBegin,long xLen,long yLen,long sWidth,long sHeight,char *stenArray);extern long imgPPMPut(char *tImage,long xBegin,long yBegin,long xLen,long yLen,long tWidth,long tHeight,char *stenArray); #endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -