代码搜索结果

找到约 10,000 项符合 Image 的代码

image.rc

blue RCDATA "timer1.jpg" older RCDATA "timer2.jpg" modal RCDATA "timer3.jpg" romantic RCDATA "timer4.jpg"

image.h

#ifndef IMAGE_H #define IMAGE_H #include "wave.h" typedef struct Image Image; struct Image { int width,height; int strideBytes; ubyte * BGRplane; }; Image * Image_Create(int w,int

image.c

#include "image.h" #include #include #include "mathutil.h" void Image_MirrorExtend(Image *im,int fmw,int fmh) { ubyte * ptr; int x,y; int neww,newh; int s