几个开源2D Image 库比较

 
几个开源2D Image 库比较

Image Decoder:
    libpng,libjpeg,libtiff,

Image库:
    cimg, devil,python-pil,agg,cximage,gdk-pixbuf,wxImage(wxWidget),magic-image

cimg: 采用template技术,整个库就一个cimg.h,使用起来确实方便其内在功能确实强大,只是简单应用了一下
pil: 用python写过4国军旗的游戏,采用的就是这个image库
agg: 采用template技术,几乎涵盖了2d image操作的所有功能,也是弱耦合,使用起来非常灵活
cximage: 做导航设备的图片浏览软件时采用image 库,基本还是比较好用
gdk-pixbuf: gdk/gtk标准的image 库,gnome的大量软件均采用其库。移植 librsvg时使用过
wxImage: 依赖 wxWidget库,类似 Qt的 QtImage类

你可能感兴趣的:(游戏,image,python,qt)