项目介绍stb项目是一个ALLINONE的c解决方案,其中有一个stb_image.h,可以用来操作图片。 推荐给大家的博客简单易用的图像解码库介绍 —— stb_image用stb_image.h轻松地加载图片到程序中(比如纹理)Example#define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" #define...
介绍Xlib手册 is based on X11 release 6。创建窗口 XCreateWindow#include <stdio.h> #include <stdlib.h> #include <X11/Xlib.h> int main() { Display *X; Window win; GC gc; XS...