cairo 1.15.9-x86-mingw32 → 1.15.10-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/NEWS +20 -0
- data/Rakefile +9 -7
- data/ext/cairo/rb_cairo.h +1 -1
- data/lib/2.2/cairo.so +0 -0
- data/lib/2.3/cairo.so +0 -0
- data/lib/2.4/cairo.so +0 -0
- data/lib/cairo.rb +3 -3
- data/test/cairo-test-utils.rb +8 -4
- data/test/test_context.rb +1 -1
- data/test/test_font_face.rb +1 -1
- data/test/test_recording_surface.rb +1 -0
- data/vendor/local/bin/fc-cache.exe +0 -0
- data/vendor/local/bin/fc-cat.exe +0 -0
- data/vendor/local/bin/fc-list.exe +0 -0
- data/vendor/local/bin/fc-match.exe +0 -0
- data/vendor/local/bin/fc-pattern.exe +0 -0
- data/vendor/local/bin/fc-query.exe +0 -0
- data/vendor/local/bin/fc-scan.exe +0 -0
- data/vendor/local/bin/fc-validate.exe +0 -0
- data/vendor/local/bin/freetype-config +78 -28
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
- data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
- data/vendor/local/bin/libfontconfig-1.dll +0 -0
- data/vendor/local/bin/libfreetype-6.dll +0 -0
- data/vendor/local/bin/libpixman-1-0.dll +0 -0
- data/vendor/local/bin/libpng-config +1 -1
- data/vendor/local/bin/libpng16-16.dll +0 -0
- data/vendor/local/bin/libpng16-config +1 -1
- data/vendor/local/bin/libxml2-2.dll +0 -0
- data/vendor/local/bin/png-fix-itxt.exe +0 -0
- data/vendor/local/bin/pngfix.exe +0 -0
- data/vendor/local/bin/xml2-config +1 -1
- data/vendor/local/bin/xmlcatalog.exe +0 -0
- data/vendor/local/bin/xmllint.exe +0 -0
- data/vendor/local/bin/zlib1211.dll +0 -0
- data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
- data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
- data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
- data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
- data/vendor/local/include/cairo/cairo-pdf.h +7 -8
- data/vendor/local/include/cairo/cairo-version.h +1 -1
- data/vendor/local/include/fontconfig/fontconfig.h +3 -2
- data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
- data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
- data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
- data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
- data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
- data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
- data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
- data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
- data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
- data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
- data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
- data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
- data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
- data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
- data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
- data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
- data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
- data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
- data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
- data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
- data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
- data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
- data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
- data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
- data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
- data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
- data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
- data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
- data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
- data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
- data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
- data/vendor/local/include/freetype2/ft2build.h +1 -1
- data/vendor/local/include/libpng16/png.h +29 -18
- data/vendor/local/include/libpng16/pngconf.h +1 -1
- data/vendor/local/include/libpng16/pnglibconf.h +5 -2
- data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
- data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
- data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
- data/vendor/local/include/png.h +29 -18
- data/vendor/local/include/pngconf.h +1 -1
- data/vendor/local/include/pnglibconf.h +5 -2
- data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
- data/vendor/local/lib/fontconfig.def +1 -1
- data/vendor/local/lib/libcairo-gobject.a +0 -0
- data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
- data/vendor/local/lib/libcairo-gobject.la +2 -2
- data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
- data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
- data/vendor/local/lib/libcairo.a +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/libcairo.la +2 -2
- data/vendor/local/lib/libfontconfig.dll.a +0 -0
- data/vendor/local/lib/libfontconfig.la +1 -1
- data/vendor/local/lib/libfreetype.a +0 -0
- data/vendor/local/lib/libfreetype.dll.a +0 -0
- data/vendor/local/lib/libfreetype.la +2 -2
- data/vendor/local/lib/libpixman-1.dll.a +0 -0
- data/vendor/local/lib/libpng.a +0 -0
- data/vendor/local/lib/libpng.dll.a +0 -0
- data/vendor/local/lib/libpng.la +2 -2
- data/vendor/local/lib/libpng16.a +0 -0
- data/vendor/local/lib/libpng16.dll.a +0 -0
- data/vendor/local/lib/libpng16.la +2 -2
- data/vendor/local/lib/libxml2.a +0 -0
- data/vendor/local/lib/libxml2.dll.a +0 -0
- data/vendor/local/lib/libxml2.la +1 -1
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
- data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
- data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
- data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
- data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
- data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
- data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
- data/vendor/local/lib/xml2Conf.sh +1 -1
- data/vendor/local/share/aclocal/freetype2.m4 +1 -1
- data/vendor/local/share/aclocal/libxml.m4 +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
- data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
- data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
- data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
- data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
- data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
- data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
- data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
- data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
- data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/style.css +160 -142
- data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
- data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
- data/vendor/local/share/license/cairo/README +1 -1
- data/vendor/local/share/license/fontconfig/README +58 -2
- data/vendor/local/share/license/freetype/README +5 -5
- data/vendor/local/share/license/freetype/README.git +1 -1
- data/vendor/local/share/license/libpng/README +6 -6
- data/vendor/local/share/license/libxml2/README.zOS +212 -0
- data/vendor/local/share/man/man1/freetype-config.1 +44 -6
- data/vendor/local/share/man/man3/libpng.3 +106 -48
- data/vendor/local/share/man/man3/libpngpf.3 +4 -4
- data/vendor/local/share/man/man5/png.5 +5 -5
- metadata +175 -174
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +0 -764
@@ -1,4 +1,4 @@
|
|
1
|
-
.TH FREETYPE-CONFIG 1 "
|
1
|
+
.TH FREETYPE-CONFIG 1 "September 2017" "FreeType 2.8.1"
|
2
2
|
.
|
3
3
|
.
|
4
4
|
.SH NAME
|
@@ -23,6 +23,14 @@ FreeType library version installed on the system, such as the
|
|
23
23
|
installation (directory path) prefix or the FreeType version number.
|
24
24
|
.
|
25
25
|
.PP
|
26
|
+
If
|
27
|
+
.BR pkg-config (1)
|
28
|
+
is found in the path,
|
29
|
+
.B freetype-config
|
30
|
+
acts as a wrapper for
|
31
|
+
.BR pkg-config .
|
32
|
+
.
|
33
|
+
.PP
|
26
34
|
This program is part of the FreeType package.
|
27
35
|
.
|
28
36
|
.
|
@@ -50,7 +58,8 @@ Return the executable prefix value of the installed FreeType library
|
|
50
58
|
.
|
51
59
|
.TP
|
52
60
|
.B \-\-ftversion
|
53
|
-
Return the FreeType version number
|
61
|
+
Return the FreeType version number, directly derived from file
|
62
|
+
`freetype.h'.
|
54
63
|
.
|
55
64
|
.TP
|
56
65
|
.B \-\-version
|
@@ -72,32 +81,61 @@ Return compiler flags for compiling against the installed FreeType library.
|
|
72
81
|
.B \-\-static
|
73
82
|
Make command line options display flags for static linking.
|
74
83
|
.
|
84
|
+
.TP
|
85
|
+
.B \-\-help
|
86
|
+
Show help and exit.
|
87
|
+
.
|
75
88
|
.
|
76
89
|
.SS Path override options
|
77
90
|
.
|
78
91
|
These affect any selected output option, except the libtool version
|
79
|
-
returned by
|
92
|
+
returned by
|
93
|
+
.BR \-\-version .
|
80
94
|
.
|
81
95
|
.TP
|
82
96
|
.BI \-\-prefix= PREFIX
|
83
|
-
Override
|
97
|
+
Override
|
98
|
+
.B \-\-prefix
|
99
|
+
value with
|
84
100
|
.IR PREFIX .
|
85
101
|
.
|
102
|
+
This also sets
|
103
|
+
.BI \-\-exec-prefix= PREFIX
|
104
|
+
if option
|
105
|
+
.B \-\-exec-prefix
|
106
|
+
is not explicitly given.
|
107
|
+
.
|
86
108
|
.TP
|
87
109
|
.BI \-\-exec-prefix= EPREFIX
|
88
|
-
Override
|
110
|
+
Override
|
111
|
+
.B \-\-exec-prefix
|
112
|
+
value with
|
89
113
|
.IR EPREFIX .
|
90
114
|
.
|
91
115
|
.
|
92
116
|
.SH BUGS
|
93
117
|
In case the libraries FreeType links to are located in non-standard
|
94
|
-
directories,
|
118
|
+
directories, and
|
119
|
+
.BR pkg-config (1)
|
120
|
+
is not available, the output from option
|
95
121
|
.B \-\-libs
|
96
122
|
might be incomplete.
|
123
|
+
.
|
97
124
|
It is thus recommended to use the
|
98
125
|
.BR pkg-config (1)
|
99
126
|
interface instead, which is able to correctly resolve all dependencies.
|
100
127
|
.
|
128
|
+
.PP
|
129
|
+
Setting
|
130
|
+
.B \-\-exec-prefix
|
131
|
+
(either explicitly or implicitly) might return incorrect results if
|
132
|
+
combined with option
|
133
|
+
.BR \-\-static .
|
134
|
+
.
|
135
|
+
The same problem can occur if you set the
|
136
|
+
.B SYSROOT
|
137
|
+
environment variable.
|
138
|
+
.
|
101
139
|
.
|
102
140
|
.SH AUTHOR
|
103
141
|
.
|
@@ -1,6 +1,6 @@
|
|
1
|
-
.TH LIBPNG 3 "
|
1
|
+
.TH LIBPNG 3 "August 24, 2017"
|
2
2
|
.SH NAME
|
3
|
-
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.
|
3
|
+
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.32
|
4
4
|
.SH SYNOPSIS
|
5
5
|
\fB
|
6
6
|
#include <png.h>\fP
|
@@ -97,6 +97,10 @@ libpng \- Portable Network Graphics (PNG) Reference Library 1.6.29
|
|
97
97
|
|
98
98
|
\fBpng_byte png_get_header_version (png_const_structp \fIpng_ptr\fP\fB);\fP
|
99
99
|
|
100
|
+
\fBpng_uint_32 png_get_eXIf (png_const_structp \fP\fIpng_ptr\fP\fB, png_const_infop \fP\fIinfo_ptr\fP\fB, png_bytep \fI*exif\fP\fB);\fP
|
101
|
+
|
102
|
+
\fBpng_uint_32 png_get_eXIf_1 (png_const_structp \fP\fIpng_ptr\fP\fB, png_const_infop \fP\fIinfo_ptr\fP\fB, png_unit_32 \fP\fI*num_exif\fP\fB, png_bytep \fI*exif\fP\fB);\fP
|
103
|
+
|
100
104
|
\fBpng_uint_32 png_get_hIST (png_const_structp \fP\fIpng_ptr\fP\fB, png_const_infop \fP\fIinfo_ptr\fP\fB, png_uint_16p \fI*hist\fP\fB);\fP
|
101
105
|
|
102
106
|
\fBpng_uint_32 png_get_iCCP (png_const_structp \fP\fIpng_ptr\fP\fB, png_const_infop \fP\fIinfo_ptr\fP\fB, png_charpp \fP\fIname\fP\fB, int \fP\fI*compression_type\fP\fB, png_bytepp \fP\fIprofile\fP\fB, png_uint_32 \fI*proflen\fP\fB);\fP
|
@@ -347,6 +351,10 @@ libpng \- Portable Network Graphics (PNG) Reference Library 1.6.29
|
|
347
351
|
|
348
352
|
\fBvoid png_set_gray_to_rgb (png_structp \fIpng_ptr\fP\fB);\fP
|
349
353
|
|
354
|
+
\fBvoid png_set_eXIf (png_structp \fP\fIpng_ptr\fP\fB, png_infop \fP\fIinfo_ptr\fP\fB, png_bytep \fIexif\fP\fB);\fP
|
355
|
+
|
356
|
+
\fBvoid png_set_eXIf_1 (png_structp \fP\fIpng_ptr\fP\fB, png_infop \fP\fIinfo_ptr\fP\fB, const png_uint_32 \fP\fInum_exif\fP\fB, png_bytep \fIexif\fP\fB);\fP
|
357
|
+
|
350
358
|
\fBvoid png_set_hIST (png_structp \fP\fIpng_ptr\fP\fB, png_infop \fP\fIinfo_ptr\fP\fB, png_uint_16p \fIhist\fP\fB);\fP
|
351
359
|
|
352
360
|
\fBvoid png_set_iCCP (png_structp \fP\fIpng_ptr\fP\fB, png_infop \fP\fIinfo_ptr\fP\fB, png_const_charp \fP\fIname\fP\fB, int \fP\fIcompression_type\fP\fB, png_const_bytep \fP\fIprofile\fP\fB, png_uint_32 \fIproflen\fP\fB);\fP
|
@@ -510,10 +518,10 @@ Following is a copy of the libpng-manual.txt file that accompanies libpng.
|
|
510
518
|
.SH LIBPNG.TXT
|
511
519
|
libpng-manual.txt - A description on how to use and modify libpng
|
512
520
|
|
513
|
-
libpng version 1.6.
|
521
|
+
libpng version 1.6.32 - August 24, 2017
|
514
522
|
Updated and distributed by Glenn Randers-Pehrson
|
515
523
|
<glennrp at users.sourceforge.net>
|
516
|
-
Copyright (c) 1998-
|
524
|
+
Copyright (c) 1998-2017 Glenn Randers-Pehrson
|
517
525
|
|
518
526
|
This document is released under the libpng license.
|
519
527
|
For conditions of distribution and use, see the disclaimer
|
@@ -521,9 +529,9 @@ libpng-manual.txt - A description on how to use and modify libpng
|
|
521
529
|
|
522
530
|
Based on:
|
523
531
|
|
524
|
-
libpng versions 0.97, January 1998, through 1.6.
|
532
|
+
libpng versions 0.97, January 1998, through 1.6.32 - August 24, 2017
|
525
533
|
Updated and distributed by Glenn Randers-Pehrson
|
526
|
-
Copyright (c) 1998-
|
534
|
+
Copyright (c) 1998-2017 Glenn Randers-Pehrson
|
527
535
|
|
528
536
|
libpng 1.0 beta 6 - version 0.96 - May 28, 1997
|
529
537
|
Updated and distributed by Andreas Dilger
|
@@ -576,17 +584,17 @@ file format in application programs.
|
|
576
584
|
|
577
585
|
The PNG specification (second edition), November 2003, is available as
|
578
586
|
a W3C Recommendation and as an ISO Standard (ISO/IEC 15948:2004 (E)) at
|
579
|
-
<
|
587
|
+
<https://www.w3.org/TR/2003/REC-PNG-20031110/
|
580
588
|
The W3C and ISO documents have identical technical content.
|
581
589
|
|
582
590
|
The PNG-1.2 specification is available at
|
583
|
-
<
|
591
|
+
<https://png-mng.sourceforge.io/pub/png/spec/1.2/>.
|
584
592
|
It is technically equivalent
|
585
593
|
to the PNG specification (second edition) but has some additional material.
|
586
594
|
|
587
|
-
The PNG-1.0 specification is available as RFC 2083
|
588
|
-
<
|
589
|
-
W3C Recommendation <
|
595
|
+
The PNG-1.0 specification is available as RFC 2083
|
596
|
+
<https://png-mng.sourceforge.io/pub/png/spec/1.0/> and as a
|
597
|
+
W3C Recommendation <https://www.w3.org/TR/REC-png-961001>.
|
590
598
|
|
591
599
|
Some additional chunks are described in the special-purpose public chunks
|
592
600
|
documents at <http://www.libpng.org/pub/png/spec/register/>
|
@@ -611,7 +619,7 @@ majority of the needs of its users.
|
|
611
619
|
|
612
620
|
Libpng uses zlib for its compression and decompression of PNG files.
|
613
621
|
Further information about zlib, and the latest version of zlib, can
|
614
|
-
be found at the zlib home page, <
|
622
|
+
be found at the zlib home page, <https://zlib.net/>.
|
615
623
|
The zlib compression utility is a general purpose utility that is
|
616
624
|
useful for more than PNG files, and can be used without libpng.
|
617
625
|
See the documentation delivered with zlib for more details.
|
@@ -1198,8 +1206,9 @@ where 0x7fffffffL means unlimited. You can retrieve this limit with
|
|
1198
1206
|
chunk_cache_max = png_get_chunk_cache_max(png_ptr);
|
1199
1207
|
|
1200
1208
|
Libpng imposes a limit of 8 Megabytes (8,000,000 bytes) on the amount of
|
1201
|
-
memory that
|
1202
|
-
|
1209
|
+
memory that any chunk other than IDAT can occupy, originally or when
|
1210
|
+
decompressed (prior to libpng-1.6.32 the limit was only applied to compressed
|
1211
|
+
chunks after decompression). You can change this limit with
|
1203
1212
|
|
1204
1213
|
png_set_chunk_malloc_max(png_ptr, user_chunk_malloc_max);
|
1205
1214
|
|
@@ -1700,7 +1709,20 @@ row_pointers prior to calling png_read_png() with
|
|
1700
1709
|
png_set_rows(png_ptr, info_ptr, &row_pointers);
|
1701
1710
|
|
1702
1711
|
Alternatively you could allocate your image in one big block and define
|
1703
|
-
row_pointers[i] to point into the proper places in your block
|
1712
|
+
row_pointers[i] to point into the proper places in your block, but first
|
1713
|
+
be sure that your platform is able to allocate such a large buffer:
|
1714
|
+
|
1715
|
+
/* Guard against integer overflow */
|
1716
|
+
if (height > PNG_SIZE_MAX/(width*pixel_size)) {
|
1717
|
+
png_error(png_ptr,"image_data buffer would be too large");
|
1718
|
+
}
|
1719
|
+
|
1720
|
+
png_bytep buffer=png_malloc(png_ptr,height*width*pixel_size);
|
1721
|
+
|
1722
|
+
for (int i=0; i<height, i++)
|
1723
|
+
row_pointers[i]=buffer+i*width*pixel_size;
|
1724
|
+
|
1725
|
+
png_set_rows(png_ptr, info_ptr, &row_pointers);
|
1704
1726
|
|
1705
1727
|
If you use png_set_rows(), the application is responsible for freeing
|
1706
1728
|
row_pointers (and row_pointers[i], if they were separately allocated).
|
@@ -1827,6 +1849,11 @@ in until png_read_end() has read the chunk data following the image.
|
|
1827
1849
|
rowbytes = png_get_rowbytes(png_ptr, info_ptr);
|
1828
1850
|
|
1829
1851
|
rowbytes - number of bytes needed to hold a row
|
1852
|
+
This value, the bit_depth, color_type,
|
1853
|
+
and the number of channels can change
|
1854
|
+
if you use transforms such as
|
1855
|
+
png_set_expand(). See
|
1856
|
+
png_read_update_info(), below.
|
1830
1857
|
|
1831
1858
|
signature = png_get_signature(png_ptr, info_ptr);
|
1832
1859
|
|
@@ -1945,6 +1972,11 @@ png_set_rgb_to_gray()).
|
|
1945
1972
|
the single transparent color for
|
1946
1973
|
non-paletted images (PNG_INFO_tRNS)
|
1947
1974
|
|
1975
|
+
png_get_eXIf_1(png_ptr, info_ptr, &num_exif, &exif);
|
1976
|
+
(PNG_INFO_eXIf)
|
1977
|
+
|
1978
|
+
exif - Exif profile (array of png_byte)
|
1979
|
+
|
1948
1980
|
png_get_hIST(png_ptr, info_ptr, &hist);
|
1949
1981
|
(PNG_INFO_hIST)
|
1950
1982
|
|
@@ -2656,6 +2688,16 @@ are allocating one large chunk, you will need to build an
|
|
2656
2688
|
array of pointers to each row, as it will be needed for some
|
2657
2689
|
of the functions below.
|
2658
2690
|
|
2691
|
+
Be sure that your platform can allocate the buffer that you'll need.
|
2692
|
+
libpng internally checks for oversize width, but you'll need to
|
2693
|
+
do your own check for number_of_rows*width*pixel_size if you are using
|
2694
|
+
a multiple-row buffer:
|
2695
|
+
|
2696
|
+
/* Guard against integer overflow */
|
2697
|
+
if (number_of_rows > PNG_SIZE_MAX/(width*pixel_size)) {
|
2698
|
+
png_error(png_ptr,"image_data buffer would be too large");
|
2699
|
+
}
|
2700
|
+
|
2659
2701
|
Remember: Before you call png_read_update_info(), the png_get_*()
|
2660
2702
|
functions return the values corresponding to the original PNG image.
|
2661
2703
|
After you call png_read_update_info the values refer to the image
|
@@ -2980,6 +3022,7 @@ your application instead of by libpng, you can use
|
|
2980
3022
|
PNG_INFO_gAMA, PNG_INFO_sBIT,
|
2981
3023
|
PNG_INFO_cHRM, PNG_INFO_PLTE,
|
2982
3024
|
PNG_INFO_tRNS, PNG_INFO_bKGD,
|
3025
|
+
PNG_INFO_eXIf,
|
2983
3026
|
PNG_INFO_hIST, PNG_INFO_pHYs,
|
2984
3027
|
PNG_INFO_oFFs, PNG_INFO_tIME,
|
2985
3028
|
PNG_INFO_pCAL, PNG_INFO_sRGB,
|
@@ -3579,6 +3622,11 @@ width, height, bit_depth, and color_type must be the same in each call.
|
|
3579
3622
|
single transparent color for
|
3580
3623
|
non-paletted images (PNG_INFO_tRNS)
|
3581
3624
|
|
3625
|
+
png_set_eXIf_1(png_ptr, info_ptr, num_exif, exif);
|
3626
|
+
|
3627
|
+
exif - Exif profile (array of
|
3628
|
+
png_byte) (PNG_INFO_eXIf)
|
3629
|
+
|
3582
3630
|
png_set_hIST(png_ptr, info_ptr, hist);
|
3583
3631
|
|
3584
3632
|
hist - histogram of palette (array of
|
@@ -4334,7 +4382,7 @@ PNG_FORMAT_FLAG_LINEAR flag below.
|
|
4334
4382
|
|
4335
4383
|
When the simplified API needs to convert between sRGB and linear colorspaces,
|
4336
4384
|
the actual sRGB transfer curve defined in the sRGB specification (see the
|
4337
|
-
article at
|
4385
|
+
article at https://en.wikipedia.org/wiki/SRGB) is used, not the gamma=1/2.2
|
4338
4386
|
approximation used elsewhere in libpng.
|
4339
4387
|
|
4340
4388
|
When an alpha channel is present it is expected to denote pixel coverage
|
@@ -4598,7 +4646,7 @@ READ APIs
|
|
4598
4646
|
|
4599
4647
|
When the simplified API needs to convert between sRGB and linear colorspaces,
|
4600
4648
|
the actual sRGB transfer curve defined in the sRGB specification (see the
|
4601
|
-
article at
|
4649
|
+
article at https://en.wikipedia.org/wiki/SRGB) is used, not the gamma=1/2.2
|
4602
4650
|
approximation used elsewhere in libpng.
|
4603
4651
|
|
4604
4652
|
WRITE APIS
|
@@ -4756,8 +4804,6 @@ functions after png_create_*_struct() has been called by calling:
|
|
4756
4804
|
png_voidp error_ptr, png_error_ptr error_fn,
|
4757
4805
|
png_error_ptr warning_fn);
|
4758
4806
|
|
4759
|
-
png_voidp error_ptr = png_get_error_ptr(png_ptr);
|
4760
|
-
|
4761
4807
|
If NULL is supplied for either error_fn or warning_fn, then the libpng
|
4762
4808
|
default function will be used, calling fprintf() and/or longjmp() if a
|
4763
4809
|
problem is encountered. The replacement error functions should have
|
@@ -4769,6 +4815,11 @@ parameters as follows:
|
|
4769
4815
|
void user_warning_fn(png_structp png_ptr,
|
4770
4816
|
png_const_charp warning_msg);
|
4771
4817
|
|
4818
|
+
Then, within your user_error_fn or user_warning_fn, you can retrieve
|
4819
|
+
the error_ptr if you need it, by calling
|
4820
|
+
|
4821
|
+
png_voidp error_ptr = png_get_error_ptr(png_ptr);
|
4822
|
+
|
4772
4823
|
The motivation behind using setjmp() and longjmp() is the C++ throw and
|
4773
4824
|
catch exception handling methods. This makes the code much easier to write,
|
4774
4825
|
as there is no need to check every return code of every function call.
|
@@ -4776,7 +4827,7 @@ However, there are some uncertainties about the status of local variables
|
|
4776
4827
|
after a longjmp, so the user may want to be careful about doing anything
|
4777
4828
|
after setjmp returns non-zero besides returning itself. Consult your
|
4778
4829
|
compiler documentation for more details. For an alternative approach, you
|
4779
|
-
may wish to use the "cexcept" facility (see
|
4830
|
+
may wish to use the "cexcept" facility (see https://cexcept.sourceforge.io/),
|
4780
4831
|
which is illustrated in pngvalid.c and in contrib/visupng.
|
4781
4832
|
|
4782
4833
|
Beginning in libpng-1.4.0, the png_set_benign_errors() API became available.
|
@@ -5004,7 +5055,7 @@ in a MNG datastream. As a minimum, it must have the MNG 8-byte signature
|
|
5004
5055
|
and the MHDR and MEND chunks. Libpng does not provide support for these
|
5005
5056
|
or any other MNG chunks; your application must provide its own support for
|
5006
5057
|
them. You may wish to consider using libmng (available at
|
5007
|
-
|
5058
|
+
https://www.libmng.com/) instead.
|
5008
5059
|
|
5009
5060
|
.SH VIII. Changes to Libpng from version 0.88
|
5010
5061
|
|
@@ -5427,18 +5478,14 @@ PNG_USER_WIDTH_MAX and PNG_USER_HEIGHT_MAX, although this document said
|
|
5427
5478
|
that it could be used to override them. Now this function will reduce or
|
5428
5479
|
increase the limits.
|
5429
5480
|
|
5430
|
-
Starting in libpng-1.5.
|
5431
|
-
|
5432
|
-
|
5433
|
-
|
5434
|
-
|
5435
|
-
in libpng-1.5.10 the default width and height limits were increased
|
5436
|
-
from 1,000,000 to 0x7fffffff (i.e., made unlimited). Therefore, the
|
5437
|
-
limits are now
|
5438
|
-
default safe
|
5481
|
+
Starting in libpng-1.5.22, default user limits were established. These
|
5482
|
+
can be overridden by application calls to png_set_user_limits(),
|
5483
|
+
png_set_user_chunk_cache_max(), and/or png_set_user_malloc_max().
|
5484
|
+
The limits are now
|
5485
|
+
max possible default
|
5439
5486
|
png_user_width_max 0x7fffffff 1,000,000
|
5440
5487
|
png_user_height_max 0x7fffffff 1,000,000
|
5441
|
-
png_user_chunk_cache_max 0 (unlimited)
|
5488
|
+
png_user_chunk_cache_max 0 (unlimited) 1000
|
5442
5489
|
png_user_chunk_malloc_max 0 (unlimited) 8,000,000
|
5443
5490
|
|
5444
5491
|
The png_set_option() function (and the "options" member of the png struct) was
|
@@ -5688,6 +5735,11 @@ is an error. Previously this requirement of the PNG specification was not
|
|
5688
5735
|
enforced, and the palette was always limited to 256 entries. An over-length
|
5689
5736
|
PLTE chunk found in an input PNG is silently truncated.
|
5690
5737
|
|
5738
|
+
Starting with libpng-1.6.31, the eXIf chunk is supported. Libpng does not
|
5739
|
+
attempt to decode the Exif profile; it simply returns a byte array
|
5740
|
+
containing the profile to the calling application which must do its own
|
5741
|
+
decoding.
|
5742
|
+
|
5691
5743
|
.SH XIII. Detecting libpng
|
5692
5744
|
|
5693
5745
|
The png_get_io_ptr() function has been present since libpng-0.88, has never
|
@@ -5704,27 +5756,33 @@ control. The git repository was built from old libpng-x.y.z.tar.gz files
|
|
5704
5756
|
going back to version 0.70. You can access the git repository (read only)
|
5705
5757
|
at
|
5706
5758
|
|
5707
|
-
|
5759
|
+
https://github.com/glennrp/libpng or
|
5760
|
+
https://git.code.sf.net/p/libpng/code.git
|
5708
5761
|
|
5709
|
-
or you can browse it with a web browser
|
5762
|
+
or you can browse it with a web browser at
|
5710
5763
|
|
5711
|
-
https://
|
5764
|
+
https://github.com/glennrp/libpng or
|
5765
|
+
https://sourceforge.net/p/libpng/code/ci/libpng16/tree/
|
5712
5766
|
|
5713
5767
|
Patches can be sent to glennrp at users.sourceforge.net or to
|
5714
5768
|
png-mng-implement at lists.sourceforge.net or you can upload them to
|
5715
5769
|
the libpng bug tracker at
|
5716
5770
|
|
5717
|
-
|
5771
|
+
https://libpng.sourceforge.io/
|
5772
|
+
|
5773
|
+
or as a "pull request" to
|
5774
|
+
|
5775
|
+
https://github.com/glennrp/libpng/pulls
|
5718
5776
|
|
5719
5777
|
We also accept patches built from the tar or zip distributions, and
|
5720
5778
|
simple verbal discriptions of bug fixes, reported either to the
|
5721
5779
|
SourceForge bug tracker, to the png-mng-implement at lists.sf.net
|
5722
|
-
mailing list, or directly to glennrp.
|
5780
|
+
mailing list, as github issues, or directly to glennrp.
|
5723
5781
|
|
5724
5782
|
.SH XV. Coding style
|
5725
5783
|
|
5726
5784
|
Our coding style is similar to the "Allman" style
|
5727
|
-
(See
|
5785
|
+
(See https://en.wikipedia.org/wiki/Indent_style#Allman_style), with curly
|
5728
5786
|
braces on separate lines:
|
5729
5787
|
|
5730
5788
|
if (condition)
|
@@ -5825,7 +5883,7 @@ Prior to libpng-1.6.0 we used a "png_sizeof()" macro, formatted as
|
|
5825
5883
|
though it were a function.
|
5826
5884
|
|
5827
5885
|
Control keywords if, for, while, and switch are always followed by a space
|
5828
|
-
to distinguish them from function calls, which have no trailing space.
|
5886
|
+
to distinguish them from function calls, which have no trailing space.
|
5829
5887
|
|
5830
5888
|
We put a space after each comma and after each semicolon
|
5831
5889
|
in "for" statements, and we put spaces before and after each
|
@@ -5851,7 +5909,7 @@ for a few type names that we inherit from zlib.h.
|
|
5851
5909
|
|
5852
5910
|
We prefer "if (something != 0)" and "if (something == 0)" over
|
5853
5911
|
"if (something)" and if "(!something)", respectively, and for pointers
|
5854
|
-
we prefer "if (some_pointer != NULL)" or "if (some_pointer == NULL)".
|
5912
|
+
we prefer "if (some_pointer != NULL)" or "if (some_pointer == NULL)".
|
5855
5913
|
|
5856
5914
|
We do not use the TAB character for indentation in the C sources.
|
5857
5915
|
|
@@ -5865,7 +5923,7 @@ Since the PNG Development group is an ad-hoc body, we can't make
|
|
5865
5923
|
an official declaration.
|
5866
5924
|
|
5867
5925
|
This is your unofficial assurance that libpng from version 0.71 and
|
5868
|
-
upward through 1.6.
|
5926
|
+
upward through 1.6.32 are Y2K compliant. It is my belief that earlier
|
5869
5927
|
versions were also Y2K compliant.
|
5870
5928
|
|
5871
5929
|
Libpng only has two year fields. One is a 2-byte unsigned integer
|
@@ -5967,7 +6025,7 @@ the first widely used release:
|
|
5967
6025
|
...
|
5968
6026
|
1.5.28 15 10528 15.so.15.28[.0]
|
5969
6027
|
...
|
5970
|
-
1.6.
|
6028
|
+
1.6.32 16 10632 16.so.16.32[.0]
|
5971
6029
|
|
5972
6030
|
Henceforth the source version will match the shared-library minor
|
5973
6031
|
and patch numbers; the shared-library major version number will be
|
@@ -5984,7 +6042,7 @@ release number plus "betaNN" or "rcNN".
|
|
5984
6042
|
.LP
|
5985
6043
|
.IR libpng :
|
5986
6044
|
.IP
|
5987
|
-
|
6045
|
+
https://libpng.sourceforge.io/ (follow the [DOWNLOAD] link)
|
5988
6046
|
http://www.libpng.org/pub/png
|
5989
6047
|
|
5990
6048
|
.LP
|
@@ -5994,7 +6052,7 @@ http://www.libpng.org/pub/png
|
|
5994
6052
|
.I libpng
|
5995
6053
|
or at
|
5996
6054
|
.br
|
5997
|
-
|
6055
|
+
https://zlib.net/
|
5998
6056
|
|
5999
6057
|
.LP
|
6000
6058
|
.IR PNG specification: RFC 2083
|
@@ -6003,11 +6061,11 @@ ftp://ftp.info-zip.org/pub/infozip/zlib
|
|
6003
6061
|
.I libpng
|
6004
6062
|
or at
|
6005
6063
|
.br
|
6006
|
-
|
6064
|
+
https://www.ietf.org/rfc/rfc2083.txt
|
6007
6065
|
.br
|
6008
6066
|
or (as a W3C Recommendation) at
|
6009
6067
|
.br
|
6010
|
-
|
6068
|
+
https://www.w3.org/TR/REC-png.html
|
6011
6069
|
|
6012
6070
|
.LP
|
6013
6071
|
In the case of any inconsistency between the PNG specification
|
@@ -6023,7 +6081,7 @@ possible without all of you.
|
|
6023
6081
|
|
6024
6082
|
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
6025
6083
|
|
6026
|
-
Libpng version 1.6.
|
6084
|
+
Libpng version 1.6.32 - August 24, 2017:
|
6027
6085
|
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
6028
6086
|
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
6029
6087
|
|
@@ -6048,7 +6106,7 @@ this sentence.
|
|
6048
6106
|
|
6049
6107
|
This code is released under the libpng license.
|
6050
6108
|
|
6051
|
-
libpng versions 1.0.7, July 1, 2000 through 1.6.
|
6109
|
+
libpng versions 1.0.7, July 1, 2000 through 1.6.32, August 24, 2017 are
|
6052
6110
|
Copyright (c) 2000-2002, 2004, 2006-2017 Glenn Randers-Pehrson, are
|
6053
6111
|
derived from libpng-1.0.6, and are distributed according to the same
|
6054
6112
|
disclaimer and license as libpng-1.0.6 with the following individuals
|
@@ -6176,7 +6234,7 @@ files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
|
|
6176
6234
|
|
6177
6235
|
Glenn Randers-Pehrson
|
6178
6236
|
glennrp at users.sourceforge.net
|
6179
|
-
|
6237
|
+
August 24, 2017
|
6180
6238
|
|
6181
6239
|
.\" end of man page
|
6182
6240
|
|