gdk-pixbuf
1.1、gdk-pixbuf简介
是什么 ?:a library that loads image data in various formats and stores it as linear buffers in memory. The buffers can then be scaled, composited, modified, saved, or rendered.
开发语言:C
官方主页:https://developer.gnome.org/gdk-pixbuf
源码仓库:https://gitlab.gnome.org/GNOME/gdk-pixbuf
1.2、通过包管理器安装gdk-pixbuf
操作系统包管理器安装命令
macOSHomeBrewbrew install gdk-pixbuf
GNU/LinuxHomeBrewbrew install gdk-pixbuf
aptsudo apt-get install -y gdk-pixbuf
CentOSyumsudo yum install -y gdk-pixbuf
dnfsudo dnf install -y gdk-pixbuf
openSUSEzyppersudo zypper install -y gdk-pixbuf
Alpine Linuxapksudo apk add gdk-pixbuf

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm gdk-pixbuf
Gentoo LinuxPortagesudo emerge gdk-pixbuf
1.3、通过编译源码安装gdk-pixbuf 

spep1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + xz
编译时mesonninjagcc / GCC | Clang / LLVMGLibgobject-introspectionlibpnglibjpeg-turboshared-mime-info
运行时glibc ( libc.sold-linux-x86-64.so )

step2、使用curl命令下载gdk-pixbuf源码包 (

curl -LO https://download.gnome.org/sources/gdk-pixbuf/2.40/gdk-pixbuf-2.40.0.tar.xz

step3、使用tar解压gdk-pixbuf源码包

tar vxf gdk-pixbuf-2.40.0.tar.xz

step4、进入gdk-pixbuf-2.40.0目录

cd gdk-pixbuf-2.40.0

step5、查看gdk-pixbuf-2.40.0目录的内容

step6、使用meson配置编译参数

meson setup --prefix=$(pwd)/output --buildtype=release --backend=ninja build

step7、使用ninja编译、安装

ninja -C build && ninja -C build install
1.4、gdk-pixbuf命令
1.5、gdk-pixbuf中包含的头文件
1.6、gdk-pixbuf中包含的库文件
  • libgdk-pixbuf.{a | so | dylib}