├── .ImageMagick ├── Config.txt ├── ImageMagick.rc └── ImageMagick.version.h ├── .github └── PULL_REQUEST_TEMPLATE.md ├── gdk-pixbuf ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── aclocal.m4 ├── build-aux │ ├── gen-color-table.pl │ ├── gen-installed-test.py │ ├── gen-resources.py │ └── gen-thumbnailer.py ├── compile ├── config.guess ├── config.h.in ├── config.h.win32 ├── config.h.win32.in ├── config.rpath ├── config.sub ├── configure ├── configure.ac ├── contrib │ ├── Makefile.am │ ├── Makefile.in │ └── gdk-pixbuf-xlib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── gdk-pixbuf-xlib-2.0.pc.in │ │ ├── gdk-pixbuf-xlib-drawable.c │ │ ├── gdk-pixbuf-xlib-private.h │ │ ├── gdk-pixbuf-xlib-render.c │ │ ├── gdk-pixbuf-xlib.c │ │ ├── gdk-pixbuf-xlib.h │ │ ├── gdk-pixbuf-xlibrgb.c │ │ ├── gdk-pixbuf-xlibrgb.h │ │ └── meson.build ├── depcomp ├── docs │ ├── Makefile.am │ ├── Makefile.in │ └── reference │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── gdk-pixbuf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── apple-red-1a.png │ │ ├── apple-red-2c.png │ │ ├── composite.dia │ │ ├── composite.png │ │ ├── gdk-pixbuf-csource.1 │ │ ├── gdk-pixbuf-csource.xml │ │ ├── gdk-pixbuf-from-drawables.xml │ │ ├── gdk-pixbuf-overrides.txt │ │ ├── gdk-pixbuf-query-loaders.1 │ │ ├── gdk-pixbuf-query-loaders.xml │ │ ├── gdk-pixbuf-rendering.xml │ │ ├── gdk-pixbuf-sections.txt │ │ ├── gdk-pixbuf.types │ │ ├── gdk-pixbuf.xml │ │ ├── gnome-gmush-1.png │ │ ├── html │ │ ├── GdkPixbufLoader.html │ │ ├── annotation-glossary.html │ │ ├── api-index-full.html │ │ ├── composite.png │ │ ├── gdk-pixbuf-Animations.html │ │ ├── gdk-pixbuf-File-Loading.html │ │ ├── gdk-pixbuf-File-saving.html │ │ ├── gdk-pixbuf-Image-Data-in-Memory.html │ │ ├── gdk-pixbuf-Inline-data.html │ │ ├── gdk-pixbuf-Module-Interface.html │ │ ├── gdk-pixbuf-Reference-Counting-and-Memory-Mangement.html │ │ ├── gdk-pixbuf-Scaling.html │ │ ├── gdk-pixbuf-The-GdkPixbuf-Structure.html │ │ ├── gdk-pixbuf-Utilities.html │ │ ├── gdk-pixbuf-Versioning.html │ │ ├── gdk-pixbuf-X-Drawables-to-Pixbufs.html │ │ ├── gdk-pixbuf-Xlib-Rendering.html │ │ ├── gdk-pixbuf-XlibRGB.html │ │ ├── gdk-pixbuf-csource.html │ │ ├── gdk-pixbuf-gdk-pixbuf-Xlib-initialization.html │ │ ├── gdk-pixbuf-gdk-pixbuf-from-drawables.html │ │ ├── gdk-pixbuf-gdk-pixbuf-rendering.html │ │ ├── gdk-pixbuf-query-loaders.html │ │ ├── gdk-pixbuf.devhelp2 │ │ ├── home.png │ │ ├── index.html │ │ ├── left-insensitive.png │ │ ├── left.png │ │ ├── license.html │ │ ├── right-insensitive.png │ │ ├── right.png │ │ ├── rn01.html │ │ ├── rn02.html │ │ ├── style.css │ │ ├── up-insensitive.png │ │ └── up.png │ │ ├── meson.build │ │ ├── version.xml │ │ └── version.xml.in ├── gdk-pixbuf-2.0.pc.in ├── gdk-pixbuf │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── fallback-c89.c │ ├── gdiplus.def │ ├── gdk-pixbuf-animation.c │ ├── gdk-pixbuf-animation.h │ ├── gdk-pixbuf-autocleanups.h │ ├── gdk-pixbuf-buffer-queue-private.h │ ├── gdk-pixbuf-buffer-queue.c │ ├── gdk-pixbuf-core.h │ ├── gdk-pixbuf-csource.1 │ ├── gdk-pixbuf-csource.c │ ├── gdk-pixbuf-data.c │ ├── gdk-pixbuf-enum-types.c │ ├── gdk-pixbuf-enum-types.c.template │ ├── gdk-pixbuf-enum-types.h │ ├── gdk-pixbuf-enum-types.h.template │ ├── gdk-pixbuf-features.h │ ├── gdk-pixbuf-features.h.in │ ├── gdk-pixbuf-io.c │ ├── gdk-pixbuf-io.h │ ├── gdk-pixbuf-loader.c │ ├── gdk-pixbuf-loader.h │ ├── gdk-pixbuf-macros.h │ ├── gdk-pixbuf-marshal.c │ ├── gdk-pixbuf-marshal.h │ ├── gdk-pixbuf-marshal.list │ ├── gdk-pixbuf-pixdata.c │ ├── gdk-pixbuf-private.h │ ├── gdk-pixbuf-scale.c │ ├── gdk-pixbuf-scaled-anim.c │ ├── gdk-pixbuf-scaled-anim.h │ ├── gdk-pixbuf-simple-anim.c │ ├── gdk-pixbuf-simple-anim.h │ ├── gdk-pixbuf-transform.h │ ├── gdk-pixbuf-util.c │ ├── gdk-pixbuf.c │ ├── gdk-pixbuf.h │ ├── gdk-pixdata.c │ ├── gdk-pixdata.h │ ├── gdk_pixbuf.rc │ ├── gdk_pixbuf.rc.in │ ├── io-ani-animation.c │ ├── io-ani-animation.h │ ├── io-ani.c │ ├── io-bmp.c │ ├── io-gdip-animation.c │ ├── io-gdip-animation.h │ ├── io-gdip-bmp.c │ ├── io-gdip-emf.c │ ├── io-gdip-gif.c │ ├── io-gdip-ico.c │ ├── io-gdip-jpeg.c │ ├── io-gdip-native.h │ ├── io-gdip-propertytags.h │ ├── io-gdip-tiff.c │ ├── io-gdip-utils.c │ ├── io-gdip-utils.h │ ├── io-gdip-wmf.c │ ├── io-gif-animation.c │ ├── io-gif-animation.h │ ├── io-gif.c │ ├── io-icns.c │ ├── io-ico.c │ ├── io-jasper.c │ ├── io-jpeg.c │ ├── io-png.c │ ├── io-pnm.c │ ├── io-qtif.c │ ├── io-tga.c │ ├── io-tiff.c │ ├── io-xbm.c │ ├── io-xpm.c │ ├── makefile.msc │ ├── meson.build │ ├── pixops │ │ ├── DETAILS │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── composite_line_22_4a4_mmx.S │ │ ├── composite_line_color_22_4a4_mmx.S │ │ ├── have_mmx.S │ │ ├── makefile.msc │ │ ├── meson.build │ │ ├── pixbuf-transform-math.ltx │ │ ├── pixops-internal.h │ │ ├── pixops.c │ │ ├── pixops.h │ │ ├── scale_line_22_33_mmx.S │ │ └── timescale.c │ ├── queryloaders.c │ ├── test-gdk-pixbuf.c │ └── xpm-color-table.h ├── glib-tap.mk ├── gtk-doc.make ├── install-sh ├── ltmain.sh ├── m4 │ ├── gettext.m4 │ ├── glibtests.m4 │ ├── gtk-doc.m4 │ ├── iconv.m4 │ ├── intlmacosx.m4 │ ├── introspection.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── nls.m4 │ ├── po.m4 │ └── progtest.m4 ├── meson.build ├── meson_options.txt ├── missing ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-quot │ ├── af.gmo │ ├── af.po │ ├── ang.gmo │ ├── ang.po │ ├── ar.gmo │ ├── ar.po │ ├── as.gmo │ ├── as.po │ ├── ast.gmo │ ├── ast.po │ ├── az.gmo │ ├── az.po │ ├── be.gmo │ ├── be.po │ ├── be@latin.gmo │ ├── be@latin.po │ ├── bg.gmo │ ├── bg.po │ ├── bn.gmo │ ├── bn.po │ ├── bn_IN.gmo │ ├── bn_IN.po │ ├── boldquot.sed │ ├── br.gmo │ ├── br.po │ ├── bs.gmo │ ├── bs.po │ ├── ca.gmo │ ├── ca.po │ ├── ca@valencia.gmo │ ├── ca@valencia.po │ ├── crh.gmo │ ├── crh.po │ ├── cs.gmo │ ├── cs.po │ ├── csb.gmo │ ├── csb.po │ ├── cy.gmo │ ├── cy.po │ ├── da.gmo │ ├── da.po │ ├── de.gmo │ ├── de.po │ ├── dz.gmo │ ├── dz.po │ ├── el.gmo │ ├── el.po │ ├── en@boldquot.header │ ├── en@quot.header │ ├── en@shaw.gmo │ ├── en@shaw.po │ ├── en_CA.gmo │ ├── en_CA.po │ ├── en_GB.gmo │ ├── en_GB.po │ ├── eo.gmo │ ├── eo.po │ ├── es.gmo │ ├── es.po │ ├── et.gmo │ ├── et.po │ ├── eu.gmo │ ├── eu.po │ ├── fa.gmo │ ├── fa.po │ ├── fi.gmo │ ├── fi.po │ ├── fr.gmo │ ├── fr.po │ ├── fur.gmo │ ├── fur.po │ ├── ga.gmo │ ├── ga.po │ ├── gdk-pixbuf.pot │ ├── gl.gmo │ ├── gl.po │ ├── gu.gmo │ ├── gu.po │ ├── he.gmo │ ├── he.po │ ├── hi.gmo │ ├── hi.po │ ├── hr.gmo │ ├── hr.po │ ├── hu.gmo │ ├── hu.po │ ├── hy.gmo │ ├── hy.po │ ├── ia.gmo │ ├── ia.po │ ├── id.gmo │ ├── id.po │ ├── insert-header.sin │ ├── io.gmo │ ├── io.po │ ├── is.gmo │ ├── is.po │ ├── it.gmo │ ├── it.po │ ├── ja.gmo │ ├── ja.po │ ├── ka.gmo │ ├── ka.po │ ├── kk.gmo │ ├── kk.po │ ├── km.gmo │ ├── km.po │ ├── kn.gmo │ ├── kn.po │ ├── ko.gmo │ ├── ko.po │ ├── ku.gmo │ ├── ku.po │ ├── li.gmo │ ├── li.po │ ├── lt.gmo │ ├── lt.po │ ├── lv.gmo │ ├── lv.po │ ├── mai.gmo │ ├── mai.po │ ├── meson.build │ ├── mi.gmo │ ├── mi.po │ ├── mk.gmo │ ├── mk.po │ ├── ml.gmo │ ├── ml.po │ ├── mn.gmo │ ├── mn.po │ ├── mr.gmo │ ├── mr.po │ ├── ms.gmo │ ├── ms.po │ ├── my.gmo │ ├── my.po │ ├── nb.gmo │ ├── nb.po │ ├── nds.gmo │ ├── nds.po │ ├── ne.gmo │ ├── ne.po │ ├── nl.gmo │ ├── nl.po │ ├── nn.gmo │ ├── nn.po │ ├── nso.gmo │ ├── nso.po │ ├── oc.gmo │ ├── oc.po │ ├── or.gmo │ ├── or.po │ ├── pa.gmo │ ├── pa.po │ ├── pl.gmo │ ├── pl.po │ ├── ps.gmo │ ├── ps.po │ ├── pt.gmo │ ├── pt.po │ ├── pt_BR.gmo │ ├── pt_BR.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── ro.gmo │ ├── ro.po │ ├── ru.gmo │ ├── ru.po │ ├── si.gmo │ ├── si.po │ ├── sk.gmo │ ├── sk.po │ ├── sl.gmo │ ├── sl.po │ ├── sq.gmo │ ├── sq.po │ ├── sr.gmo │ ├── sr.po │ ├── sr@ije.gmo │ ├── sr@ije.po │ ├── sr@latin.gmo │ ├── sr@latin.po │ ├── stamp-po │ ├── sv.gmo │ ├── sv.po │ ├── ta.gmo │ ├── ta.po │ ├── te.gmo │ ├── te.po │ ├── tg.gmo │ ├── tg.po │ ├── th.gmo │ ├── th.po │ ├── tk.gmo │ ├── tk.po │ ├── tr.gmo │ ├── tr.po │ ├── tt.gmo │ ├── tt.po │ ├── ug.gmo │ ├── ug.po │ ├── uk.gmo │ ├── uk.po │ ├── uz.gmo │ ├── uz.po │ ├── uz@cyrillic.gmo │ ├── uz@cyrillic.po │ ├── vi.gmo │ ├── vi.po │ ├── wa.gmo │ ├── wa.po │ ├── xh.gmo │ ├── xh.po │ ├── yi.gmo │ ├── yi.po │ ├── zh_CN.gmo │ ├── zh_CN.po │ ├── zh_HK.gmo │ ├── zh_HK.po │ ├── zh_TW.gmo │ └── zh_TW.po ├── tap-driver.sh ├── tap-test ├── test-driver ├── tests │ ├── 1_partyanimsm2.gif │ ├── Makefile.am │ ├── Makefile.in │ ├── aero.gif │ ├── animation.c │ ├── bug143608-comment.jpg │ ├── bug725582-testrotate.jpg │ ├── bug725582-testrotate.png │ ├── bug775218.jpg │ ├── bug775693.pixdata │ ├── cve-2015-4491.bmp │ ├── cve-2015-4491.c │ ├── dpi.jpeg │ ├── dpi.png │ ├── dpi.tiff │ ├── icc-profile.jpeg │ ├── icc-profile.png │ ├── large.jpg │ ├── large.png │ ├── meson.build │ ├── pixbuf-area-updated.c │ ├── pixbuf-composite.c │ ├── pixbuf-dpi.c │ ├── pixbuf-fail.c │ ├── pixbuf-icc.c │ ├── pixbuf-icon-serialize.c │ ├── pixbuf-jpeg.c │ ├── pixbuf-lowmem.c │ ├── pixbuf-pixdata.c │ ├── pixbuf-random.c │ ├── pixbuf-randomly-modified.c │ ├── pixbuf-read.c │ ├── pixbuf-readonly-to-mutable.c │ ├── pixbuf-reftest.c │ ├── pixbuf-resource.c │ ├── pixbuf-save-ref.c │ ├── pixbuf-save.c │ ├── pixbuf-scale-two-step.c │ ├── pixbuf-scale.c │ ├── pixbuf-short-gif-write.c │ ├── pixbuf-stream.c │ ├── pixbuf-threads.c │ ├── premature-end.jpg │ ├── premature-end.png │ ├── resources.c │ ├── resources.gresource.xml │ ├── resources.h │ ├── test-animation.ani │ ├── test-animation.gif │ ├── test-common.c │ ├── test-common.h │ ├── test-image-rle.pixdata │ ├── test-image.pixdata │ ├── test-image.png │ └── test-images │ │ ├── fail │ │ ├── CVE-2017-2862.jpg │ │ ├── DoS.tga │ │ ├── androstanRezeptor.tga │ │ ├── bug776694.bmp │ │ ├── bug777315.bmp │ │ ├── bug778204.ico │ │ ├── bug780269.tif │ │ ├── bug784903-overflow-dimensions.tiff │ │ ├── colormap-image-without-colormap.tga │ │ ├── empty-file.tga │ │ ├── file3.jp2 │ │ ├── invalid.1.bmp │ │ ├── invalid.1.gif │ │ ├── invalid.1.ico │ │ ├── invalid.1.png │ │ ├── invalid.1.ppm │ │ ├── invalid.2.gif │ │ ├── invalid.2.png │ │ ├── invalid.2.ppm │ │ ├── invalid.3.gif │ │ ├── invalid.3.ico │ │ ├── invalid.3.png │ │ ├── invalid.3.ppm │ │ ├── invalid.4.gif │ │ ├── invalid.4.png │ │ ├── invalid.5.ppm │ │ ├── invalid.6.ppm │ │ ├── invalid.7.ppm │ │ ├── invalid.8.ppm │ │ └── overflow.tga │ │ ├── randomly-modified │ │ ├── bad-header.ico │ │ ├── bmp-line-overflow.bmp │ │ ├── bug775232.pnm │ │ ├── bug775242.bmp │ │ ├── bug775648.qtif │ │ ├── bug776040.ico │ │ ├── crash.ico │ │ ├── decodecolormap.bmp │ │ ├── invalid.1.xpm │ │ ├── invalid.2.ico │ │ ├── invalid.4.ppm │ │ ├── valid.1.bmp │ │ ├── valid.1.gif │ │ ├── valid.1.jp2 │ │ ├── valid.1.jpeg │ │ ├── valid.1.png │ │ ├── valid.1.ppm │ │ ├── valid.1.tga │ │ ├── valid.1.tiff │ │ ├── valid.1.xbm │ │ ├── valid.1.xpm │ │ ├── valid.2.jpeg │ │ ├── valid.2.ppm │ │ ├── valid.2.tga │ │ ├── valid.3.ppm │ │ └── valid.4.ppm │ │ └── reftests │ │ ├── bug696331.png │ │ ├── bug696331.png.ref.png │ │ ├── bug785447.ico │ │ ├── bug785447.ico.ref.png │ │ ├── colormap-too-small.tga │ │ ├── colormap-too-small.tga.ref.png │ │ ├── lena.jpg │ │ ├── lena.jpg.ref.png │ │ ├── mandatory-bitmasks.bmp │ │ ├── mandatory-bitmasks.bmp.ref.png │ │ ├── rle-too-many-pixels-2.tga │ │ ├── rle-too-many-pixels-2.tga.ref.png │ │ ├── rle-too-many-pixels.tga │ │ ├── rle-too-many-pixels.tga.ref.png │ │ ├── squares.ico │ │ ├── squares.ico.ref.png │ │ └── tga │ │ ├── gtk-logo-16bpp-bottom-left.tga │ │ ├── gtk-logo-16bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-16bpp-bottom-right.tga │ │ ├── gtk-logo-16bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-16bpp-top-left.tga │ │ ├── gtk-logo-16bpp-top-left.tga.ref.png │ │ ├── gtk-logo-16bpp-top-right.tga │ │ ├── gtk-logo-16bpp-top-right.tga.ref.png │ │ ├── gtk-logo-16bpp.ref.png │ │ ├── gtk-logo-24bpp-bottom-left.tga │ │ ├── gtk-logo-24bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-24bpp-bottom-right.tga │ │ ├── gtk-logo-24bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-24bpp-top-left.tga │ │ ├── gtk-logo-24bpp-top-left.tga.ref.png │ │ ├── gtk-logo-24bpp-top-right.tga │ │ ├── gtk-logo-24bpp-top-right.tga.ref.png │ │ ├── gtk-logo-32bpp-bottom-left.tga │ │ ├── gtk-logo-32bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-32bpp-bottom-right.tga │ │ ├── gtk-logo-32bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-32bpp-top-left.tga │ │ ├── gtk-logo-32bpp-top-left.tga.ref.png │ │ ├── gtk-logo-32bpp-top-right.tga │ │ ├── gtk-logo-32bpp-top-right.tga.ref.png │ │ ├── gtk-logo-cmap-8bpp-bottom-left.tga │ │ ├── gtk-logo-cmap-8bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-cmap-8bpp-bottom-right.tga │ │ ├── gtk-logo-cmap-8bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-cmap-8bpp-top-left.tga │ │ ├── gtk-logo-cmap-8bpp-top-left.tga.ref.png │ │ ├── gtk-logo-cmap-8bpp-top-right.tga │ │ ├── gtk-logo-cmap-8bpp-top-right.tga.ref.png │ │ ├── gtk-logo-cmap-rle-8bpp-bottom-left.tga │ │ ├── gtk-logo-cmap-rle-8bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-cmap-rle-8bpp-bottom-right.tga │ │ ├── gtk-logo-cmap-rle-8bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-cmap-rle-8bpp-top-left.tga │ │ ├── gtk-logo-cmap-rle-8bpp-top-left.tga.ref.png │ │ ├── gtk-logo-cmap-rle-8bpp-top-right.tga │ │ ├── gtk-logo-cmap-rle-8bpp-top-right.tga.ref.png │ │ ├── gtk-logo-cmap.ref.png │ │ ├── gtk-logo-gray-16bpp-bottom-left.tga │ │ ├── gtk-logo-gray-16bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-gray-16bpp-bottom-right.tga │ │ ├── gtk-logo-gray-16bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-gray-16bpp-top-left.tga │ │ ├── gtk-logo-gray-16bpp-top-left.tga.ref.png │ │ ├── gtk-logo-gray-16bpp-top-right.tga │ │ ├── gtk-logo-gray-16bpp-top-right.tga.ref.png │ │ ├── gtk-logo-gray-8bpp-bottom-left.tga │ │ ├── gtk-logo-gray-8bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-gray-8bpp-bottom-right.tga │ │ ├── gtk-logo-gray-8bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-gray-8bpp-top-left.tga │ │ ├── gtk-logo-gray-8bpp-top-left.tga.ref.png │ │ ├── gtk-logo-gray-8bpp-top-right.tga │ │ ├── gtk-logo-gray-8bpp-top-right.tga.ref.png │ │ ├── gtk-logo-gray-opaque.ref.png │ │ ├── gtk-logo-gray-rle-16bpp-bottom-left.tga │ │ ├── gtk-logo-gray-rle-16bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-gray-rle-16bpp-bottom-right.tga │ │ ├── gtk-logo-gray-rle-16bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-gray-rle-16bpp-top-left.tga │ │ ├── gtk-logo-gray-rle-16bpp-top-left.tga.ref.png │ │ ├── gtk-logo-gray-rle-16bpp-top-right.tga │ │ ├── gtk-logo-gray-rle-16bpp-top-right.tga.ref.png │ │ ├── gtk-logo-gray-rle-8bpp-bottom-left.tga │ │ ├── gtk-logo-gray-rle-8bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-gray-rle-8bpp-bottom-right.tga │ │ ├── gtk-logo-gray-rle-8bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-gray-rle-8bpp-top-left.tga │ │ ├── gtk-logo-gray-rle-8bpp-top-left.tga.ref.png │ │ ├── gtk-logo-gray-rle-8bpp-top-right.tga │ │ ├── gtk-logo-gray-rle-8bpp-top-right.tga.ref.png │ │ ├── gtk-logo-gray.ref.png │ │ ├── gtk-logo-opaque.ref.png │ │ ├── gtk-logo-rle-24bpp-bottom-left.tga │ │ ├── gtk-logo-rle-24bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-rle-24bpp-bottom-right.tga │ │ ├── gtk-logo-rle-24bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-rle-24bpp-top-left.tga │ │ ├── gtk-logo-rle-24bpp-top-left.tga.ref.png │ │ ├── gtk-logo-rle-24bpp-top-right.tga │ │ ├── gtk-logo-rle-24bpp-top-right.tga.ref.png │ │ ├── gtk-logo-rle-32bpp-bottom-left.tga │ │ ├── gtk-logo-rle-32bpp-bottom-left.tga.ref.png │ │ ├── gtk-logo-rle-32bpp-bottom-right.tga │ │ ├── gtk-logo-rle-32bpp-bottom-right.tga.ref.png │ │ ├── gtk-logo-rle-32bpp-top-left.tga │ │ ├── gtk-logo-rle-32bpp-top-left.tga.ref.png │ │ ├── gtk-logo-rle-32bpp-top-right.tga │ │ ├── gtk-logo-rle-32bpp-top-right.tga.ref.png │ │ └── gtk-logo.ref.png ├── thumbnailer │ ├── Makefile.am │ ├── Makefile.in │ ├── gdk-pixbuf-print-mime-types.c │ ├── gdk-pixbuf-thumbnailer.c │ ├── gdk-pixbuf-thumbnailer.thumbnailer.in │ ├── gnome-thumbnailer-skeleton.c │ ├── gnome-thumbnailer-skeleton.h │ └── meson.build └── win32 │ ├── GdkPixbuf_2_0_gir_list │ ├── Makefile-newvs.am │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.msvc-introspection │ ├── Makefile.msvcproj │ ├── detectenv-msvc.mak │ ├── gdk-pixbuf-introspection-msvc.mak │ ├── gdkpixbuf-pc.py │ ├── introspection-msvc.mak │ ├── introspection.body.mak │ ├── pc_base.py │ ├── replace.py │ ├── vs10 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.props │ ├── gdk-pixbuf-csource.vcxproj │ ├── gdk-pixbuf-csource.vcxproj.filters │ ├── gdk-pixbuf-gen-srcs.props │ ├── gdk-pixbuf-install.props │ ├── gdk-pixbuf-install.propsin │ ├── gdk-pixbuf-install.vcxproj │ ├── gdk-pixbuf-install.vcxproj.filters │ ├── gdk-pixbuf-pixdata.vcxproj │ ├── gdk-pixbuf-pixdata.vcxproj.filters │ ├── gdk-pixbuf-query-loaders.vcxproj │ ├── gdk-pixbuf-query-loaders.vcxproj.filters │ ├── gdk-pixbuf-version-paths.props │ ├── gdk-pixbuf-version-paths.props.in │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcxproj │ ├── gdk-pixbuf.vcxproj.filters │ ├── gdk-pixbuf.vcxproj.filtersin │ └── gdk-pixbuf.vcxprojin │ ├── vs11 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.props │ ├── gdk-pixbuf-csource.vcxproj │ ├── gdk-pixbuf-csource.vcxproj.filters │ ├── gdk-pixbuf-gen-srcs.props │ ├── gdk-pixbuf-install.props │ ├── gdk-pixbuf-install.vcxproj │ ├── gdk-pixbuf-install.vcxproj.filters │ ├── gdk-pixbuf-pixdata.vcxproj │ ├── gdk-pixbuf-pixdata.vcxproj.filters │ ├── gdk-pixbuf-query-loaders.vcxproj │ ├── gdk-pixbuf-query-loaders.vcxproj.filters │ ├── gdk-pixbuf-version-paths.props │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcxproj │ └── gdk-pixbuf.vcxproj.filters │ ├── vs12 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.props │ ├── gdk-pixbuf-csource.vcxproj │ ├── gdk-pixbuf-csource.vcxproj.filters │ ├── gdk-pixbuf-gen-srcs.props │ ├── gdk-pixbuf-install.props │ ├── gdk-pixbuf-install.vcxproj │ ├── gdk-pixbuf-install.vcxproj.filters │ ├── gdk-pixbuf-pixdata.vcxproj │ ├── gdk-pixbuf-pixdata.vcxproj.filters │ ├── gdk-pixbuf-query-loaders.vcxproj │ ├── gdk-pixbuf-query-loaders.vcxproj.filters │ ├── gdk-pixbuf-version-paths.props │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcxproj │ └── gdk-pixbuf.vcxproj.filters │ ├── vs14 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.props │ ├── gdk-pixbuf-csource.vcxproj │ ├── gdk-pixbuf-csource.vcxproj.filters │ ├── gdk-pixbuf-gen-srcs.props │ ├── gdk-pixbuf-install.props │ ├── gdk-pixbuf-install.vcxproj │ ├── gdk-pixbuf-install.vcxproj.filters │ ├── gdk-pixbuf-pixdata.vcxproj │ ├── gdk-pixbuf-pixdata.vcxproj.filters │ ├── gdk-pixbuf-query-loaders.vcxproj │ ├── gdk-pixbuf-query-loaders.vcxproj.filters │ ├── gdk-pixbuf-version-paths.props │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcxproj │ └── gdk-pixbuf.vcxproj.filters │ ├── vs15 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.props │ ├── gdk-pixbuf-csource.vcxproj │ ├── gdk-pixbuf-csource.vcxproj.filters │ ├── gdk-pixbuf-gen-srcs.props │ ├── gdk-pixbuf-install.props │ ├── gdk-pixbuf-install.vcxproj │ ├── gdk-pixbuf-install.vcxproj.filters │ ├── gdk-pixbuf-pixdata.vcxproj │ ├── gdk-pixbuf-pixdata.vcxproj.filters │ ├── gdk-pixbuf-query-loaders.vcxproj │ ├── gdk-pixbuf-query-loaders.vcxproj.filters │ ├── gdk-pixbuf-version-paths.props │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcxproj │ └── gdk-pixbuf.vcxproj.filters │ └── vs9 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── gdk-pixbuf-build-defines.vsprops │ ├── gdk-pixbuf-csource.vcproj │ ├── gdk-pixbuf-gen-srcs.vsprops │ ├── gdk-pixbuf-install.vcproj │ ├── gdk-pixbuf-install.vsprops │ ├── gdk-pixbuf-install.vspropsin │ ├── gdk-pixbuf-pixdata.vcproj │ ├── gdk-pixbuf-query-loaders.vcproj │ ├── gdk-pixbuf-version-paths.vsprops │ ├── gdk-pixbuf-version-paths.vsprops.in │ ├── gdk-pixbuf.sln │ ├── gdk-pixbuf.vcproj │ └── gdk-pixbuf.vcprojin └── librsvg ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── Rsvg-2.0-custom.vala ├── Rsvg-2.0.metadata ├── acinclude.m4 ├── aclocal.m4 ├── build ├── Makefile-newvs.am ├── Makefile.am ├── Makefile.in ├── Makefile.msvc-introspection ├── Makefile.msvcproj └── win32 │ ├── Makefile.am │ ├── Makefile.in │ ├── Rsvg-2.0.gir.msvc.introspect │ ├── Rsvg_2_0_gir_list │ ├── detectenv-msvc.mak │ ├── introspection-msvc.mak │ ├── introspection.body.mak │ ├── pc_base.py │ ├── replace.py │ ├── rsvg-introspection-msvc.mak │ ├── rsvgpc.py │ ├── vs10 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcxproj │ ├── libpixbufloader-svg.vcxproj.filters │ ├── librsvg.sln │ ├── math.h │ ├── rsvg-build-defines.props │ ├── rsvg-convert.vcxproj │ ├── rsvg-convert.vcxproj.filters │ ├── rsvg-convert.vcxproj.filtersin │ ├── rsvg-convert.vcxprojin │ ├── rsvg-gen-srcs.props │ ├── rsvg-install.props │ ├── rsvg-install.propsin │ ├── rsvg-install.vcxproj │ ├── rsvg-install.vcxproj.filters │ ├── rsvg-introspect.vcxproj │ ├── rsvg-version-paths.props │ ├── rsvg-version-paths.props.in │ ├── rsvg-view-3.vcxproj │ ├── rsvg-view-3.vcxproj.filters │ ├── rsvg.vcxproj │ ├── rsvg.vcxproj.filters │ ├── rsvg.vcxproj.filtersin │ └── rsvg.vcxprojin │ ├── vs11 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcxproj │ ├── libpixbufloader-svg.vcxproj.filters │ ├── librsvg.sln │ ├── math.h │ ├── rsvg-build-defines.props │ ├── rsvg-convert.vcxproj │ ├── rsvg-convert.vcxproj.filters │ ├── rsvg-gen-srcs.props │ ├── rsvg-install.props │ ├── rsvg-install.vcxproj │ ├── rsvg-install.vcxproj.filters │ ├── rsvg-introspect.vcxproj │ ├── rsvg-version-paths.props │ ├── rsvg-view-3.vcxproj │ ├── rsvg-view-3.vcxproj.filters │ ├── rsvg.vcxproj │ └── rsvg.vcxproj.filters │ ├── vs12 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcxproj │ ├── libpixbufloader-svg.vcxproj.filters │ ├── librsvg.sln │ ├── rsvg-build-defines.props │ ├── rsvg-convert.vcxproj │ ├── rsvg-convert.vcxproj.filters │ ├── rsvg-gen-srcs.props │ ├── rsvg-install.props │ ├── rsvg-install.vcxproj │ ├── rsvg-install.vcxproj.filters │ ├── rsvg-introspect.vcxproj │ ├── rsvg-version-paths.props │ ├── rsvg-view-3.vcxproj │ ├── rsvg-view-3.vcxproj.filters │ ├── rsvg.vcxproj │ └── rsvg.vcxproj.filters │ ├── vs14 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcxproj │ ├── libpixbufloader-svg.vcxproj.filters │ ├── librsvg.sln │ ├── rsvg-build-defines.props │ ├── rsvg-convert.vcxproj │ ├── rsvg-convert.vcxproj.filters │ ├── rsvg-gen-srcs.props │ ├── rsvg-install.props │ ├── rsvg-install.vcxproj │ ├── rsvg-install.vcxproj.filters │ ├── rsvg-introspect.vcxproj │ ├── rsvg-version-paths.props │ ├── rsvg-view-3.vcxproj │ ├── rsvg-view-3.vcxproj.filters │ ├── rsvg.vcxproj │ └── rsvg.vcxproj.filters │ ├── vs15 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcxproj │ ├── libpixbufloader-svg.vcxproj.filters │ ├── librsvg.sln │ ├── rsvg-build-defines.props │ ├── rsvg-convert.vcxproj │ ├── rsvg-convert.vcxproj.filters │ ├── rsvg-gen-srcs.props │ ├── rsvg-install.props │ ├── rsvg-install.vcxproj │ ├── rsvg-install.vcxproj.filters │ ├── rsvg-introspect.vcxproj │ ├── rsvg-version-paths.props │ ├── rsvg-view-3.vcxproj │ ├── rsvg-view-3.vcxproj.filters │ ├── rsvg.vcxproj │ └── rsvg.vcxproj.filters │ └── vs9 │ ├── Makefile.am │ ├── Makefile.in │ ├── README.txt │ ├── libpixbufloader-svg.vcproj │ ├── librsvg.sln │ ├── math.h │ ├── rsvg-build-defines.vsprops │ ├── rsvg-convert.vcproj │ ├── rsvg-convert.vcprojin │ ├── rsvg-gen-srcs.vsprops │ ├── rsvg-install.vcproj │ ├── rsvg-install.vsprops │ ├── rsvg-install.vspropsin │ ├── rsvg-introspect.vcproj │ ├── rsvg-version-paths.vsprops │ ├── rsvg-version-paths.vsprops.in │ ├── rsvg-view-3.vcproj │ ├── rsvg.vcproj │ └── rsvg.vcprojin ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.h.win32 ├── config.h.win32.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── html │ ├── RsvgHandle.html │ ├── annotation-glossary.html │ ├── api-index-2-14.html │ ├── api-index-2-22.html │ ├── api-index-2-32.html │ ├── api-index-2-36.html │ ├── api-index-2-4.html │ ├── api-index-2-8.html │ ├── api-index-2-9.html │ ├── api-index-deprecated.html │ ├── api-index-full.html │ ├── home.png │ ├── index.html │ ├── left-insensitive.png │ ├── left.png │ ├── licence.html │ ├── object-tree.html │ ├── right-insensitive.png │ ├── right.png │ ├── rsvg-Using-RSVG-with-GIO.html │ ├── rsvg-Using-RSVG-with-GdkPixbuf.html │ ├── rsvg-Using-RSVG-with-cairo.html │ ├── rsvg-Version-check-and-feature-tests.html │ ├── rsvg.devhelp2 │ ├── rsvg.html │ ├── style.css │ ├── up-insensitive.png │ └── up.png ├── rsvg-docs.xml ├── rsvg-overrides.txt ├── rsvg-sections.txt ├── rsvg.types ├── version.xml └── version.xml.in ├── gdk-pixbuf-loader ├── Makefile.am ├── Makefile.in ├── io-svg.c ├── librsvg.thumbnailer.in └── test.c ├── glib-tap.mk ├── gtk-doc.make ├── install-sh ├── librsvg-enum-types.c ├── librsvg-enum-types.h ├── librsvg-features.c ├── librsvg-features.h ├── librsvg-features.h.in ├── librsvg-uninstalled.pc.in ├── librsvg-zip.in ├── librsvg.doap ├── librsvg.pc.in ├── ltmain.sh ├── m4 ├── glibtests.m4 ├── gtk-doc.m4 ├── introspection.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── pkg.m4 └── vapigen.m4 ├── missing ├── rsvg-base-file-util.c ├── rsvg-base.c ├── rsvg-cairo-clip.c ├── rsvg-cairo-clip.h ├── rsvg-cairo-draw.c ├── rsvg-cairo-draw.h ├── rsvg-cairo-render.c ├── rsvg-cairo-render.h ├── rsvg-cairo.h ├── rsvg-compat.h ├── rsvg-cond.c ├── rsvg-convert.1 ├── rsvg-convert.c ├── rsvg-css.c ├── rsvg-css.h ├── rsvg-defs.c ├── rsvg-defs.h ├── rsvg-file-util.c ├── rsvg-filter.c ├── rsvg-filter.h ├── rsvg-gobject.c ├── rsvg-image.c ├── rsvg-image.h ├── rsvg-io.c ├── rsvg-io.h ├── rsvg-marker.c ├── rsvg-marker.h ├── rsvg-mask.c ├── rsvg-mask.h ├── rsvg-paint-server.c ├── rsvg-paint-server.h ├── rsvg-path.c ├── rsvg-path.h ├── rsvg-private.h ├── rsvg-shapes.c ├── rsvg-shapes.h ├── rsvg-size-callback.c ├── rsvg-size-callback.h ├── rsvg-structure.c ├── rsvg-structure.h ├── rsvg-styles.c ├── rsvg-styles.h ├── rsvg-text.c ├── rsvg-text.h ├── rsvg-xml.c ├── rsvg-xml.h ├── rsvg.c ├── rsvg.h ├── rsvg.symbols ├── tap-driver.sh ├── tap-test ├── test-display.c ├── test-driver ├── tests ├── Makefile.am ├── Makefile.in ├── crash.c ├── dimensions.c ├── fixtures │ ├── crash │ │ ├── 785276-empty.svg │ │ ├── 785276-short-file.svg │ │ ├── bug620238.svg │ │ ├── bug759084.svg │ │ ├── marker-cycles.svg │ │ ├── mask-cycles.svg │ │ └── pattern-fallback-cycles.svg │ ├── dimensions │ │ ├── bug564527.svg │ │ ├── bug608102.svg │ │ ├── bug612951.svg │ │ ├── bug614018.svg │ │ └── sub-rect-no-unit.svg │ ├── loading │ │ ├── gnome-cool.svg │ │ └── gnome-cool.svgz │ ├── reftests │ │ ├── bugs │ │ │ ├── 340047-ref.png │ │ │ ├── 340047.svg │ │ │ ├── 403357-ref.png │ │ │ ├── 403357.svg │ │ │ ├── 476507-ref.png │ │ │ ├── 476507.svg │ │ │ ├── 548494-ref.png │ │ │ ├── 548494.svg │ │ │ ├── 563933-ref.png │ │ │ ├── 563933.svg │ │ │ ├── 587721-text-transform-ref.png │ │ │ ├── 587721-text-transform.svg │ │ │ ├── 603550-mask-luminance-ref.png │ │ │ ├── 603550-mask-luminance.svg │ │ │ ├── 738367-ref.png │ │ │ ├── 738367.svg │ │ │ ├── 749415-ref.png │ │ │ ├── 749415.svg │ │ │ ├── 761175-recursive-masks-ref.png │ │ │ ├── 761175-recursive-masks.svg │ │ │ ├── 777834-empty-text-children-ref.png │ │ │ └── 777834-empty-text-children.svg │ │ ├── duplicate-id-ref.png │ │ ├── duplicate-id.svg │ │ ├── gzip-compressed-ref.png │ │ ├── gzip-compressed.svg │ │ ├── include-compressed-ref.png │ │ ├── include-compressed.svg │ │ ├── nonexisting-filter-ref.png │ │ ├── nonexisting-filter.svg │ │ └── svg1.1 │ │ │ ├── filters-color-02-b-ref.png │ │ │ ├── filters-composite-02-b-ref.png │ │ │ ├── masking-intro-01-f-ref.png │ │ │ ├── masking-intro-01-f.svg │ │ │ ├── masking-mask-01-b-ref.png │ │ │ ├── masking-mask-01-b.svg │ │ │ ├── masking-mask-02-f-ref.png │ │ │ ├── masking-mask-02-f.svg │ │ │ ├── masking-opacity-01-b-ref.png │ │ │ ├── masking-opacity-01-b.svg │ │ │ ├── masking-path-01-b-ref.png │ │ │ ├── masking-path-01-b.svg │ │ │ ├── masking-path-02-b-ref.png │ │ │ ├── masking-path-02-b.svg │ │ │ ├── masking-path-03-b-ref.png │ │ │ ├── masking-path-03-b.svg │ │ │ ├── masking-path-04-b-ref.png │ │ │ ├── masking-path-04-b.svg │ │ │ ├── painting-marker-01-f-ref.png │ │ │ ├── painting-marker-02-f-ref.png │ │ │ ├── painting-marker-03-f-ref.png │ │ │ ├── painting-marker-04-f-ref.png │ │ │ ├── painting-marker-06-f-ref.png │ │ │ ├── painting-marker-07-f-ref.png │ │ │ ├── painting-marker-properties-01-f-ref.png │ │ │ ├── paths-data-01-t-ref.png │ │ │ ├── paths-data-02-t-ref.png │ │ │ ├── paths-data-03-f-ref.png │ │ │ ├── paths-data-04-t-ref.png │ │ │ ├── paths-data-05-t-ref.png │ │ │ ├── paths-data-06-t-ref.png │ │ │ ├── paths-data-07-t-ref.png │ │ │ ├── paths-data-08-t-ref.png │ │ │ ├── paths-data-09-t-ref.png │ │ │ ├── paths-data-10-t-ref.png │ │ │ ├── paths-data-12-t-ref.png │ │ │ ├── paths-data-13-t-ref.png │ │ │ ├── paths-data-14-t-ref.png │ │ │ ├── paths-data-15-t-ref.png │ │ │ ├── paths-data-16-t-ref.png │ │ │ ├── paths-data-17-f-ref.png │ │ │ ├── paths-data-18-f-ref.png │ │ │ ├── paths-data-19-f-ref.png │ │ │ ├── paths-data-20-f-ref.png │ │ │ ├── pservers-grad-01-b-ref.png │ │ │ ├── pservers-grad-02-b-ref.png │ │ │ ├── pservers-grad-03-b-ref.png │ │ │ ├── pservers-grad-04-b-ref.png │ │ │ ├── pservers-grad-05-b-ref.png │ │ │ ├── pservers-grad-06-b-ref.png │ │ │ ├── pservers-grad-07-b-ref.png │ │ │ ├── pservers-grad-08-b-ref.png │ │ │ ├── pservers-grad-09-b-ref.png │ │ │ ├── pservers-grad-10-b-ref.png │ │ │ ├── pservers-grad-11-b-ref.png │ │ │ ├── pservers-grad-12-b-ref.png │ │ │ ├── pservers-grad-13-b-ref.png │ │ │ ├── pservers-grad-14-b-ref.png │ │ │ ├── pservers-grad-15-b-ref.png │ │ │ ├── pservers-grad-16-b-ref.png │ │ │ ├── pservers-grad-18-b-ref.png │ │ │ ├── pservers-grad-21-b-ref.png │ │ │ ├── pservers-grad-22-b-ref.png │ │ │ ├── pservers-grad-23-f-ref.png │ │ │ ├── pservers-grad-24-f-ref.png │ │ │ ├── pservers-grad-stops-01-f-ref.png │ │ │ ├── resources │ │ │ └── bluesquidj.png │ │ │ ├── struct-cond-03-t-ref.png │ │ │ └── struct-cond-03-t.svg │ ├── render-crash │ │ └── 777155-zero-sized-pattern.svg │ └── styles │ │ ├── bug338160.svg │ │ ├── bug379629.svg │ │ ├── bug418823.svg │ │ ├── bug592207.svg │ │ ├── bug614606.svg │ │ ├── bug614643.svg │ │ ├── bug614704.svg │ │ ├── bug620693.svg │ │ ├── important.svg │ │ ├── order.svg │ │ └── svg-class.svg ├── loading.c ├── render-crash.c ├── resources │ └── LiberationSans-Regular.ttf ├── rsvg-test.c ├── styles.c ├── test-utils.c └── test-utils.h └── tools ├── Makefile.am ├── Makefile.in ├── rsvg-dimensions.c ├── rsvg-tools-main.c ├── rsvg-tools-main.h └── test-performance.c /.ImageMagick/Config.txt: -------------------------------------------------------------------------------- 1 | [DLL] 2 | 3 | [LICENSE] 4 | librsvg\COPYING.LIB 5 | 6 | [DEFINES] 7 | GDK_PIXBUF_ENABLE_BACKEND 8 | RSVG_COMPILATION 9 | 10 | [DIRECTORIES] 11 | gdk-pixbuf 12 | gdk-pixbuf\gdk-pixbuf 13 | gdk-pixbuf\gdk-pixbuf\pixops 14 | librsvg 15 | librsvg\gdk-pixbuf-loader 16 | 17 | [INCLUDES] 18 | gdk-pixbuf 19 | librsvg 20 | cairo->src 21 | croco->src 22 | glib->. 23 | glib->glib 24 | glib->gmodule 25 | harfbuzz->src 26 | jpeg-turbo->src 27 | pango->. 28 | png->. 29 | tiff->libtiff 30 | xml->include 31 | 32 | [EXCLUDES] 33 | fallback-c89.c 34 | gdk_pixbuf.rc 35 | gdk-pixbuf-csource.c 36 | io-gdip-* 37 | io-jasper.c 38 | queryloaders.c 39 | rsvg-convert.c 40 | rsvg-file-util.c 41 | test.c 42 | test-display.c 43 | test-gdk-pixbuf.c 44 | timescale.c 45 | 46 | [DEPENDENCIES] 47 | cairo 48 | croco 49 | glib 50 | jpeg-turbo 51 | pango 52 | png 53 | tiff 54 | xml 55 | 56 | [CONFIG_DEFINE] 57 | /* 58 | Define to use the RSVG library 59 | */ 60 | #define MAGICKCORE_RSVG_DELEGATE 61 | -------------------------------------------------------------------------------- /.ImageMagick/ImageMagick.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/.ImageMagick/ImageMagick.rc -------------------------------------------------------------------------------- /.ImageMagick/ImageMagick.version.h: -------------------------------------------------------------------------------- 1 | #define DELEGATE_VERSION_NUM 2,40,20 2 | #define DELEGATE_VERSION_STRING "2.40.20 (2017-12-15)" 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | DO NOT CREATE A PULL REQUEST FOR THIS REPOSITORY, THIS IS ONLY A COPY OF AN EXTERNAL REPOSITORY. 2 | 3 | THE ORGINAL REPOSITORY CAN BE FOUND HERE: https://gitlab.gnome.org/GNOME/librsvg. -------------------------------------------------------------------------------- /gdk-pixbuf/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/INSTALL -------------------------------------------------------------------------------- /gdk-pixbuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/README -------------------------------------------------------------------------------- /gdk-pixbuf/build-aux/gen-installed-test.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | import os 5 | import argparse 6 | 7 | def write_template(filename, data): 8 | with open(filename, 'w') as f: 9 | f.write(data) 10 | 11 | def build_template(bindir, binname): 12 | return "[Test]\nType=session\nExec={}\n".format(os.path.join(bindir, binname)) 13 | 14 | argparser = argparse.ArgumentParser(description='Generate installed-test data.') 15 | argparser.add_argument('--testbindir', metavar='dir', help='Installed test directory') 16 | argparser.add_argument('--testbin', metavar='name', help='Installed test name') 17 | argparser.add_argument('output', help='Output file') 18 | 19 | args = argparser.parse_args() 20 | 21 | write_template(args.output, build_template(args.testbindir, args.testbin)) 22 | -------------------------------------------------------------------------------- /gdk-pixbuf/contrib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = 2 | if USE_X11 3 | SUBDIRS += gdk-pixbuf-xlib 4 | endif 5 | 6 | -include $(top_srcdir)/git.mk 7 | -------------------------------------------------------------------------------- /gdk-pixbuf/contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib-2.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: GdkPixbuf Xlib 7 | Description: GdkPixbuf rendering for Xlib 8 | Version: @VERSION@ 9 | Requires: gobject-2.0,gmodule-no-export-2.0,gdk-pixbuf-2.0 10 | Libs: -L${libdir} -lgdk_pixbuf_xlib-@GDK_PIXBUF_API_VERSION@ 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = reference 2 | 3 | -include $(top_srcdir)/git.mk 4 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = gdk-pixbuf 2 | 3 | GITIGNOREFILES = */*.1 4 | 5 | -include $(top_srcdir)/git.mk 6 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/apple-red-1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/apple-red-1a.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/apple-red-2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/apple-red-2c.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/composite.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/composite.dia -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/composite.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/gdk-pixbuf-from-drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | Drawables to Pixbufs 8 | 3 9 | GDK-PIXBUF Library 10 | 11 | 12 | 13 | Drawables to PixbufsGetting parts of a GDK drawable's image data into a pixbuf. 14 | 15 | 16 | 17 | Description 18 | 19 | The functions to take the image data from a GDK drawable and dump it 20 | into a pixbuf are contained in GDK, see the 21 | Pixbufs section of the GDK 22 | documentation. 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/gdk-pixbuf-overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/gdk-pixbuf-overrides.txt -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/gdk-pixbuf-rendering.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | Rendering 8 | 3 9 | GDK-PIXBUF Library 10 | 11 | 12 | 13 | RenderingRendering a pixbuf to a GDK drawable. 14 | 15 | 16 | 17 | 18 | Description 19 | 20 | The functions to render pixbufs to GDK drawables are contained in 21 | GDK, see the Pixbufs section 22 | of the GDK documentation. 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/gdk-pixbuf.types: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | gdk_pixbuf_get_type 4 | gdk_pixbuf_loader_get_type 5 | gdk_pixbuf_animation_get_type 6 | gdk_pixbuf_animation_iter_get_type 7 | gdk_pixbuf_simple_anim_get_type 8 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/gnome-gmush-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/gnome-gmush-1.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/composite.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/home.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/left-insensitive.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/left.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/right-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/right-insensitive.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/right.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/up-insensitive.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/html/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/docs/reference/gdk-pixbuf/html/up.png -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/version.xml: -------------------------------------------------------------------------------- 1 | 2.36.9 2 | -------------------------------------------------------------------------------- /gdk-pixbuf/docs/reference/gdk-pixbuf/version.xml.in: -------------------------------------------------------------------------------- 1 | @GDK_PIXBUF_VERSION@ 2 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf-2.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | gdk_pixbuf_binary_version=@GDK_PIXBUF_BINARY_VERSION@ 7 | gdk_pixbuf_binarydir=@libdir@/gdk-pixbuf-@GDK_PIXBUF_API_VERSION@/@GDK_PIXBUF_BINARY_VERSION@ 8 | gdk_pixbuf_moduledir=${gdk_pixbuf_binarydir}/loaders 9 | gdk_pixbuf_cache_file=${gdk_pixbuf_binarydir}/loaders.cache 10 | 11 | Name: GdkPixbuf 12 | Description: Image loading and scaling 13 | Version: @VERSION@ 14 | Requires: gobject-2.0 15 | Requires.private: gmodule-no-export-2.0 @PNG_DEP_CFLAGS_PACKAGES@ 16 | Libs: -L${libdir} -lgdk_pixbuf-@GDK_PIXBUF_API_VERSION@ 17 | Libs.private: @GDK_PIXBUF_EXTRA_LIBS@ 18 | Cflags: -I${includedir}/gdk-pixbuf-@GDK_PIXBUF_API_VERSION@ @GDK_PIXBUF_EXTRA_CFLAGS@ 19 | 20 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf/gdk-pixbuf-enum-types.c.template: -------------------------------------------------------------------------------- 1 | /*** BEGIN file-header ***/ 2 | #include "config.h" 3 | 4 | #include 5 | 6 | /*** END file-header ***/ 7 | 8 | /*** BEGIN file-production ***/ 9 | /* enumerations from "@filename@" */ 10 | /*** END file-production ***/ 11 | 12 | /*** BEGIN value-header ***/ 13 | GType 14 | @enum_name@_get_type (void) 15 | { 16 | static GType etype = 0; 17 | 18 | if (G_UNLIKELY(etype == 0)) { 19 | static const G@Type@Value values[] = { 20 | /*** END value-header ***/ 21 | 22 | /*** BEGIN value-production ***/ 23 | { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, 24 | /*** END value-production ***/ 25 | 26 | /*** BEGIN value-tail ***/ 27 | { 0, NULL, NULL } 28 | }; 29 | etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); 30 | } 31 | return etype; 32 | } 33 | 34 | /*** END value-tail ***/ 35 | 36 | /*** BEGIN file-tail ***/ 37 | /*** END file-tail ***/ 38 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf/gdk-pixbuf-enum-types.h.template: -------------------------------------------------------------------------------- 1 | /*** BEGIN file-header ***/ 2 | #if defined(GDK_PIXBUF_DISABLE_SINGLE_INCLUDES) && !defined (GDK_PIXBUF_H_INSIDE) && !defined (GDK_PIXBUF_COMPILATION) 3 | #error "Only can be included directly." 4 | #endif 5 | 6 | #ifndef __GDK_PIXBUF_ENUM_TYPES_H__ 7 | #define __GDK_PIXBUF_ENUM_TYPES_H__ 8 | 9 | #include 10 | 11 | #include 12 | 13 | G_BEGIN_DECLS 14 | /*** END file-header ***/ 15 | 16 | /*** BEGIN file-production ***/ 17 | 18 | /* enumerations from "@filename@" */ 19 | /*** END file-production ***/ 20 | 21 | /*** BEGIN value-header ***/ 22 | GDK_PIXBUF_AVAILABLE_IN_ALL 23 | GType @enum_name@_get_type (void) G_GNUC_CONST; 24 | #define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) 25 | /*** END value-header ***/ 26 | 27 | /*** BEGIN file-tail ***/ 28 | G_END_DECLS 29 | 30 | #endif /* __GDK_PIXBUF_ENUM_TYPES_H__ */ 31 | /*** END file-tail ***/ 32 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf/gdk_pixbuf.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VS_VERSION_INFO VERSIONINFO 4 | FILEVERSION 2,36,9,0 5 | PRODUCTVERSION 2,36,9,0 6 | FILEFLAGSMASK 0 7 | FILEFLAGS 0 8 | FILEOS VOS__WINDOWS32 9 | FILETYPE VFT_DLL 10 | FILESUBTYPE VFT2_UNKNOWN 11 | BEGIN 12 | BLOCK "StringFileInfo" 13 | BEGIN 14 | BLOCK "040904B0" 15 | BEGIN 16 | VALUE "CompanyName", "The GTK developer community" 17 | VALUE "FileDescription", "GIMP Toolkit" 18 | VALUE "FileVersion", "2.36.9.0" 19 | VALUE "InternalName", "libgdk_pixbuf-2.0-0" 20 | VALUE "LegalCopyright", "Copyright (C) 1999 The Free Software Foundation. Modified by the GTK+ Team and others 1999-2011." 21 | VALUE "OriginalFilename", "libgdk_pixbuf-2.0-0.dll" 22 | VALUE "ProductName", "GTK+" 23 | VALUE "ProductVersion", "2.36.9" 24 | END 25 | END 26 | BLOCK "VarFileInfo" 27 | BEGIN 28 | VALUE "Translation", 0x409, 1200 29 | END 30 | END 31 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf/pixops/Makefile.am: -------------------------------------------------------------------------------- 1 | noinst_LTLIBRARIES = libpixops.la 2 | 3 | AM_CPPFLAGS = \ 4 | -I$(top_srcdir) -I$(top_builddir) \ 5 | $(GTK_DEBUG_FLAGS) \ 6 | $(GDK_PIXBUF_DEP_CFLAGS) 7 | 8 | noinst_PROGRAMS = timescale 9 | 10 | timescale_SOURCES = timescale.c 11 | timescale_LDADD = libpixops.la $(GLIB_LIBS) $(GDK_PIXBUF_DEP_LIBS) 12 | 13 | if USE_MMX 14 | mmx_sources = \ 15 | have_mmx.S \ 16 | scale_line_22_33_mmx.S \ 17 | composite_line_22_4a4_mmx.S \ 18 | composite_line_color_22_4a4_mmx.S 19 | endif 20 | 21 | libpixops_la_SOURCES = \ 22 | pixops.c \ 23 | pixops.h \ 24 | pixops-internal.h \ 25 | $(mmx_sources) 26 | 27 | EXTRA_DIST = \ 28 | DETAILS \ 29 | pixbuf-transform-math.ltx \ 30 | makefile.msc 31 | 32 | -include $(top_srcdir)/git.mk 33 | -------------------------------------------------------------------------------- /gdk-pixbuf/gdk-pixbuf/pixops/meson.build: -------------------------------------------------------------------------------- 1 | pixops = static_library('pixops', 'pixops.c', 2 | include_directories: root_inc, 3 | dependencies: gdk_pixbuf_deps) 4 | 5 | pixops_dep = declare_dependency(link_with: pixops, 6 | include_directories: [ root_inc, include_directories('.') ], 7 | dependencies: gdk_pixbuf_deps) 8 | 9 | executable('timescale', 'timescale.c', dependencies: pixops_dep) 10 | -------------------------------------------------------------------------------- /gdk-pixbuf/m4/ltversion.m4: -------------------------------------------------------------------------------- 1 | # ltversion.m4 -- version numbers -*- Autoconf -*- 2 | # 3 | # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. 4 | # Written by Scott James Remnant, 2004 5 | # 6 | # This file is free software; the Free Software Foundation gives 7 | # unlimited permission to copy and/or distribute it, with or without 8 | # modifications, as long as this notice is preserved. 9 | 10 | # @configure_input@ 11 | 12 | # serial 4179 ltversion.m4 13 | # This file is part of GNU Libtool 14 | 15 | m4_define([LT_PACKAGE_VERSION], [2.4.6]) 16 | m4_define([LT_PACKAGE_REVISION], [2.4.6]) 17 | 18 | AC_DEFUN([LTVERSION_VERSION], 19 | [macro_version='2.4.6' 20 | macro_revision='2.4.6' 21 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 22 | _LT_DECL(, macro_revision, 0) 23 | ]) 24 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | gdk-pixbuf/gdk-pixbuf-animation.c 3 | gdk-pixbuf/gdk-pixbuf.c 4 | gdk-pixbuf/gdk-pixbuf-data.c 5 | gdk-pixbuf/gdk-pixbuf-io.c 6 | gdk-pixbuf/gdk-pixbuf-loader.c 7 | gdk-pixbuf/gdk-pixbuf-simple-anim.c 8 | gdk-pixbuf/gdk-pixdata.c 9 | gdk-pixbuf/io-ani.c 10 | gdk-pixbuf/io-bmp.c 11 | gdk-pixbuf/io-gdip-bmp.c 12 | gdk-pixbuf/io-gdip-emf.c 13 | gdk-pixbuf/io-gdip-gif.c 14 | gdk-pixbuf/io-gdip-ico.c 15 | gdk-pixbuf/io-gdip-jpeg.c 16 | gdk-pixbuf/io-gdip-tiff.c 17 | gdk-pixbuf/io-gdip-utils.c 18 | gdk-pixbuf/io-gdip-wmf.c 19 | gdk-pixbuf/io-gif.c 20 | gdk-pixbuf/io-icns.c 21 | gdk-pixbuf/io-ico.c 22 | gdk-pixbuf/io-jasper.c 23 | gdk-pixbuf/io-jpeg.c 24 | gdk-pixbuf/io-png.c 25 | gdk-pixbuf/io-pnm.c 26 | gdk-pixbuf/io-qtif.c 27 | gdk-pixbuf/io-tga.c 28 | gdk-pixbuf/io-tiff.c 29 | gdk-pixbuf/io-xbm.c 30 | gdk-pixbuf/io-xpm.c 31 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/af.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/af.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ang.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ang.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ar.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ar.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/as.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/as.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ast.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ast.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/az.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/az.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/be.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/be.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/be@latin.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/be@latin.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/bg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/bg.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/bn.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/bn.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/bn_IN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/bn_IN.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/boldquot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | s/“/“/g 8 | s/”/”/g 9 | s/‘/‘/g 10 | s/’/’/g 11 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/br.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/br.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/bs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/bs.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ca.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ca.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ca@valencia.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ca@valencia.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/crh.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/crh.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/cs.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/csb.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/csb.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/cy.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/cy.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/da.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/de.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/dz.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/dz.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/el.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/el.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/en@shaw.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/en@shaw.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/en_CA.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/en_CA.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/en_GB.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/en_GB.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/eo.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/es.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/et.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/et.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/eu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/eu.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/fa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/fa.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/fi.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/fr.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/fur.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/fur.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ga.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ga.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/gl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/gl.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/gu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/gu.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/he.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/he.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/hi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/hi.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/hr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/hr.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/hu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/hu.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/hy.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/hy.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ia.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ia.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/id.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/insert-header.sin: -------------------------------------------------------------------------------- 1 | # Sed script that inserts the file called HEADER before the header entry. 2 | # 3 | # At each occurrence of a line starting with "msgid ", we execute the following 4 | # commands. At the first occurrence, insert the file. At the following 5 | # occurrences, do nothing. The distinction between the first and the following 6 | # occurrences is achieved by looking at the hold space. 7 | /^msgid /{ 8 | x 9 | # Test if the hold space is empty. 10 | s/m/m/ 11 | ta 12 | # Yes it was empty. First occurrence. Read the file. 13 | r HEADER 14 | # Output the file's contents by reading the next line. But don't lose the 15 | # current line while doing this. 16 | g 17 | N 18 | bb 19 | :a 20 | # The hold space was nonempty. Following occurrences. Do nothing. 21 | x 22 | :b 23 | } 24 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/io.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/io.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/is.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/is.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/it.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ja.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ka.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ka.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/kk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/kk.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/km.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/km.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/kn.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/kn.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ko.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ko.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ku.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ku.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/li.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/li.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/lt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/lt.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/lv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/lv.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/mai.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/mai.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/meson.build: -------------------------------------------------------------------------------- 1 | i18n = import('i18n') 2 | 3 | i18n.gettext(meson.project_name(), preset: 'glib') 4 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/mi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/mi.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/mk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/mk.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ml.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ml.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/mn.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/mn.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/mr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/mr.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ms.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ms.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/my.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/my.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/nb.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/nb.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/nds.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/nds.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ne.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ne.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/nl.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/nn.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/nn.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/nso.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/nso.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/oc.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/oc.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/or.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/or.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/pa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/pa.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/pl.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ps.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ps.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/pt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/pt.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/pt_BR.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/quot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/remove-potcdate.sin: -------------------------------------------------------------------------------- 1 | # Sed script that remove the POT-Creation-Date line in the header entry 2 | # from a POT file. 3 | # 4 | # The distinction between the first and the following occurrences of the 5 | # pattern is achieved by looking at the hold space. 6 | /^"POT-Creation-Date: .*"$/{ 7 | x 8 | # Test if the hold space is empty. 9 | s/P/P/ 10 | ta 11 | # Yes it was empty. First occurrence. Remove the line. 12 | g 13 | d 14 | bb 15 | :a 16 | # The hold space was nonempty. Following occurrences. Do nothing. 17 | x 18 | :b 19 | } 20 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ro.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ru.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/si.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/si.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sk.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sl.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sq.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sr.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sr@ije.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sr@ije.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/sr@latin.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sr@latin.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /gdk-pixbuf/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/sv.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ta.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ta.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/te.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/te.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/tg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/tg.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/th.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/th.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/tk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/tk.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/tr.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/tt.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/tt.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/ug.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/ug.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/uk.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/uz.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/uz.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/uz@cyrillic.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/uz@cyrillic.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/vi.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/wa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/wa.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/xh.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/xh.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/yi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/yi.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/zh_CN.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/zh_HK.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/zh_HK.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/po/zh_TW.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/po/zh_TW.gmo -------------------------------------------------------------------------------- /gdk-pixbuf/tap-test: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # run a GTest in tap mode. The test binary is passed as $1 4 | 5 | $1 -k --tap 6 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/1_partyanimsm2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/1_partyanimsm2.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/aero.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/aero.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/animation.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | static void 5 | test_animation (const gchar *filename) 6 | { 7 | GError *error = NULL; 8 | GdkPixbufAnimation* result = NULL; 9 | 10 | result = gdk_pixbuf_animation_new_from_file (g_test_get_filename (G_TEST_DIST, filename, NULL), &error); 11 | g_assert_no_error (error); 12 | g_assert (result != NULL); 13 | 14 | g_object_unref (result); 15 | } 16 | 17 | static void 18 | test_gif_animation (void) 19 | { 20 | test_animation ("test-animation.gif"); 21 | } 22 | 23 | static void 24 | test_ani_animation (void) 25 | { 26 | test_animation ("test-animation.ani"); 27 | } 28 | 29 | int 30 | main (int argc, char *argv[]) 31 | { 32 | g_test_init (&argc, &argv, NULL); 33 | 34 | g_test_add_func ("/animation/gif", test_gif_animation); 35 | g_test_add_func ("/animation/ani", test_ani_animation); 36 | 37 | return g_test_run (); 38 | } 39 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/bug143608-comment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/bug143608-comment.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/bug725582-testrotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/bug725582-testrotate.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/bug725582-testrotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/bug725582-testrotate.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/bug775218.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/bug775218.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/bug775693.pixdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/bug775693.pixdata -------------------------------------------------------------------------------- /gdk-pixbuf/tests/cve-2015-4491.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/cve-2015-4491.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/dpi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/dpi.jpeg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/dpi.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/dpi.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/dpi.tiff -------------------------------------------------------------------------------- /gdk-pixbuf/tests/icc-profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/icc-profile.jpeg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/icc-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/icc-profile.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/large.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/large.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/pixbuf-lowmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/pixbuf-lowmem.c -------------------------------------------------------------------------------- /gdk-pixbuf/tests/pixbuf-random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/pixbuf-random.c -------------------------------------------------------------------------------- /gdk-pixbuf/tests/pixbuf-randomly-modified.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/pixbuf-randomly-modified.c -------------------------------------------------------------------------------- /gdk-pixbuf/tests/pixbuf-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/pixbuf-read.c -------------------------------------------------------------------------------- /gdk-pixbuf/tests/pixbuf-save-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/pixbuf-save-ref.c -------------------------------------------------------------------------------- /gdk-pixbuf/tests/premature-end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/premature-end.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/premature-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/premature-end.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/resources.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icc-profile.png 5 | icc-profile.png 6 | icc-profile.png 7 | cve-2015-4491.bmp 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/resources.h: -------------------------------------------------------------------------------- 1 | #ifndef __RESOURCE_resources_H__ 2 | #define __RESOURCE_resources_H__ 3 | 4 | #include 5 | 6 | extern GResource *resources_get_resource (void); 7 | #endif 8 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-animation.ani: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-animation.ani -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-animation.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-image-rle.pixdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-image-rle.pixdata -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-image.pixdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-image.pixdata -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-image.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/CVE-2017-2862.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/CVE-2017-2862.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/DoS.tga: -------------------------------------------------------------------------------- 1 |    2 |  3 |   4 |  -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/androstanRezeptor.tga: -------------------------------------------------------------------------------- 1 | kJ -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/bug776694.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/bug776694.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/bug777315.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/bug777315.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/bug778204.ico: -------------------------------------------------------------------------------- 1 | OO -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/bug780269.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/bug780269.tif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/bug784903-overflow-dimensions.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/bug784903-overflow-dimensions.tiff -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/colormap-image-without-colormap.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/colormap-image-without-colormap.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/empty-file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/empty-file.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/file3.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/file3.jp2 -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.1.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.1.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.1.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.1.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.1.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 10 10 3 | 255# 4 | xxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.2.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.2.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.2.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 10 10 3 | 255# 4 | xxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.3.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.3.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.3.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.3.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 10 10 3 | 1000000 4 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.4.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/invalid.4.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.5.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 0 0 3 | 255 4 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.6.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | -1 -1 3 | 255 4 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.7.ppm: -------------------------------------------------------------------------------- 1 | P6 10 10 -1 2 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 3 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/invalid.8.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 10 10 3 | 0 4 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | 6 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/fail/overflow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/fail/overflow.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bad-header.ico: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bmp-line-overflow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/bmp-line-overflow.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bug775232.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/bug775232.pnm -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bug775242.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/bug775242.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bug775648.qtif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/bug775648.qtif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/bug776040.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/bug776040.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/crash.ico: -------------------------------------------------------------------------------- 1 |  @(   -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/decodecolormap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/decodecolormap.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/invalid.2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/invalid.2.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/invalid.4.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 10 10 3 | 10 4 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.gif -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.jp2 -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.jpeg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.ppm: -------------------------------------------------------------------------------- 1 | P6#foo 2 | #foo 3 | 10 10#foo 4 | #foo 44 5 | 255 6 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 7 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.1.tiff -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.1.xbm: -------------------------------------------------------------------------------- 1 | #define valid_xbm_test_width 20 2 | #define valid_xbm_test_height 20 3 | #define valid_xbm_test_x_hot 10 4 | #define valid_xbm_test_y_hot 10 5 | static unsigned char valid_xbm_test_bits[] = { 6 | 0x00, 0x00, 0x00, 0xea, 0xfb, 0x03, 0x2a, 0x2a, 0x02, 0xfa, 0xae, 0x03, 7 | 0x82, 0x20, 0x00, 0xba, 0xbb, 0x03, 0x2a, 0x8a, 0x02, 0xae, 0xfb, 0x02, 8 | 0xa0, 0x00, 0x02, 0xbe, 0xfa, 0x03, 0x82, 0x0a, 0x00, 0xfa, 0xfb, 0x03, 9 | 0x02, 0x08, 0x02, 0xee, 0xab, 0x03, 0x28, 0xaa, 0x02, 0xba, 0xbb, 0x02, 10 | 0x82, 0x80, 0x02, 0xfe, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 11 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.2.jpeg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.2.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | #foo 3 | 10 10 4 | 255 5 | xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxxxxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx xxxxxx 6 | P6 7 | #foo 8 | 10 10 9 | 255 10 | aaaaaaXXXXXXaaaaaaXXXXXXaaaaaaaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaXXXXXXaaaaaaaaaaaaXXXXXXaaaaaaXXXXXXaaaaaa 11 | 12 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/randomly-modified/valid.2.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/randomly-modified/valid.3.ppm: -------------------------------------------------------------------------------- 1 | P6 2 | 8 8 3 | 65535 4 | xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx xxxxxxxxxxxx 5 | 6 | -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/bug696331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/bug696331.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/bug696331.png.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/bug696331.png.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/bug785447.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/bug785447.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/bug785447.ico.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/bug785447.ico.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/colormap-too-small.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/colormap-too-small.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/colormap-too-small.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/colormap-too-small.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/lena.jpg -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/lena.jpg.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/lena.jpg.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/mandatory-bitmasks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/mandatory-bitmasks.bmp -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/mandatory-bitmasks.bmp.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/mandatory-bitmasks.bmp.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels-2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels-2.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels-2.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels-2.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/rle-too-many-pixels.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/squares.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/squares.ico -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/squares.ico.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/squares.ico.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-16bpp.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-24bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-32bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-8bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap-rle-8bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-cmap.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-16bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-8bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-opaque.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-opaque.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-16bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray-rle-8bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-gray.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-opaque.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-opaque.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-24bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-bottom-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-left.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-left.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-left.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-right.tga -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-right.tga.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo-rle-32bpp-top-right.tga.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo.ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/gdk-pixbuf/tests/test-images/reftests/tga/gtk-logo.ref.png -------------------------------------------------------------------------------- /gdk-pixbuf/thumbnailer/gdk-pixbuf-thumbnailer.thumbnailer.in: -------------------------------------------------------------------------------- 1 | [Thumbnailer Entry] 2 | TryExec=@bindir@/gdk-pixbuf-thumbnailer 3 | Exec=@bindir@/gdk-pixbuf-thumbnailer -s %s %u %o 4 | MimeType=@mimetypes@ 5 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/GdkPixbuf_2_0_gir_list: -------------------------------------------------------------------------------- 1 | ..\gdk-pixbuf\gdk-pixbuf.h 2 | ..\gdk-pixbuf\gdk-pixbuf-autocleanups.h 3 | ..\gdk-pixbuf\gdk-pixbuf-core.h 4 | ..\gdk-pixbuf\gdk-pixbuf-transform.h 5 | ..\gdk-pixbuf\gdk-pixbuf-io.h 6 | ..\gdk-pixbuf\gdk-pixbuf-animation.h 7 | ..\gdk-pixbuf\gdk-pixbuf-simple-anim.h 8 | ..\gdk-pixbuf\gdk-pixbuf-loader.h 9 | ..\gdk-pixbuf\gdk-pixbuf-enum-types.h 10 | ..\gdk-pixbuf\gdk-pixbuf-marshal.h 11 | ..\gdk-pixbuf\gdk-pixbuf-features.h 12 | ..\gdk-pixbuf\gdk-pixdata.h 13 | ..\gdk-pixbuf\gdk-pixbuf-macros.h 14 | ..\gdk-pixbuf\gdk-pixbuf.c 15 | ..\gdk-pixbuf\gdk-pixbuf-animation.c 16 | ..\gdk-pixbuf\gdk-pixbuf-data.c 17 | ..\gdk-pixbuf\gdk-pixbuf-io.c 18 | ..\gdk-pixbuf\gdk-pixbuf-loader.c 19 | ..\gdk-pixbuf\gdk-pixbuf-scale.c 20 | ..\gdk-pixbuf\gdk-pixbuf-simple-anim.c 21 | ..\gdk-pixbuf\gdk-pixbuf-scaled-anim.c 22 | ..\gdk-pixbuf\gdk-pixbuf-util.c 23 | ..\gdk-pixbuf\gdk-pixdata.c 24 | ..\gdk-pixbuf\gdk-pixbuf-enum-types.c 25 | ..\gdk-pixbuf\gdk-pixbuf-marshal.c 26 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/Makefile.am: -------------------------------------------------------------------------------- 1 | if HAVE_INTROSPECTION 2 | GENERATED_ITEMS = \ 3 | introspection.body.mak \ 4 | GdkPixbuf_2_0_gir_list 5 | 6 | introspection.body.mak: GdkPixbuf-2.0.gir.msvc.introspect 7 | -$(RM) introspection.body.mak 8 | for F in `ls *.msvc.introspect`; do \ 9 | case $$F in \ 10 | *) cat $(top_builddir)/win32/$$F >>$@ \ 11 | ;; \ 12 | esac; \ 13 | done 14 | $(RM) GdkPixbuf-2.0.gir.msvc.introspect 15 | 16 | DISTCLEANFILES = $(GENERATED_ITEMS) 17 | 18 | else 19 | GENERATED_ITEMS = 20 | endif 21 | 22 | SUBDIRS = \ 23 | vs9 \ 24 | vs10 \ 25 | vs11 \ 26 | vs12 \ 27 | vs14 \ 28 | vs15 29 | 30 | EXTRA_DIST = \ 31 | detectenv-msvc.mak \ 32 | introspection-msvc.mak \ 33 | gdk-pixbuf-introspection-msvc.mak \ 34 | gdkpixbuf-pc.py \ 35 | pc_base.py \ 36 | replace.py \ 37 | $(GENERATED_ITEMS) 38 | 39 | -include $(top_srcdir)/git.mk 40 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/gdk-pixbuf-introspection-msvc.mak: -------------------------------------------------------------------------------- 1 | # NMake Makefile to build Introspection Files for GDK-Pixbuf 2 | 3 | !include detectenv-msvc.mak 4 | 5 | APIVERSION = 2.0 6 | 7 | CHECK_PACKAGE = gio-2.0 8 | 9 | !include introspection-msvc.mak 10 | 11 | !if "$(BUILD_INTROSPECTION)" == "TRUE" 12 | all: setgirbuildenv GdkPixbuf-$(APIVERSION).gir GdkPixbuf-$(APIVERSION).typelib 13 | 14 | setgirbuildenv: 15 | @-set PYTHONPATH=$(PREFIX)\lib\gobject-introspection 16 | @-set PATH=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\bin;$(PATH) 17 | @-set PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) 18 | @-set LIB=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(LIB) 19 | 20 | !include introspection.body.mak 21 | 22 | install-introspection: all 23 | @-copy GdkPixbuf-$(APIVERSION).gir $(G_IR_INCLUDEDIR) 24 | @-copy /b GdkPixbuf-$(APIVERSION).typelib $(G_IR_TYPELIBDIR) 25 | 26 | !else 27 | all: 28 | @-echo $(ERROR_MSG) 29 | 30 | install-introspection: all 31 | !endif 32 | 33 | clean: 34 | @-del /f/q GdkPixbuf-$(APIVERSION).typelib 35 | @-del /f/q GdkPixbuf-$(APIVERSION).gir 36 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/introspection.body.mak: -------------------------------------------------------------------------------- 1 | GdkPixbuf-2.0.gir: GdkPixbuf_2_0_gir_list 2 | @-echo Generating $@... 3 | $(PYTHON) $(G_IR_SCANNER) \ 4 | --verbose -no-libtool \ 5 | --namespace=GdkPixbuf \ 6 | --nsversion=2.0 \ 7 | \ 8 | --library=gdk_pixbuf-2.0 \ 9 | \ 10 | --add-include-path=$(G_IR_INCLUDEDIR) \ 11 | --include=GModule-2.0 --include=Gio-2.0 \ 12 | --pkg-export=gdk-pixbuf-2.0 \ 13 | \ 14 | --cflags-begin \ 15 | -DGDK_PIXBUF_COMPILATION -I.. -I../gdk-pixbuf \ 16 | --cflags-end \ 17 | --warn-all --identifier-prefix=Gdk --c-include=gdk-pixbuf/gdk-pixbuf.h \ 18 | --filelist=GdkPixbuf_2_0_gir_list \ 19 | -o $@ 20 | 21 | GdkPixbuf-2.0.typelib: GdkPixbuf-2.0.gir 22 | @-echo Compiling $@... 23 | $(G_IR_COMPILER) \ 24 | --includedir=. --debug --verbose \ 25 | GdkPixbuf-2.0.gir \ 26 | -o $@ 27 | 28 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs10/gdk-pixbuf-csource.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs10/gdk-pixbuf-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\config.h.win32 ..\..\config.h 8 | 9 | 10 | <_PropertySheetDisplayName>gdk-pixbufgensrcsprops 11 | 12 | 13 | 14 | $(GenConfigH) 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs10/gdk-pixbuf-install.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 6 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx 7 | 8 | 9 | 10 | Resource Files 11 | Resource Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs10/gdk-pixbuf-pixdata.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs10/gdk-pixbuf-query-loaders.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | README.txt \ 3 | gdk-pixbuf.sln \ 4 | gdk-pixbuf-version-paths.props \ 5 | gdk-pixbuf-build-defines.props \ 6 | gdk-pixbuf-gen-srcs.props \ 7 | gdk-pixbuf-install.props \ 8 | gdk-pixbuf.vcxproj \ 9 | gdk-pixbuf.vcxproj.filters \ 10 | gdk-pixbuf-csource.vcxproj \ 11 | gdk-pixbuf-csource.vcxproj.filters \ 12 | gdk-pixbuf-query-loaders.vcxproj \ 13 | gdk-pixbuf-query-loaders.vcxproj.filters \ 14 | gdk-pixbuf-pixdata.vcxproj \ 15 | gdk-pixbuf-pixdata.vcxproj.filters \ 16 | gdk-pixbuf-install.vcxproj \ 17 | gdk-pixbuf-install.vcxproj.filters 18 | 19 | DISTCLEANFILES = $(EXTRA_DIST) 20 | 21 | MSVC_BASE_VER = 10 22 | MSVC_BASE_VER_LONG = 2010 23 | MSVC_VER = 11 24 | MSVC_VER_LONG = 2012 25 | 26 | include $(top_srcdir)/win32/Makefile-newvs.am 27 | 28 | -include $(top_srcdir)/git.mk 29 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/gdk-pixbuf-csource.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/gdk-pixbuf-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\config.h.win32 ..\..\config.h 8 | 9 | 10 | <_PropertySheetDisplayName>gdk-pixbufgensrcsprops 11 | 12 | 13 | 14 | $(GenConfigH) 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/gdk-pixbuf-install.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 6 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx 7 | 8 | 9 | 10 | Resource Files 11 | Resource Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/gdk-pixbuf-pixdata.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs11/gdk-pixbuf-query-loaders.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | README.txt \ 3 | gdk-pixbuf.sln \ 4 | gdk-pixbuf-version-paths.props \ 5 | gdk-pixbuf-build-defines.props \ 6 | gdk-pixbuf-gen-srcs.props \ 7 | gdk-pixbuf-install.props \ 8 | gdk-pixbuf.vcxproj \ 9 | gdk-pixbuf.vcxproj.filters \ 10 | gdk-pixbuf-csource.vcxproj \ 11 | gdk-pixbuf-csource.vcxproj.filters \ 12 | gdk-pixbuf-query-loaders.vcxproj \ 13 | gdk-pixbuf-query-loaders.vcxproj.filters \ 14 | gdk-pixbuf-pixdata.vcxproj \ 15 | gdk-pixbuf-pixdata.vcxproj.filters \ 16 | gdk-pixbuf-install.vcxproj \ 17 | gdk-pixbuf-install.vcxproj.filters 18 | 19 | DISTCLEANFILES = $(EXTRA_DIST) 20 | 21 | MSVC_BASE_VER = 10 22 | MSVC_BASE_VER_LONG = 2010 23 | MSVC_VER = 12 24 | MSVC_VER_LONG = 2013 25 | 26 | include $(top_srcdir)/win32/Makefile-newvs.am 27 | 28 | -include $(top_srcdir)/git.mk 29 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/gdk-pixbuf-csource.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/gdk-pixbuf-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\config.h.win32 ..\..\config.h 8 | 9 | 10 | <_PropertySheetDisplayName>gdk-pixbufgensrcsprops 11 | 12 | 13 | 14 | $(GenConfigH) 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/gdk-pixbuf-install.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 6 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx 7 | 8 | 9 | 10 | Resource Files 11 | Resource Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/gdk-pixbuf-pixdata.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs12/gdk-pixbuf-query-loaders.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | README.txt \ 3 | gdk-pixbuf.sln \ 4 | gdk-pixbuf-version-paths.props \ 5 | gdk-pixbuf-build-defines.props \ 6 | gdk-pixbuf-gen-srcs.props \ 7 | gdk-pixbuf-install.props \ 8 | gdk-pixbuf.vcxproj \ 9 | gdk-pixbuf.vcxproj.filters \ 10 | gdk-pixbuf-csource.vcxproj \ 11 | gdk-pixbuf-csource.vcxproj.filters \ 12 | gdk-pixbuf-query-loaders.vcxproj \ 13 | gdk-pixbuf-query-loaders.vcxproj.filters \ 14 | gdk-pixbuf-pixdata.vcxproj \ 15 | gdk-pixbuf-pixdata.vcxproj.filters \ 16 | gdk-pixbuf-install.vcxproj \ 17 | gdk-pixbuf-install.vcxproj.filters 18 | 19 | DISTCLEANFILES = $(EXTRA_DIST) 20 | 21 | MSVC_BASE_VER = 10 22 | MSVC_BASE_VER_LONG = 2010 23 | MSVC_VER = 14 24 | MSVC_VER_LONG = 14 25 | 26 | include $(top_srcdir)/win32/Makefile-newvs.am 27 | 28 | -include $(top_srcdir)/git.mk 29 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/gdk-pixbuf-csource.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/gdk-pixbuf-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\config.h.win32 ..\..\config.h 8 | 9 | 10 | <_PropertySheetDisplayName>gdk-pixbufgensrcsprops 11 | 12 | 13 | 14 | $(GenConfigH) 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/gdk-pixbuf-install.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 6 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx 7 | 8 | 9 | 10 | Resource Files 11 | Resource Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/gdk-pixbuf-pixdata.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs14/gdk-pixbuf-query-loaders.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | README.txt \ 3 | gdk-pixbuf.sln \ 4 | gdk-pixbuf-version-paths.props \ 5 | gdk-pixbuf-build-defines.props \ 6 | gdk-pixbuf-gen-srcs.props \ 7 | gdk-pixbuf-install.props \ 8 | gdk-pixbuf.vcxproj \ 9 | gdk-pixbuf.vcxproj.filters \ 10 | gdk-pixbuf-csource.vcxproj \ 11 | gdk-pixbuf-csource.vcxproj.filters \ 12 | gdk-pixbuf-query-loaders.vcxproj \ 13 | gdk-pixbuf-query-loaders.vcxproj.filters \ 14 | gdk-pixbuf-pixdata.vcxproj \ 15 | gdk-pixbuf-pixdata.vcxproj.filters \ 16 | gdk-pixbuf-install.vcxproj \ 17 | gdk-pixbuf-install.vcxproj.filters 18 | 19 | DISTCLEANFILES = $(EXTRA_DIST) 20 | 21 | MSVC_BASE_VER = 10 22 | MSVC_BASE_VER_LONG = 2010 23 | MSVC_VER = 15 24 | MSVC_VER_LONG = 15 25 | MSVC_TOOLSET = 141 26 | 27 | include $(top_srcdir)/win32/Makefile-newvs.am 28 | 29 | -include $(top_srcdir)/git.mk 30 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/gdk-pixbuf-csource.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Source Files 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/gdk-pixbuf-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\config.h.win32 ..\..\config.h 8 | 9 | 10 | <_PropertySheetDisplayName>gdk-pixbufgensrcsprops 11 | 12 | 13 | 14 | $(GenConfigH) 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/gdk-pixbuf-install.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 6 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx 7 | 8 | 9 | 10 | Resource Files 11 | Resource Files 12 | 13 | 14 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/gdk-pixbuf-pixdata.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs15/gdk-pixbuf-query-loaders.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | 10 | 11 | Sources 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs9/Makefile.am: -------------------------------------------------------------------------------- 1 | GENERATED_ITEMS = \ 2 | gdk-pixbuf.vcproj \ 3 | gdk-pixbuf-install.vsprops 4 | 5 | EXTRA_DIST = \ 6 | README.txt \ 7 | gdk-pixbuf.sln \ 8 | gdk-pixbuf-version-paths.vsprops \ 9 | gdk-pixbuf-build-defines.vsprops \ 10 | gdk-pixbuf-gen-srcs.vsprops \ 11 | gdk-pixbuf-install.vspropsin \ 12 | gdk-pixbuf.vcprojin \ 13 | gdk-pixbuf-csource.vcproj \ 14 | gdk-pixbuf-query-loaders.vcproj \ 15 | gdk-pixbuf-pixdata.vcproj \ 16 | gdk-pixbuf-install.vcproj \ 17 | $(GENERATED_ITEMS) 18 | 19 | gdk-pixbuf-install.vsprops: $(top_srcdir)/win32/vs9/gdk-pixbuf-install.vspropsin gdk-pixbuf.headers 20 | $(CPP) -P - <$(top_srcdir)/win32/vs9/gdk-pixbuf-install.vspropsin >$@ 21 | rm gdk-pixbuf.headers 22 | 23 | DISTCLEANFILES = $(GENERATED_ITEMS) 24 | 25 | -include $(top_srcdir)/git.mk 26 | -------------------------------------------------------------------------------- /gdk-pixbuf/win32/vs9/gdk-pixbuf-gen-srcs.vsprops: -------------------------------------------------------------------------------- 1 | 2 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /librsvg/Rsvg-2.0.metadata: -------------------------------------------------------------------------------- 1 | *_VERSION parent="Rsvg.Version" name="(.+)_VERSION" 2 | VERSION parent="Rsvg.Version" name="STRING" 3 | -------------------------------------------------------------------------------- /librsvg/build/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = win32 2 | -------------------------------------------------------------------------------- /librsvg/build/win32/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = \ 2 | vs9 \ 3 | vs10 \ 4 | vs11 \ 5 | vs12 \ 6 | vs14 \ 7 | vs15 8 | 9 | if HAVE_INTROSPECTION 10 | GENERATED_ITEMS = \ 11 | introspection.body.mak \ 12 | Rsvg_@RSVG_API_VERSION_U@_gir_list 13 | 14 | MSVC_INTROSPECTION_INTERMEDIATE_FILES = Rsvg-@RSVG_API_VERSION@.gir.msvc.introspect 15 | 16 | introspection.body.mak: $(MSVC_INTROSPECTION_INTERMEDIATE_FILES) 17 | -$(RM) introspection.body.mak 18 | for F in `ls *.msvc.introspect`; do \ 19 | case $$F in \ 20 | *) cat $(top_builddir)/build/win32/$$F >>introspection.body.mak \ 21 | ;; \ 22 | esac; \ 23 | done 24 | $(RM) $(MSVC_INTROSPECTION_INTERMEDIATE_FILES) 25 | 26 | DISTCLEANFILES = $(GENERATED_ITEMS) 27 | 28 | else 29 | GENERATED_ITEMS = 30 | endif 31 | 32 | EXTRA_DIST = \ 33 | rsvg-introspection-msvc.mak \ 34 | introspection-msvc.mak \ 35 | detectenv-msvc.mak \ 36 | pc_base.py \ 37 | replace.py \ 38 | rsvgpc.py \ 39 | $(GENERATED_ITEMS) 40 | -------------------------------------------------------------------------------- /librsvg/build/win32/Rsvg-2.0.gir.msvc.introspect: -------------------------------------------------------------------------------- 1 | Rsvg-2.0.gir: Rsvg_2_0_gir_list 2 | @-echo Generating $@... 3 | $(PYTHON) $(G_IR_SCANNER) \ 4 | --verbose -no-libtool \ 5 | --namespace=Rsvg \ 6 | --nsversion=2.0 \ 7 | --pkg=pango --pkg=libxml-2.0 \ 8 | --library=rsvg-2.0 \ 9 | \ 10 | --add-include-path=$(G_IR_INCLUDEDIR) \ 11 | --include=GLib-2.0 --include=GObject-2.0 --include=Gio-2.0 --include=cairo-1.0 --include=GdkPixbuf-2.0 \ 12 | --pkg-export=librsvg-2.0 \ 13 | --cflags-begin \ 14 | -I../.. -DRSVG_COMPILATION \ 15 | --cflags-end \ 16 | -Lvs$(VSVER)\$(CFG)\$(PLAT)\bin \ 17 | --c-include=librsvg/rsvg.h \ 18 | --filelist=Rsvg_2_0_gir_list \ 19 | -o $@ 20 | 21 | Rsvg-2.0.typelib: Rsvg-2.0.gir 22 | @-echo Compiling $@... 23 | $(G_IR_COMPILER) \ 24 | --includedir=. --debug --verbose \ 25 | Rsvg-2.0.gir \ 26 | -o $@ 27 | 28 | -------------------------------------------------------------------------------- /librsvg/build/win32/introspection.body.mak: -------------------------------------------------------------------------------- 1 | Rsvg-2.0.gir: Rsvg_2_0_gir_list 2 | @-echo Generating $@... 3 | $(PYTHON) $(G_IR_SCANNER) \ 4 | --verbose -no-libtool \ 5 | --namespace=Rsvg \ 6 | --nsversion=2.0 \ 7 | --pkg=pango --pkg=libxml-2.0 \ 8 | --library=rsvg-2.0 \ 9 | \ 10 | --add-include-path=$(G_IR_INCLUDEDIR) \ 11 | --include=GLib-2.0 --include=GObject-2.0 --include=Gio-2.0 --include=cairo-1.0 --include=GdkPixbuf-2.0 \ 12 | --pkg-export=librsvg-2.0 \ 13 | --cflags-begin \ 14 | -I../.. -DRSVG_COMPILATION \ 15 | --cflags-end \ 16 | -Lvs$(VSVER)\$(CFG)\$(PLAT)\bin \ 17 | --c-include=librsvg/rsvg.h \ 18 | --filelist=Rsvg_2_0_gir_list \ 19 | -o $@ 20 | 21 | Rsvg-2.0.typelib: Rsvg-2.0.gir 22 | @-echo Compiling $@... 23 | $(G_IR_COMPILER) \ 24 | --includedir=. --debug --verbose \ 25 | Rsvg-2.0.gir \ 26 | -o $@ 27 | 28 | -------------------------------------------------------------------------------- /librsvg/build/win32/rsvg-introspection-msvc.mak: -------------------------------------------------------------------------------- 1 | # NMake Makefile to build Introspection Files for GDK-Pixbuf 2 | 3 | !include detectenv-msvc.mak 4 | 5 | APIVERSION = 2.0 6 | 7 | CHECK_PACKAGE = gdk-pixbuf-2.0 8 | 9 | !include introspection-msvc.mak 10 | 11 | !if "$(BUILD_INTROSPECTION)" == "TRUE" 12 | all: setgirbuildenv Rsvg-$(APIVERSION).gir Rsvg-$(APIVERSION).typelib 13 | 14 | setgirbuildenv: 15 | @-set PYTHONPATH=$(PREFIX)\lib\gobject-introspection 16 | @-set PATH=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(PREFIX)\bin;$(PATH) 17 | @-set PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) 18 | @-set LIB=vs$(VSVER)\$(CFG)\$(PLAT)\bin;$(LIB) 19 | 20 | !include introspection.body.mak 21 | 22 | install-introspection: all 23 | @-copy Rsvg-$(APIVERSION).gir $(G_IR_INCLUDEDIR) 24 | @-copy /b Rsvg-$(APIVERSION).typelib $(G_IR_TYPELIBDIR) 25 | 26 | !else 27 | all: 28 | @-echo $(ERROR_MSG) 29 | 30 | install-introspection: all 31 | !endif 32 | 33 | clean: 34 | @-del /f/q Rsvg-$(APIVERSION).typelib 35 | @-del /f/q Rsvg-$(APIVERSION).gir 36 | -------------------------------------------------------------------------------- /librsvg/build/win32/rsvgpc.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # 3 | # Utility script to generate .pc files for GLib 4 | # for Visual Studio builds, to be used for 5 | # building introspection files 6 | 7 | # Author: Fan, Chun-wei 8 | # Date: March 10, 2016 9 | 10 | import os 11 | import sys 12 | 13 | from replace import replace_multi 14 | from pc_base import BasePCItems 15 | 16 | def main(argv): 17 | rsvg_api_ver = '2.0' 18 | base_pc = BasePCItems() 19 | 20 | base_pc.setup(argv) 21 | pkg_replace_items = {'@RSVG_API_MAJOR_VERSION@': rsvg_api_ver, 22 | '@RSVG_API_VERSION@': rsvg_api_ver, 23 | ' -lm': ''} 24 | 25 | pkg_replace_items.update(base_pc.base_replace_items) 26 | 27 | # Generate librsvg-$(rsvg_api_ver).pc 28 | replace_multi(base_pc.top_srcdir + '/librsvg.pc.in', 29 | base_pc.srcdir + '/librsvg-' + rsvg_api_ver + '.pc', 30 | pkg_replace_items) 31 | 32 | if __name__ == '__main__': 33 | sys.exit(main(sys.argv)) 34 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs10/libpixbufloader-svg.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs10/rsvg-convert.vcxproj.filtersin: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | #include "rsvg-convert.vs10.sourcefiles.filters" 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs10/rsvg-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\..\config.h.win32 ..\..\..\config.h 8 | 9 | echo EXPORTS > $(DefDir)\rsvg.def 10 | cl /EP ..\..\..\rsvg.symbols >> $(DefDir)\rsvg.def 11 | 12 | 13 | 14 | <_PropertySheetDisplayName>rsvggensrcsprops 15 | 16 | 17 | 18 | 19 | $(CopyConfigH) 20 | 21 | 22 | $(GenerateRsvgDef) 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs10/rsvg-view-3.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs11/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | librsvg.sln \ 3 | rsvg-build-defines.props \ 4 | rsvg-gen-srcs.props \ 5 | rsvg-install.props \ 6 | rsvg-version-paths.props \ 7 | libpixbufloader-svg.vcxproj \ 8 | libpixbufloader-svg.vcxproj.filters \ 9 | rsvg.vcxproj \ 10 | rsvg.vcxproj.filters \ 11 | rsvg-convert.vcxproj \ 12 | rsvg-convert.vcxproj.filters \ 13 | rsvg-install.vcxproj \ 14 | rsvg-install.vcxproj.filters \ 15 | rsvg-introspect.vcxproj \ 16 | rsvg-view-3.vcxproj \ 17 | rsvg-view-3.vcxproj.filters \ 18 | README.txt \ 19 | math.h 20 | 21 | DISTCLEANFILES = $(EXTRA_DIST) 22 | 23 | MSVC_VER = 11 24 | MSVC_FORMAT_VER = 12 25 | MSVC_VER_LONG = 2012 26 | 27 | include $(top_srcdir)/build/Makefile-newvs.am 28 | 29 | math.h: $(top_srcdir)/build/win32/vs9/math.h 30 | cp $< $@ 31 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs11/libpixbufloader-svg.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs11/rsvg-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\..\config.h.win32 ..\..\..\config.h 8 | 9 | echo EXPORTS > $(DefDir)\rsvg.def 10 | cl /EP ..\..\..\rsvg.symbols >> $(DefDir)\rsvg.def 11 | 12 | 13 | 14 | <_PropertySheetDisplayName>rsvggensrcsprops 15 | 16 | 17 | 18 | 19 | $(CopyConfigH) 20 | 21 | 22 | $(GenerateRsvgDef) 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs11/rsvg-view-3.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs12/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | librsvg.sln \ 3 | rsvg-build-defines.props \ 4 | rsvg-gen-srcs.props \ 5 | rsvg-install.props \ 6 | rsvg-version-paths.props \ 7 | libpixbufloader-svg.vcxproj \ 8 | libpixbufloader-svg.vcxproj.filters \ 9 | rsvg.vcxproj \ 10 | rsvg.vcxproj.filters \ 11 | rsvg-convert.vcxproj \ 12 | rsvg-convert.vcxproj.filters \ 13 | rsvg-install.vcxproj \ 14 | rsvg-install.vcxproj.filters \ 15 | rsvg-introspect.vcxproj \ 16 | rsvg-view-3.vcxproj \ 17 | rsvg-view-3.vcxproj.filters \ 18 | README.txt 19 | 20 | DISTCLEANFILES = $(EXTRA_DIST) 21 | 22 | MSVC_VER = 12 23 | MSVC_FORMAT_VER = 12 24 | MSVC_VER_LONG = 2013 25 | 26 | include $(top_srcdir)/build/Makefile-newvs.am 27 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs12/libpixbufloader-svg.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs12/rsvg-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\..\config.h.win32 ..\..\..\config.h 8 | 9 | echo EXPORTS > $(DefDir)\rsvg.def 10 | cl /EP ..\..\..\rsvg.symbols >> $(DefDir)\rsvg.def 11 | 12 | 13 | 14 | <_PropertySheetDisplayName>rsvggensrcsprops 15 | 16 | 17 | 18 | 19 | $(CopyConfigH) 20 | 21 | 22 | $(GenerateRsvgDef) 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs12/rsvg-view-3.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs14/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | librsvg.sln \ 3 | rsvg-build-defines.props \ 4 | rsvg-gen-srcs.props \ 5 | rsvg-install.props \ 6 | rsvg-version-paths.props \ 7 | libpixbufloader-svg.vcxproj \ 8 | libpixbufloader-svg.vcxproj.filters \ 9 | rsvg.vcxproj \ 10 | rsvg.vcxproj.filters \ 11 | rsvg-convert.vcxproj \ 12 | rsvg-convert.vcxproj.filters \ 13 | rsvg-install.vcxproj \ 14 | rsvg-install.vcxproj.filters \ 15 | rsvg-introspect.vcxproj \ 16 | rsvg-view-3.vcxproj \ 17 | rsvg-view-3.vcxproj.filters \ 18 | README.txt 19 | 20 | DISTCLEANFILES = $(EXTRA_DIST) 21 | 22 | MSVC_VER = 14 23 | MSVC_FORMAT_VER = 12 24 | MSVC_VER_LONG = 14 25 | 26 | include $(top_srcdir)/build/Makefile-newvs.am 27 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs14/libpixbufloader-svg.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs14/rsvg-gen-srcs.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | copy ..\..\..\config.h.win32 ..\..\..\config.h 8 | 9 | echo EXPORTS > $(DefDir)\rsvg.def 10 | cl /EP ..\..\..\rsvg.symbols >> $(DefDir)\rsvg.def 11 | 12 | 13 | 14 | <_PropertySheetDisplayName>rsvggensrcsprops 15 | 16 | 17 | 18 | 19 | $(CopyConfigH) 20 | 21 | 22 | $(GenerateRsvgDef) 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs14/rsvg-view-3.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs15/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = \ 2 | librsvg.sln \ 3 | rsvg-build-defines.props \ 4 | rsvg-gen-srcs.props \ 5 | rsvg-install.props \ 6 | rsvg-version-paths.props \ 7 | libpixbufloader-svg.vcxproj \ 8 | libpixbufloader-svg.vcxproj.filters \ 9 | rsvg.vcxproj \ 10 | rsvg.vcxproj.filters \ 11 | rsvg-convert.vcxproj \ 12 | rsvg-convert.vcxproj.filters \ 13 | rsvg-install.vcxproj \ 14 | rsvg-install.vcxproj.filters \ 15 | rsvg-introspect.vcxproj \ 16 | rsvg-view-3.vcxproj \ 17 | rsvg-view-3.vcxproj.filters \ 18 | README.txt 19 | 20 | DISTCLEANFILES = $(EXTRA_DIST) 21 | 22 | MSVC_VER = 15 23 | MSVC_FORMAT_VER = 12 24 | MSVC_VER_LONG = 15 25 | MSVC_TOOLSET = 141 26 | 27 | include $(top_srcdir)/build/Makefile-newvs.am 28 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs15/rsvg-view-3.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | Sources 19 | 20 | 21 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs9/Makefile.am: -------------------------------------------------------------------------------- 1 | GENERATED_ITEMS = \ 2 | rsvg.vcproj \ 3 | rsvg-convert.vcproj \ 4 | rsvg-install.vsprops 5 | 6 | EXTRA_DIST = \ 7 | librsvg.sln \ 8 | rsvg-build-defines.vsprops \ 9 | rsvg-gen-srcs.vsprops \ 10 | rsvg-install.vspropsin \ 11 | rsvg-version-paths.vsprops \ 12 | libpixbufloader-svg.vcproj \ 13 | rsvg.vcprojin \ 14 | rsvg-convert.vcprojin \ 15 | rsvg-install.vcproj \ 16 | rsvg-introspect.vcproj \ 17 | rsvg-view-3.vcproj \ 18 | README.txt \ 19 | math.h \ 20 | $(GENERATED_ITEMS) 21 | 22 | rsvg-install.vsprops: $(top_srcdir)/build/win32/vs9/rsvg-install.vspropsin rsvg.headers 23 | $(CPP) -P - <$(top_srcdir)/build/win32/vs9/rsvg-install.vspropsin >$@ 24 | rm rsvg.headers 25 | 26 | DISTCLEANFILES = $(GENERATED_ITEMS) 27 | 28 | -include $(top_srcdir)/git.mk 29 | -------------------------------------------------------------------------------- /librsvg/build/win32/vs9/rsvg-gen-srcs.vsprops: -------------------------------------------------------------------------------- 1 | 2 | 8 | 12 | 19 | 20 | -------------------------------------------------------------------------------- /librsvg/doc/html/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/home.png -------------------------------------------------------------------------------- /librsvg/doc/html/left-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/left-insensitive.png -------------------------------------------------------------------------------- /librsvg/doc/html/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/left.png -------------------------------------------------------------------------------- /librsvg/doc/html/right-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/right-insensitive.png -------------------------------------------------------------------------------- /librsvg/doc/html/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/right.png -------------------------------------------------------------------------------- /librsvg/doc/html/up-insensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/up-insensitive.png -------------------------------------------------------------------------------- /librsvg/doc/html/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/html/up.png -------------------------------------------------------------------------------- /librsvg/doc/rsvg-overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/doc/rsvg-overrides.txt -------------------------------------------------------------------------------- /librsvg/doc/rsvg.types: -------------------------------------------------------------------------------- 1 | rsvg_error_get_type 2 | rsvg_handle_flags_get_type 3 | rsvg_handle_get_type 4 | -------------------------------------------------------------------------------- /librsvg/doc/version.xml: -------------------------------------------------------------------------------- 1 | 2.40.20 2 | -------------------------------------------------------------------------------- /librsvg/doc/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ -------------------------------------------------------------------------------- /librsvg/gdk-pixbuf-loader/librsvg.thumbnailer.in: -------------------------------------------------------------------------------- 1 | [Thumbnailer Entry] 2 | TryExec=@bindir@/gdk-pixbuf-thumbnailer 3 | Exec=@bindir@/gdk-pixbuf-thumbnailer -s %s %u %o 4 | MimeType=image/svg+xml;image/svg+xml-compressed; 5 | -------------------------------------------------------------------------------- /librsvg/librsvg-enum-types.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #if !defined (__RSVG_RSVG_H_INSIDE__) && !defined (RSVG_COMPILATION) 5 | #warning "Including directly is deprecated." 6 | #endif 7 | 8 | #ifndef __LIBRSVG_ENUM_TYPES_H__ 9 | #define __LIBRSVG_ENUM_TYPES_H__ 10 | 11 | #include 12 | 13 | G_BEGIN_DECLS 14 | /* enumerations from "rsvg.h" */ 15 | GType rsvg_error_get_type (void); 16 | #define RSVG_TYPE_ERROR (rsvg_error_get_type()) 17 | GType rsvg_handle_flags_get_type (void); 18 | #define RSVG_TYPE_HANDLE_FLAGS (rsvg_handle_flags_get_type()) 19 | G_END_DECLS 20 | 21 | #endif /* __LIBRSVG_ENUM_TYPES_H__ */ 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /librsvg/librsvg-features.c: -------------------------------------------------------------------------------- 1 | #include "rsvg.h" 2 | 3 | /* General initialization hooks */ 4 | const guint librsvg_major_version = LIBRSVG_MAJOR_VERSION; 5 | const guint librsvg_minor_version = LIBRSVG_MINOR_VERSION; 6 | const guint librsvg_micro_version = LIBRSVG_MICRO_VERSION; 7 | const char librsvg_version[] = LIBRSVG_VERSION; 8 | -------------------------------------------------------------------------------- /librsvg/librsvg-uninstalled.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | svgz_supported=true 7 | css_supported=true 8 | 9 | Name: librsvg 10 | Description: library that renders svg files 11 | Version: @VERSION@ 12 | Requires: glib-2.0 gio-2.0 gdk-pixbuf-2.0 cairo 13 | Libs: ${pc_top_builddir}/${pcfiledir}/librsvg-@RSVG_API_MAJOR_VERSION@.la 14 | Cflags: -I${pc_top_builddir}/${pcfiledir} 15 | -------------------------------------------------------------------------------- /librsvg/librsvg.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | svgz_supported=true 7 | css_supported=true 8 | 9 | Name: librsvg 10 | Description: library that renders svg files 11 | Version: @VERSION@ 12 | Requires: glib-2.0 gio-2.0 gdk-pixbuf-2.0 cairo 13 | Requires.private: 14 | Libs: -L${libdir} -lrsvg-@RSVG_API_MAJOR_VERSION@ -lm 15 | Cflags: -I${includedir}/librsvg-@RSVG_API_VERSION@ 16 | -------------------------------------------------------------------------------- /librsvg/m4/ltversion.m4: -------------------------------------------------------------------------------- 1 | # ltversion.m4 -- version numbers -*- Autoconf -*- 2 | # 3 | # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. 4 | # Written by Scott James Remnant, 2004 5 | # 6 | # This file is free software; the Free Software Foundation gives 7 | # unlimited permission to copy and/or distribute it, with or without 8 | # modifications, as long as this notice is preserved. 9 | 10 | # @configure_input@ 11 | 12 | # serial 4179 ltversion.m4 13 | # This file is part of GNU Libtool 14 | 15 | m4_define([LT_PACKAGE_VERSION], [2.4.6]) 16 | m4_define([LT_PACKAGE_REVISION], [2.4.6]) 17 | 18 | AC_DEFUN([LTVERSION_VERSION], 19 | [macro_version='2.4.6' 20 | macro_revision='2.4.6' 21 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 22 | _LT_DECL(, macro_revision, 0) 23 | ]) 24 | -------------------------------------------------------------------------------- /librsvg/rsvg-compat.h: -------------------------------------------------------------------------------- 1 | /* rsvg-compat.h: miscellaneous compatibility functions to deal with deprecations in the platform */ 2 | 3 | #ifndef RSVG_COMPAT_H 4 | #define RSVG_COMPAT_H 5 | 6 | /* g_type_init() was deprecated in glib 2.36.0 */ 7 | #if !GLIB_CHECK_VERSION (2, 36, 0) 8 | # define RSVG_G_TYPE_INIT g_type_init () 9 | #else 10 | # define RSVG_G_TYPE_INIT {} 11 | #endif 12 | 13 | #endif /* RSVG_COMPAT_H */ 14 | -------------------------------------------------------------------------------- /librsvg/tap-test: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # run a GTest in tap mode. The test binary is passed as $1 4 | 5 | $1 -k --tap 6 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/785276-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/crash/785276-empty.svg -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/785276-short-file.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/bug620238.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/bug759084.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/marker-cycles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/mask-cycles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/crash/pattern-fallback-cycles.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/dimensions/bug608102.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/dimensions/sub-rect-no-unit.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/loading/gnome-cool.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/loading/gnome-cool.svgz -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/340047-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/340047-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/403357-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/403357-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/476507-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/476507-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/548494-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/548494-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/548494.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/563933-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/563933-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/587721-text-transform-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/587721-text-transform-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/587721-text-transform.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | Frenchtown 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/603550-mask-luminance-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/603550-mask-luminance-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/738367-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/738367-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/738367.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/749415-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/749415-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/761175-recursive-masks-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/761175-recursive-masks-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/bugs/777834-empty-text-children-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/bugs/777834-empty-text-children-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/duplicate-id-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/duplicate-id-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/duplicate-id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/gzip-compressed-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/gzip-compressed-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/gzip-compressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/gzip-compressed.svg -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/include-compressed-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/include-compressed-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/include-compressed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/nonexisting-filter-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/nonexisting-filter-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/nonexisting-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/filters-color-02-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/filters-color-02-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/filters-composite-02-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/filters-composite-02-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-intro-01-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-intro-01-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-mask-01-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-mask-01-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-mask-02-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-mask-02-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-opacity-01-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-opacity-01-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-path-01-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-path-01-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-path-02-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-path-02-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-path-03-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-path-03-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/masking-path-04-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/masking-path-04-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-01-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-01-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-02-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-02-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-03-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-03-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-04-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-04-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-06-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-06-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-07-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-07-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/painting-marker-properties-01-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/painting-marker-properties-01-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-01-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-01-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-02-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-02-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-03-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-03-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-04-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-04-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-05-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-05-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-06-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-06-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-07-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-07-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-08-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-08-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-09-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-09-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-10-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-10-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-12-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-12-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-13-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-13-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-14-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-14-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-15-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-15-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-16-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-16-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-17-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-17-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-18-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-18-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-19-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-19-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/paths-data-20-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/paths-data-20-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-01-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-01-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-02-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-02-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-03-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-03-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-04-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-04-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-05-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-05-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-06-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-06-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-07-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-07-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-08-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-08-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-09-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-09-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-10-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-10-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-11-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-11-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-12-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-12-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-13-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-13-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-14-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-14-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-15-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-15-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-16-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-16-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-18-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-18-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-21-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-21-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-22-b-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-22-b-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-23-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-23-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-24-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-24-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-stops-01-f-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/pservers-grad-stops-01-f-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/resources/bluesquidj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/resources/bluesquidj.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/reftests/svg1.1/struct-cond-03-t-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/fixtures/reftests/svg1.1/struct-cond-03-t-ref.png -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/bug418823.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/bug592207.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/bug614643.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/bug614704.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/bug620693.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/important.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /librsvg/tests/fixtures/styles/svg-class.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /librsvg/tests/resources/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImageMagick/rsvg/0a0b7b0970124675ea3b1a354511815b3e06534e/librsvg/tests/resources/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /librsvg/tests/test-utils.h: -------------------------------------------------------------------------------- 1 | /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 | /* vim: set sw=4 sts=4 ts=4 expandtab: */ 3 | 4 | #ifndef TEST_UTILS_H 5 | #define TEST_UTILS_H 6 | 7 | #include 8 | 9 | G_BEGIN_DECLS 10 | 11 | typedef gboolean (* AddTestFunc) (GFile *file); 12 | 13 | const gchar *test_utils_get_test_data_path (void); 14 | 15 | void test_utils_add_test_for_all_files (const gchar *prefix, 16 | GFile *base, 17 | GFile *file, 18 | GTestDataFunc test_func, 19 | AddTestFunc add_test_func); 20 | G_END_DECLS 21 | 22 | #endif /* TEST_UTILS_H */ 23 | --------------------------------------------------------------------------------