diff options
author | Richard Hughes <richard@hughsie.com> | 2009-12-18 15:17:13 +0000 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2009-12-18 15:17:13 +0000 |
commit | ba651d4022ed4dceb6ad7394adcb0ff6c8006581 (patch) | |
tree | 07879e078ed5659f57d359067872d57dcbe63d51 /demos/Makefile.am | |
parent | 7e9d89b555d7d22a89645e0821a334dec318bc21 (diff) | |
download | gtk+-ba651d4022ed4dceb6ad7394adcb0ff6c8006581.tar.gz |
Add color management support to gdk_pixbuf_save
This patch adds an icc-profile option to a GdkPixbuf which can
be used to read or write an embedded ICC profile.
Add PNG support for now, but other image formats are awaiting
review.
Diffstat (limited to 'demos/Makefile.am')
-rw-r--r-- | demos/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/demos/Makefile.am b/demos/Makefile.am index c8c9bbb1c5..81e07f427a 100644 --- a/demos/Makefile.am +++ b/demos/Makefile.am @@ -24,6 +24,7 @@ LDADDS = \ noinst_PROGRAMS = \ testpixbuf-drawable \ testanimation \ + testpixbuf-color \ testpixbuf-save \ testpixbuf-scale \ pixbuf-demo @@ -52,6 +53,7 @@ test-inline-pixbufs.h: $(pixbuf_csource_deps) apple-red.png gnome-foot.png testpixbuf_DEPENDENCIES = $(DEPS) testpixbuf_drawable_DEPENDENCIES = $(DEPS) testpixbuf_save_DEPENDENCIES = $(DEPS) +testpixbuf_color_DEPENDENCIES = $(DEPS) testpixbuf_scale_DEPENDENCIES = $(DEPS) testanimation_DEPENDENCIES = $(DEPS) pixbuf_demo_DEPENDENCIES = $(DEPS) @@ -59,6 +61,7 @@ pixbuf_demo_DEPENDENCIES = $(DEPS) testpixbuf_LDADD = $(LDADDS) testpixbuf_drawable_LDADD = $(LDADDS) testpixbuf_save_LDADD = $(LDADDS) +testpixbuf_color_LDADD = $(LDADDS) testpixbuf_scale_LDADD = $(LDADDS) testanimation_LDADD = $(LDADDS) pixbuf_demo_LDADD = $(LDADDS) @@ -66,6 +69,7 @@ pixbuf_demo_LDADD = $(LDADDS) testpixbuf_SOURCES = testpixbuf.c pixbuf-init.c testpixbuf_drawable_SOURCES = testpixbuf-drawable.c pixbuf-init.c testpixbuf_save_SOURCES = testpixbuf-save.c +testpixbuf_color_SOURCES = testpixbuf-color.c testpixbuf_scale_SOURCES = testpixbuf-scale.c pixbuf-init.c testanimation_SOURCES = testanimation.c pixbuf-init.c pixbuf_demo_SOURCES = pixbuf-demo.c pixbuf-init.c |