{"id":31989325,"url":"https://github.com/imagemagick/gdk-pixbuf","last_synced_at":"2026-07-27T07:31:09.995Z","repository":{"id":316919027,"uuid":"1065330832","full_name":"ImageMagick/gdk-pixbuf","owner":"ImageMagick","description":"gdk-pixbuf for the Windows build of ImageMagick ","archived":false,"fork":false,"pushed_at":"2026-06-29T19:50:31.000Z","size":15343,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-23T13:19:30.057Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ImageMagick.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS","contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-27T14:04:24.000Z","updated_at":"2026-06-29T19:50:38.000Z","dependencies_parsed_at":"2025-10-24T11:27:02.285Z","dependency_job_id":null,"html_url":"https://github.com/ImageMagick/gdk-pixbuf","commit_stats":null,"previous_names":["imagemagick/gdk-pixbuf"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ImageMagick/gdk-pixbuf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImageMagick%2Fgdk-pixbuf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImageMagick%2Fgdk-pixbuf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImageMagick%2Fgdk-pixbuf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImageMagick%2Fgdk-pixbuf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ImageMagick","download_url":"https://codeload.github.com/ImageMagick/gdk-pixbuf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImageMagick%2Fgdk-pixbuf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35942774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-27T02:00:06.776Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-15T10:18:38.408Z","updated_at":"2026-07-27T07:31:09.843Z","avatar_url":"https://github.com/ImageMagick.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"GdkPixbuf: Image loading library\n================================\n\nGdkPixbuf is a library that loads image data in various formats and stores\nit as linear buffers in memory. The buffers can then be scaled, composited,\nmodified, saved, or rendered.\n\nGdkPixbuf can load image data encoded in different formats, such as:\n\n - PNG\n - JPEG\n - TIFF\n - TGA\n - GIF\n\nAdditionally, you can write a GdkPixbuf loader module and install it into\na well-known location, in order to load a file format.\n\nGdkPixbuf is used by the [GTK](https://www.gtk.org) toolkit for loading\ngraphical assets.\n\n**NOTE**: GdkPixbuf should be used to load UI assets in trusted scenarios;\nyou should not be using it to load arbitrary images. We recommend using\nprojects like [Glycin](https://gitlab.gnome.org/GNOME/glycin) instead.\n\n## Building GdkPixbuf\n\n### Requirements\n\nIn order to build GdkPixbuf you will need to have installed:\n\n - [Meson](http://mesonbuild.com)\n - A C99-compliant compiler and toolchain\n - [GLib's development files](https://gitlab.gnome.org/GNOME/glib/)\n\nDepending on the image formats you want to support you will also need:\n\n - libpng's development files\n - libjpeg's development files\n - libtiff's development files\n\nAdditionally, you may need:\n\n - [shared-mime-info](https://freedesktop.org/wiki/Software/shared-mime-info/)\n - [GObject Introspection](https://gitlab.gnome.org/GNOME/gobject-introspection/)\n - [GI-DocGen](https://gitlab.gnome.org/ebassi/gi-docgen/)\n - mediaLib's development files\n\n### Building and installing\n\nYou should use Meson to configure GdkPixbuf's build, and depending on the\nplatform you will be able to use Ninja, Visual Studio, or XCode to build\nthe project; typically, on most platforms, you should be able to use the\nfollowing commands to build and install GdkPixbuf in the default prefix:\n\n```sh\n$ meson setup _build .\n$ meson compile -C _build\n$ meson install -C _build\n```\n\nYou can use Meson's `--prefix` argument to control the installation prefix\nat configuration time.\n\nYou can also use `meson configure` from within the build directory to\ncheck the current build configuration, and change its options.\n\n#### Build options\n\nYou can specify the following options in the command line to `meson`:\n\n * `-Dgtk_doc=true` - Build the API reference documentation\n * `-Drelocatable=true` - Enable application bundle relocation support\n\nFor a complete list of build-time options, see the file\n[`meson_options.txt`](meson_options.txt).  You can read about Meson\noptions in general [in the Meson manual](http://mesonbuild.com/Build-options.html).\n\n## Running tests\n\nYou can run the test suite by running `meson test -C _build`, where\n`_build` is the build directory you used during the build stage.\n\n## License\n\nGdkPixbuf is released under the terms of the GNU Lesser General Public\nLicense version 2.1, or, at your option, any later version. See the\n[COPYING](./COPYING) file for further details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimagemagick%2Fgdk-pixbuf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimagemagick%2Fgdk-pixbuf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimagemagick%2Fgdk-pixbuf/lists"}