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
@@ -2,21 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>PNG Support: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
9
|
<link rel="prev" href="cairo-PDF-Surfaces.html" title="PDF Surfaces">
|
10
10
|
<link rel="next" href="cairo-PostScript-Surfaces.html" title="PostScript Surfaces">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts">
|
17
|
-
<a href="#" class="shortcut">Top</a><span id="nav_description">
|
18
|
-
<a href="#cairo-PNG-Support.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-PNG-Support.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#cairo-PNG-Support.description" class="shortcut">Description</a></span>
|
20
19
|
</td>
|
21
20
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
21
|
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
@@ -34,7 +33,7 @@
|
|
34
33
|
</tr></table></div>
|
35
34
|
<div class="refsect1">
|
36
35
|
<a name="cairo-PNG-Support.functions"></a><h2>Functions</h2>
|
37
|
-
<div class="informaltable"><table width="100%" border="0">
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
38
37
|
<colgroup>
|
39
38
|
<col width="150px" class="functions_return">
|
40
39
|
<col class="functions_name">
|
@@ -93,7 +92,7 @@
|
|
93
92
|
</div>
|
94
93
|
<div class="refsect1">
|
95
94
|
<a name="cairo-PNG-Support.other"></a><h2>Types and Values</h2>
|
96
|
-
<div class="informaltable"><table width="100%" border="0">
|
95
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
97
96
|
<colgroup>
|
98
97
|
<col width="150px" class="name">
|
99
98
|
<col class="description">
|
@@ -105,11 +104,6 @@
|
|
105
104
|
</table></div>
|
106
105
|
</div>
|
107
106
|
<div class="refsect1">
|
108
|
-
<a name="cairo-PNG-Support.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
109
|
-
<pre class="screen">
|
110
|
-
</pre>
|
111
|
-
</div>
|
112
|
-
<div class="refsect1">
|
113
107
|
<a name="cairo-PNG-Support.description"></a><h2>Description</h2>
|
114
108
|
<p>The PNG functions allow reading PNG images into image surfaces, and writing
|
115
109
|
any surface to a PNG file.</p>
|
@@ -130,8 +124,8 @@ cairo_image_surface_create_from_png (<em class="parameter"><code>const <span cla
|
|
130
124
|
<p>Creates a new image surface and initializes the contents to the
|
131
125
|
given PNG file.</p>
|
132
126
|
<div class="refsect3">
|
133
|
-
<a name="
|
134
|
-
<div class="informaltable"><table width="100%" border="0">
|
127
|
+
<a name="cairo-image-surface-create-from-png.parameters"></a><h4>Parameters</h4>
|
128
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
135
129
|
<colgroup>
|
136
130
|
<col width="150px" class="parameters_name">
|
137
131
|
<col class="parameters_description">
|
@@ -145,7 +139,7 @@ given PNG file.</p>
|
|
145
139
|
</table></div>
|
146
140
|
</div>
|
147
141
|
<div class="refsect3">
|
148
|
-
<a name="
|
142
|
+
<a name="cairo-image-surface-create-from-png.returns"></a><h4>Returns</h4>
|
149
143
|
<p> a new <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
|
150
144
|
of the PNG file, or a "nil" surface if any error occurred. A nil
|
151
145
|
surface can be checked for with cairo_surface_status(surface) which
|
@@ -157,9 +151,8 @@ may return one of the following values:</p>
|
|
157
151
|
<p>Alternatively, you can allow errors to propagate through the drawing
|
158
152
|
operations and check the status on the context upon completion
|
159
153
|
using <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</p>
|
160
|
-
<p></p>
|
161
154
|
</div>
|
162
|
-
<p class="since">Since 1.0</p>
|
155
|
+
<p class="since">Since: 1.0</p>
|
163
156
|
</div>
|
164
157
|
<hr>
|
165
158
|
<div class="refsect2">
|
@@ -176,8 +169,8 @@ length of the data in bytes. The read function should return
|
|
176
169
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully read,
|
177
170
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-READ-ERROR:CAPS"><code class="literal">CAIRO_STATUS_READ_ERROR</code></a> otherwise.</p>
|
178
171
|
<div class="refsect3">
|
179
|
-
<a name="
|
180
|
-
<div class="informaltable"><table width="100%" border="0">
|
172
|
+
<a name="cairo-read-func-t.parameters"></a><h4>Parameters</h4>
|
173
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
181
174
|
<colgroup>
|
182
175
|
<col width="150px" class="parameters_name">
|
183
176
|
<col class="parameters_description">
|
@@ -203,11 +196,10 @@ length of the data in bytes. The read function should return
|
|
203
196
|
</table></div>
|
204
197
|
</div>
|
205
198
|
<div class="refsect3">
|
206
|
-
<a name="
|
199
|
+
<a name="cairo-read-func-t.returns"></a><h4>Returns</h4>
|
207
200
|
<p> the status code of the read operation</p>
|
208
|
-
<p></p>
|
209
201
|
</div>
|
210
|
-
<p class="since">Since 1.0</p>
|
202
|
+
<p class="since">Since: 1.0</p>
|
211
203
|
</div>
|
212
204
|
<hr>
|
213
205
|
<div class="refsect2">
|
@@ -220,8 +212,8 @@ cairo_image_surface_create_from_png_stream
|
|
220
212
|
via the <em class="parameter"><code>read_func</code></em>
|
221
213
|
function.</p>
|
222
214
|
<div class="refsect3">
|
223
|
-
<a name="
|
224
|
-
<div class="informaltable"><table width="100%" border="0">
|
215
|
+
<a name="cairo-image-surface-create-from-png-stream.parameters"></a><h4>Parameters</h4>
|
216
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
225
217
|
<colgroup>
|
226
218
|
<col width="150px" class="parameters_name">
|
227
219
|
<col class="parameters_description">
|
@@ -243,7 +235,7 @@ via the <em class="parameter"><code>read_func</code></em>
|
|
243
235
|
</table></div>
|
244
236
|
</div>
|
245
237
|
<div class="refsect3">
|
246
|
-
<a name="
|
238
|
+
<a name="cairo-image-surface-create-from-png-stream.returns"></a><h4>Returns</h4>
|
247
239
|
<p> a new <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
|
248
240
|
of the PNG file or a "nil" surface if the data read is not a valid PNG image
|
249
241
|
or memory could not be allocated for the operation. A nil
|
@@ -255,9 +247,8 @@ may return one of the following values:</p>
|
|
255
247
|
<p>Alternatively, you can allow errors to propagate through the drawing
|
256
248
|
operations and check the status on the context upon completion
|
257
249
|
using <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</p>
|
258
|
-
<p></p>
|
259
250
|
</div>
|
260
|
-
<p class="since">Since 1.0</p>
|
251
|
+
<p class="since">Since: 1.0</p>
|
261
252
|
</div>
|
262
253
|
<hr>
|
263
254
|
<div class="refsect2">
|
@@ -270,8 +261,8 @@ cairo_surface_write_to_png (<em class="parameter"><code><a class="link" href="ca
|
|
270
261
|
as a PNG
|
271
262
|
image.</p>
|
272
263
|
<div class="refsect3">
|
273
|
-
<a name="
|
274
|
-
<div class="informaltable"><table width="100%" border="0">
|
264
|
+
<a name="cairo-surface-write-to-png.parameters"></a><h4>Parameters</h4>
|
265
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
275
266
|
<colgroup>
|
276
267
|
<col width="150px" class="parameters_name">
|
277
268
|
<col class="parameters_description">
|
@@ -292,7 +283,7 @@ image.</p>
|
|
292
283
|
</table></div>
|
293
284
|
</div>
|
294
285
|
<div class="refsect3">
|
295
|
-
<a name="
|
286
|
+
<a name="cairo-surface-write-to-png.returns"></a><h4>Returns</h4>
|
296
287
|
<p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
|
297
288
|
successfully. Otherwise, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> if memory could not
|
298
289
|
be allocated for the operation or
|
@@ -300,9 +291,8 @@ be allocated for the operation or
|
|
300
291
|
pixel contents, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> if an I/O error occurs
|
301
292
|
while attempting to write the file, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PNG-ERROR:CAPS"><code class="literal">CAIRO_STATUS_PNG_ERROR</code></a> if libpng
|
302
293
|
returned an error.</p>
|
303
|
-
<p></p>
|
304
294
|
</div>
|
305
|
-
<p class="since">Since 1.0</p>
|
295
|
+
<p class="since">Since: 1.0</p>
|
306
296
|
</div>
|
307
297
|
<hr>
|
308
298
|
<div class="refsect2">
|
@@ -319,8 +309,8 @@ data in bytes. The write function should return
|
|
319
309
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully written,
|
320
310
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> otherwise.</p>
|
321
311
|
<div class="refsect3">
|
322
|
-
<a name="
|
323
|
-
<div class="informaltable"><table width="100%" border="0">
|
312
|
+
<a name="cairo-write-func-t.parameters"></a><h4>Parameters</h4>
|
313
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
324
314
|
<colgroup>
|
325
315
|
<col width="150px" class="parameters_name">
|
326
316
|
<col class="parameters_description">
|
@@ -346,11 +336,10 @@ data in bytes. The write function should return
|
|
346
336
|
</table></div>
|
347
337
|
</div>
|
348
338
|
<div class="refsect3">
|
349
|
-
<a name="
|
339
|
+
<a name="cairo-write-func-t.returns"></a><h4>Returns</h4>
|
350
340
|
<p> the status code of the write operation</p>
|
351
|
-
<p></p>
|
352
341
|
</div>
|
353
|
-
<p class="since">Since 1.0</p>
|
342
|
+
<p class="since">Since: 1.0</p>
|
354
343
|
</div>
|
355
344
|
<hr>
|
356
345
|
<div class="refsect2">
|
@@ -361,8 +350,8 @@ cairo_surface_write_to_png_stream (<em class="parameter"><code><a class="link" h
|
|
361
350
|
<em class="parameter"><code><span class="type">void</span> *closure</code></em>);</pre>
|
362
351
|
<p>Writes the image surface to the write function.</p>
|
363
352
|
<div class="refsect3">
|
364
|
-
<a name="
|
365
|
-
<div class="informaltable"><table width="100%" border="0">
|
353
|
+
<a name="cairo-surface-write-to-png-stream.parameters"></a><h4>Parameters</h4>
|
354
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
366
355
|
<colgroup>
|
367
356
|
<col width="150px" class="parameters_name">
|
368
357
|
<col class="parameters_description">
|
@@ -388,16 +377,15 @@ cairo_surface_write_to_png_stream (<em class="parameter"><code><a class="link" h
|
|
388
377
|
</table></div>
|
389
378
|
</div>
|
390
379
|
<div class="refsect3">
|
391
|
-
<a name="
|
380
|
+
<a name="cairo-surface-write-to-png-stream.returns"></a><h4>Returns</h4>
|
392
381
|
<p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
|
393
382
|
successfully. Otherwise, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> is returned if
|
394
383
|
memory could not be allocated for the operation,
|
395
384
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_SURFACE_TYPE_MISMATCH</code></a> if the surface does not have
|
396
385
|
pixel contents, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PNG-ERROR:CAPS"><code class="literal">CAIRO_STATUS_PNG_ERROR</code></a> if libpng
|
397
386
|
returned an error.</p>
|
398
|
-
<p></p>
|
399
387
|
</div>
|
400
|
-
<p class="since">Since 1.0</p>
|
388
|
+
<p class="since">Since: 1.0</p>
|
401
389
|
</div>
|
402
390
|
</div>
|
403
391
|
<div class="refsect1">
|
@@ -409,7 +397,7 @@ returned an error.</p>
|
|
409
397
|
<p>Defined if the PNG functions are available.
|
410
398
|
This macro can be used to conditionally compile code using the cairo
|
411
399
|
PNG functions.</p>
|
412
|
-
<p class="since">Since 1.0</p>
|
400
|
+
<p class="since">Since: 1.0</p>
|
413
401
|
</div>
|
414
402
|
</div>
|
415
403
|
<div class="refsect1">
|
@@ -418,7 +406,6 @@ PNG functions.</p>
|
|
418
406
|
</div>
|
419
407
|
</div>
|
420
408
|
<div class="footer">
|
421
|
-
<hr>
|
422
|
-
Generated by GTK-Doc V1.20</div>
|
409
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
423
410
|
</body>
|
424
411
|
</html>
|
@@ -2,21 +2,20 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Cairo: A Vector Graphics Library
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.
|
5
|
+
<title>Paths: Cairo: A Vector Graphics Library</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
7
|
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
8
|
<link rel="up" href="cairo-drawing.html" title="Drawing">
|
9
9
|
<link rel="prev" href="cairo-cairo-t.html" title="cairo_t">
|
10
10
|
<link rel="next" href="cairo-cairo-pattern-t.html" title="cairo_pattern_t">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
16
|
<td width="100%" align="left" class="shortcuts">
|
17
|
-
<a href="#" class="shortcut">Top</a><span id="nav_description">
|
18
|
-
<a href="#cairo-Paths.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Paths.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#cairo-Paths.description" class="shortcut">Description</a></span>
|
20
19
|
</td>
|
21
20
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
21
|
<td><a accesskey="u" href="cairo-drawing.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
@@ -34,7 +33,7 @@
|
|
34
33
|
</tr></table></div>
|
35
34
|
<div class="refsect1">
|
36
35
|
<a name="cairo-Paths.functions"></a><h2>Functions</h2>
|
37
|
-
<div class="informaltable"><table width="100%" border="0">
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
38
37
|
<colgroup>
|
39
38
|
<col width="150px" class="functions_return">
|
40
39
|
<col class="functions_name">
|
@@ -213,7 +212,7 @@
|
|
213
212
|
</div>
|
214
213
|
<div class="refsect1">
|
215
214
|
<a name="cairo-Paths.other"></a><h2>Types and Values</h2>
|
216
|
-
<div class="informaltable"><table width="100%" border="0">
|
215
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
217
216
|
<colgroup>
|
218
217
|
<col width="150px" class="name">
|
219
218
|
<col class="description">
|
@@ -235,11 +234,6 @@
|
|
235
234
|
</table></div>
|
236
235
|
</div>
|
237
236
|
<div class="refsect1">
|
238
|
-
<a name="cairo-Paths.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
239
|
-
<pre class="screen">
|
240
|
-
</pre>
|
241
|
-
</div>
|
242
|
-
<div class="refsect1">
|
243
237
|
<a name="cairo-Paths.description"></a><h2>Description</h2>
|
244
238
|
<p>Paths are the most basic drawing tools and are primarily used to implicitly
|
245
239
|
generate simple masks.</p>
|
@@ -266,8 +260,8 @@ conditions hold:</p>
|
|
266
260
|
would be returned by <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</li>
|
267
261
|
</ol></div>
|
268
262
|
<div class="refsect3">
|
269
|
-
<a name="
|
270
|
-
<div class="informaltable"><table width="100%" border="0">
|
263
|
+
<a name="cairo-copy-path.parameters"></a><h4>Parameters</h4>
|
264
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
271
265
|
<colgroup>
|
272
266
|
<col width="150px" class="parameters_name">
|
273
267
|
<col class="parameters_description">
|
@@ -281,13 +275,12 @@ conditions hold:</p>
|
|
281
275
|
</table></div>
|
282
276
|
</div>
|
283
277
|
<div class="refsect3">
|
284
|
-
<a name="
|
278
|
+
<a name="cairo-copy-path.returns"></a><h4>Returns</h4>
|
285
279
|
<p> the copy of the current path. The caller owns the
|
286
280
|
returned object and should call <a class="link" href="cairo-Paths.html#cairo-path-destroy" title="cairo_path_destroy ()"><code class="function">cairo_path_destroy()</code></a> when finished
|
287
281
|
with it.</p>
|
288
|
-
<p></p>
|
289
282
|
</div>
|
290
|
-
<p class="since">Since 1.0</p>
|
283
|
+
<p class="since">Since: 1.0</p>
|
291
284
|
</div>
|
292
285
|
<hr>
|
293
286
|
<div class="refsect2">
|
@@ -316,8 +309,8 @@ conditions hold:</p>
|
|
316
309
|
would be returned by <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</li>
|
317
310
|
</ol></div>
|
318
311
|
<div class="refsect3">
|
319
|
-
<a name="
|
320
|
-
<div class="informaltable"><table width="100%" border="0">
|
312
|
+
<a name="cairo-copy-path-flat.parameters"></a><h4>Parameters</h4>
|
313
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
321
314
|
<colgroup>
|
322
315
|
<col width="150px" class="parameters_name">
|
323
316
|
<col class="parameters_description">
|
@@ -331,13 +324,12 @@ conditions hold:</p>
|
|
331
324
|
</table></div>
|
332
325
|
</div>
|
333
326
|
<div class="refsect3">
|
334
|
-
<a name="
|
327
|
+
<a name="cairo-copy-path-flat.returns"></a><h4>Returns</h4>
|
335
328
|
<p> the copy of the current path. The caller owns the
|
336
329
|
returned object and should call <a class="link" href="cairo-Paths.html#cairo-path-destroy" title="cairo_path_destroy ()"><code class="function">cairo_path_destroy()</code></a> when finished
|
337
330
|
with it.</p>
|
338
|
-
<p></p>
|
339
331
|
</div>
|
340
|
-
<p class="since">Since 1.0</p>
|
332
|
+
<p class="since">Since: 1.0</p>
|
341
333
|
</div>
|
342
334
|
<hr>
|
343
335
|
<div class="refsect2">
|
@@ -354,8 +346,8 @@ pointer to a <a class="link" href="cairo-Paths.html#cairo-path-t" title="cairo_p
|
|
354
346
|
that is created manually (ie. outside of cairo) should be destroyed
|
355
347
|
manually as well.</p>
|
356
348
|
<div class="refsect3">
|
357
|
-
<a name="
|
358
|
-
<div class="informaltable"><table width="100%" border="0">
|
349
|
+
<a name="cairo-path-destroy.parameters"></a><h4>Parameters</h4>
|
350
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
359
351
|
<colgroup>
|
360
352
|
<col width="150px" class="parameters_name">
|
361
353
|
<col class="parameters_description">
|
@@ -369,7 +361,7 @@ manually as well.</p>
|
|
369
361
|
</tr></tbody>
|
370
362
|
</table></div>
|
371
363
|
</div>
|
372
|
-
<p class="since">Since 1.0</p>
|
364
|
+
<p class="since">Since: 1.0</p>
|
373
365
|
</div>
|
374
366
|
<hr>
|
375
367
|
<div class="refsect2">
|
@@ -386,8 +378,8 @@ return value from one of <a class="link" href="cairo-Paths.html#cairo-copy-path"
|
|
386
378
|
initialized, and note that <code class="literal">path->status</code> must be
|
387
379
|
initialized to <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a>.</p>
|
388
380
|
<div class="refsect3">
|
389
|
-
<a name="
|
390
|
-
<div class="informaltable"><table width="100%" border="0">
|
381
|
+
<a name="cairo-append-path.parameters"></a><h4>Parameters</h4>
|
382
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
391
383
|
<colgroup>
|
392
384
|
<col width="150px" class="parameters_name">
|
393
385
|
<col class="parameters_description">
|
@@ -407,7 +399,7 @@ initialized to <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCC
|
|
407
399
|
</tbody>
|
408
400
|
</table></div>
|
409
401
|
</div>
|
410
|
-
<p class="since">Since 1.0</p>
|
402
|
+
<p class="since">Since: 1.0</p>
|
411
403
|
</div>
|
412
404
|
<hr>
|
413
405
|
<div class="refsect2">
|
@@ -417,8 +409,8 @@ cairo_has_current_point (<em class="parameter"><code><a class="link" href="cairo
|
|
417
409
|
<p>Returns whether a current point is defined on the current path.
|
418
410
|
See <a class="link" href="cairo-Paths.html#cairo-get-current-point" title="cairo_get_current_point ()"><code class="function">cairo_get_current_point()</code></a> for details on the current point.</p>
|
419
411
|
<div class="refsect3">
|
420
|
-
<a name="
|
421
|
-
<div class="informaltable"><table width="100%" border="0">
|
412
|
+
<a name="cairo-has-current-point.parameters"></a><h4>Parameters</h4>
|
413
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
422
414
|
<colgroup>
|
423
415
|
<col width="150px" class="parameters_name">
|
424
416
|
<col class="parameters_description">
|
@@ -432,11 +424,10 @@ See <a class="link" href="cairo-Paths.html#cairo-get-current-point" title="cairo
|
|
432
424
|
</table></div>
|
433
425
|
</div>
|
434
426
|
<div class="refsect3">
|
435
|
-
<a name="
|
427
|
+
<a name="cairo-has-current-point.returns"></a><h4>Returns</h4>
|
436
428
|
<p> whether a current point is defined.</p>
|
437
|
-
<p></p>
|
438
429
|
</div>
|
439
|
-
<p class="since">Since 1.6</p>
|
430
|
+
<p class="since">Since: 1.6</p>
|
440
431
|
</div>
|
441
432
|
<hr>
|
442
433
|
<div class="refsect2">
|
@@ -468,8 +459,8 @@ otherwise change current path:
|
|
468
459
|
<p>Some functions unset the current path and as a result, current point:
|
469
460
|
<a class="link" href="cairo-cairo-t.html#cairo-fill" title="cairo_fill ()"><code class="function">cairo_fill()</code></a>, <a class="link" href="cairo-cairo-t.html#cairo-stroke" title="cairo_stroke ()"><code class="function">cairo_stroke()</code></a>.</p>
|
470
461
|
<div class="refsect3">
|
471
|
-
<a name="
|
472
|
-
<div class="informaltable"><table width="100%" border="0">
|
462
|
+
<a name="cairo-get-current-point.parameters"></a><h4>Parameters</h4>
|
463
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
473
464
|
<colgroup>
|
474
465
|
<col width="150px" class="parameters_name">
|
475
466
|
<col class="parameters_description">
|
@@ -494,7 +485,7 @@ otherwise change current path:
|
|
494
485
|
</tbody>
|
495
486
|
</table></div>
|
496
487
|
</div>
|
497
|
-
<p class="since">Since 1.0</p>
|
488
|
+
<p class="since">Since: 1.0</p>
|
498
489
|
</div>
|
499
490
|
<hr>
|
500
491
|
<div class="refsect2">
|
@@ -504,8 +495,8 @@ cairo_new_path (<em class="parameter"><code><a class="link" href="cairo-cairo-t.
|
|
504
495
|
<p>Clears the current path. After this call there will be no path and
|
505
496
|
no current point.</p>
|
506
497
|
<div class="refsect3">
|
507
|
-
<a name="
|
508
|
-
<div class="informaltable"><table width="100%" border="0">
|
498
|
+
<a name="cairo-new-path.parameters"></a><h4>Parameters</h4>
|
499
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
509
500
|
<colgroup>
|
510
501
|
<col width="150px" class="parameters_name">
|
511
502
|
<col class="parameters_description">
|
@@ -518,7 +509,7 @@ no current point.</p>
|
|
518
509
|
</tr></tbody>
|
519
510
|
</table></div>
|
520
511
|
</div>
|
521
|
-
<p class="since">Since 1.0</p>
|
512
|
+
<p class="since">Since: 1.0</p>
|
522
513
|
</div>
|
523
514
|
<hr>
|
524
515
|
<div class="refsect2">
|
@@ -535,8 +526,8 @@ makes things easier as it is no longer necessary to manually
|
|
535
526
|
compute the arc's initial coordinates for a call to
|
536
527
|
<a class="link" href="cairo-Paths.html#cairo-move-to" title="cairo_move_to ()"><code class="function">cairo_move_to()</code></a>.</p>
|
537
528
|
<div class="refsect3">
|
538
|
-
<a name="
|
539
|
-
<div class="informaltable"><table width="100%" border="0">
|
529
|
+
<a name="cairo-new-sub-path.parameters"></a><h4>Parameters</h4>
|
530
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
540
531
|
<colgroup>
|
541
532
|
<col width="150px" class="parameters_name">
|
542
533
|
<col class="parameters_description">
|
@@ -549,7 +540,7 @@ compute the arc's initial coordinates for a call to
|
|
549
540
|
</tr></tbody>
|
550
541
|
</table></div>
|
551
542
|
</div>
|
552
|
-
<p class="since">Since 1.2</p>
|
543
|
+
<p class="since">Since: 1.2</p>
|
553
544
|
</div>
|
554
545
|
<hr>
|
555
546
|
<div class="refsect2">
|
@@ -575,8 +566,8 @@ not be necessary to save the "last move_to point" during processing
|
|
575
566
|
as the MOVE_TO immediately after the CLOSE_PATH will provide that
|
576
567
|
point.</p>
|
577
568
|
<div class="refsect3">
|
578
|
-
<a name="
|
579
|
-
<div class="informaltable"><table width="100%" border="0">
|
569
|
+
<a name="cairo-close-path.parameters"></a><h4>Parameters</h4>
|
570
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
580
571
|
<colgroup>
|
581
572
|
<col width="150px" class="parameters_name">
|
582
573
|
<col class="parameters_description">
|
@@ -589,7 +580,7 @@ point.</p>
|
|
589
580
|
</tr></tbody>
|
590
581
|
</table></div>
|
591
582
|
</div>
|
592
|
-
<p class="since">Since 1.0</p>
|
583
|
+
<p class="since">Since: 1.0</p>
|
593
584
|
</div>
|
594
585
|
<hr>
|
595
586
|
<div class="refsect2">
|
@@ -646,8 +637,8 @@ cairo_arc (cr, 0., 0., 1., 0., 2 * M_PI);
|
|
646
637
|
cairo_restore (cr);
|
647
638
|
</pre></div>
|
648
639
|
<div class="refsect3">
|
649
|
-
<a name="
|
650
|
-
<div class="informaltable"><table width="100%" border="0">
|
640
|
+
<a name="cairo-arc.parameters"></a><h4>Parameters</h4>
|
641
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
651
642
|
<colgroup>
|
652
643
|
<col width="150px" class="parameters_name">
|
653
644
|
<col class="parameters_description">
|
@@ -687,7 +678,7 @@ cairo_restore (cr);
|
|
687
678
|
</tbody>
|
688
679
|
</table></div>
|
689
680
|
</div>
|
690
|
-
<p class="since">Since 1.0</p>
|
681
|
+
<p class="since">Since: 1.0</p>
|
691
682
|
</div>
|
692
683
|
<hr>
|
693
684
|
<div class="refsect2">
|
@@ -715,8 +706,8 @@ greater than <em class="parameter"><code>angle1</code></em>
|
|
715
706
|
<p>See <a class="link" href="cairo-Paths.html#cairo-arc" title="cairo_arc ()"><code class="function">cairo_arc()</code></a> for more details. This function differs only in the
|
716
707
|
direction of the arc between the two angles.</p>
|
717
708
|
<div class="refsect3">
|
718
|
-
<a name="
|
719
|
-
<div class="informaltable"><table width="100%" border="0">
|
709
|
+
<a name="cairo-arc-negative.parameters"></a><h4>Parameters</h4>
|
710
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
720
711
|
<colgroup>
|
721
712
|
<col width="150px" class="parameters_name">
|
722
713
|
<col class="parameters_description">
|
@@ -756,7 +747,7 @@ direction of the arc between the two angles.</p>
|
|
756
747
|
</tbody>
|
757
748
|
</table></div>
|
758
749
|
</div>
|
759
|
-
<p class="since">Since 1.0</p>
|
750
|
+
<p class="since">Since: 1.0</p>
|
760
751
|
</div>
|
761
752
|
<hr>
|
762
753
|
<div class="refsect2">
|
@@ -788,8 +779,8 @@ cairo_move_to(<em class="parameter"><code>cr</code></em>
|
|
788
779
|
, <em class="parameter"><code>y1</code></em>
|
789
780
|
).</p>
|
790
781
|
<div class="refsect3">
|
791
|
-
<a name="
|
792
|
-
<div class="informaltable"><table width="100%" border="0">
|
782
|
+
<a name="cairo-curve-to.parameters"></a><h4>Parameters</h4>
|
783
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
793
784
|
<colgroup>
|
794
785
|
<col width="150px" class="parameters_name">
|
795
786
|
<col class="parameters_description">
|
@@ -834,7 +825,7 @@ cairo_move_to(<em class="parameter"><code>cr</code></em>
|
|
834
825
|
</tbody>
|
835
826
|
</table></div>
|
836
827
|
</div>
|
837
|
-
<p class="since">Since 1.0</p>
|
828
|
+
<p class="since">Since: 1.0</p>
|
838
829
|
</div>
|
839
830
|
<hr>
|
840
831
|
<div class="refsect2">
|
@@ -856,8 +847,8 @@ this function will behave as cairo_move_to(<em class="parameter"><code>cr</code>
|
|
856
847
|
, <em class="parameter"><code>y</code></em>
|
857
848
|
).</p>
|
858
849
|
<div class="refsect3">
|
859
|
-
<a name="
|
860
|
-
<div class="informaltable"><table width="100%" border="0">
|
850
|
+
<a name="cairo-line-to.parameters"></a><h4>Parameters</h4>
|
851
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
861
852
|
<colgroup>
|
862
853
|
<col width="150px" class="parameters_name">
|
863
854
|
<col class="parameters_description">
|
@@ -882,7 +873,7 @@ this function will behave as cairo_move_to(<em class="parameter"><code>cr</code>
|
|
882
873
|
</tbody>
|
883
874
|
</table></div>
|
884
875
|
</div>
|
885
|
-
<p class="since">Since 1.0</p>
|
876
|
+
<p class="since">Since: 1.0</p>
|
886
877
|
</div>
|
887
878
|
<hr>
|
888
879
|
<div class="refsect2">
|
@@ -896,8 +887,8 @@ cairo_move_to (<em class="parameter"><code><a class="link" href="cairo-cairo-t.h
|
|
896
887
|
<em class="parameter"><code>y</code></em>
|
897
888
|
).</p>
|
898
889
|
<div class="refsect3">
|
899
|
-
<a name="
|
900
|
-
<div class="informaltable"><table width="100%" border="0">
|
890
|
+
<a name="cairo-move-to.parameters"></a><h4>Parameters</h4>
|
891
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
901
892
|
<colgroup>
|
902
893
|
<col width="150px" class="parameters_name">
|
903
894
|
<col class="parameters_description">
|
@@ -922,7 +913,7 @@ cairo_move_to (<em class="parameter"><code><a class="link" href="cairo-cairo-t.h
|
|
922
913
|
</tbody>
|
923
914
|
</table></div>
|
924
915
|
</div>
|
925
|
-
<p class="since">Since 1.0</p>
|
916
|
+
<p class="since">Since: 1.0</p>
|
926
917
|
</div>
|
927
918
|
<hr>
|
928
919
|
<div class="refsect2">
|
@@ -946,8 +937,8 @@ cairo_rel_line_to (cr, -width, 0);
|
|
946
937
|
cairo_close_path (cr);
|
947
938
|
</pre></div>
|
948
939
|
<div class="refsect3">
|
949
|
-
<a name="
|
950
|
-
<div class="informaltable"><table width="100%" border="0">
|
940
|
+
<a name="cairo-rectangle.parameters"></a><h4>Parameters</h4>
|
941
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
951
942
|
<colgroup>
|
952
943
|
<col width="150px" class="parameters_name">
|
953
944
|
<col class="parameters_description">
|
@@ -982,7 +973,7 @@ cairo_close_path (cr);
|
|
982
973
|
</tbody>
|
983
974
|
</table></div>
|
984
975
|
</div>
|
985
|
-
<p class="since">Since 1.0</p>
|
976
|
+
<p class="since">Since: 1.0</p>
|
986
977
|
</div>
|
987
978
|
<hr>
|
988
979
|
<div class="refsect2">
|
@@ -995,8 +986,8 @@ cairo_glyph_path (<em class="parameter"><code><a class="link" href="cairo-cairo-
|
|
995
986
|
path if filled, achieves an effect similar to that of
|
996
987
|
<a class="link" href="cairo-text.html#cairo-show-glyphs" title="cairo_show_glyphs ()"><code class="function">cairo_show_glyphs()</code></a>.</p>
|
997
988
|
<div class="refsect3">
|
998
|
-
<a name="
|
999
|
-
<div class="informaltable"><table width="100%" border="0">
|
989
|
+
<a name="cairo-glyph-path.parameters"></a><h4>Parameters</h4>
|
990
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1000
991
|
<colgroup>
|
1001
992
|
<col width="150px" class="parameters_name">
|
1002
993
|
<col class="parameters_description">
|
@@ -1021,7 +1012,7 @@ path if filled, achieves an effect similar to that of
|
|
1021
1012
|
</tbody>
|
1022
1013
|
</table></div>
|
1023
1014
|
</div>
|
1024
|
-
<p class="since">Since 1.0</p>
|
1015
|
+
<p class="since">Since: 1.0</p>
|
1025
1016
|
</div>
|
1026
1017
|
<hr>
|
1027
1018
|
<div class="refsect2">
|
@@ -1045,8 +1036,8 @@ and simple programs, but it is not expected to be adequate for
|
|
1045
1036
|
serious text-using applications. See <a class="link" href="cairo-Paths.html#cairo-glyph-path" title="cairo_glyph_path ()"><code class="function">cairo_glyph_path()</code></a> for the
|
1046
1037
|
"real" text path API in cairo.</p>
|
1047
1038
|
<div class="refsect3">
|
1048
|
-
<a name="
|
1049
|
-
<div class="informaltable"><table width="100%" border="0">
|
1039
|
+
<a name="cairo-text-path.parameters"></a><h4>Parameters</h4>
|
1040
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1050
1041
|
<colgroup>
|
1051
1042
|
<col width="150px" class="parameters_name">
|
1052
1043
|
<col class="parameters_description">
|
@@ -1066,7 +1057,7 @@ serious text-using applications. See <a class="link" href="cairo-Paths.html#cair
|
|
1066
1057
|
</tbody>
|
1067
1058
|
</table></div>
|
1068
1059
|
</div>
|
1069
|
-
<p class="since">Since 1.0</p>
|
1060
|
+
<p class="since">Since: 1.0</p>
|
1070
1061
|
</div>
|
1071
1062
|
<hr>
|
1072
1063
|
<div class="refsect2">
|
@@ -1115,8 +1106,8 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1115
1106
|
to shutdown with a status of
|
1116
1107
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-CURRENT-POINT:CAPS"><code class="literal">CAIRO_STATUS_NO_CURRENT_POINT</code></a>.</p>
|
1117
1108
|
<div class="refsect3">
|
1118
|
-
<a name="
|
1119
|
-
<div class="informaltable"><table width="100%" border="0">
|
1109
|
+
<a name="cairo-rel-curve-to.parameters"></a><h4>Parameters</h4>
|
1110
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1120
1111
|
<colgroup>
|
1121
1112
|
<col width="150px" class="parameters_name">
|
1122
1113
|
<col class="parameters_description">
|
@@ -1161,7 +1152,7 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1161
1152
|
</tbody>
|
1162
1153
|
</table></div>
|
1163
1154
|
</div>
|
1164
|
-
<p class="since">Since 1.0</p>
|
1155
|
+
<p class="since">Since: 1.0</p>
|
1165
1156
|
</div>
|
1166
1157
|
<hr>
|
1167
1158
|
<div class="refsect2">
|
@@ -1191,8 +1182,8 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1191
1182
|
to shutdown with a status of
|
1192
1183
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-CURRENT-POINT:CAPS"><code class="literal">CAIRO_STATUS_NO_CURRENT_POINT</code></a>.</p>
|
1193
1184
|
<div class="refsect3">
|
1194
|
-
<a name="
|
1195
|
-
<div class="informaltable"><table width="100%" border="0">
|
1185
|
+
<a name="cairo-rel-line-to.parameters"></a><h4>Parameters</h4>
|
1186
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1196
1187
|
<colgroup>
|
1197
1188
|
<col width="150px" class="parameters_name">
|
1198
1189
|
<col class="parameters_description">
|
@@ -1217,7 +1208,7 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1217
1208
|
</tbody>
|
1218
1209
|
</table></div>
|
1219
1210
|
</div>
|
1220
|
-
<p class="since">Since 1.0</p>
|
1211
|
+
<p class="since">Since: 1.0</p>
|
1221
1212
|
</div>
|
1222
1213
|
<hr>
|
1223
1214
|
<div class="refsect2">
|
@@ -1243,8 +1234,8 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1243
1234
|
to shutdown with a status of
|
1244
1235
|
<a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-CURRENT-POINT:CAPS"><code class="literal">CAIRO_STATUS_NO_CURRENT_POINT</code></a>.</p>
|
1245
1236
|
<div class="refsect3">
|
1246
|
-
<a name="
|
1247
|
-
<div class="informaltable"><table width="100%" border="0">
|
1237
|
+
<a name="cairo-rel-move-to.parameters"></a><h4>Parameters</h4>
|
1238
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1248
1239
|
<colgroup>
|
1249
1240
|
<col width="150px" class="parameters_name">
|
1250
1241
|
<col class="parameters_description">
|
@@ -1269,7 +1260,7 @@ so will cause <em class="parameter"><code>cr</code></em>
|
|
1269
1260
|
</tbody>
|
1270
1261
|
</table></div>
|
1271
1262
|
</div>
|
1272
|
-
<p class="since">Since 1.0</p>
|
1263
|
+
<p class="since">Since: 1.0</p>
|
1273
1264
|
</div>
|
1274
1265
|
<hr>
|
1275
1266
|
<div class="refsect2">
|
@@ -1298,8 +1289,8 @@ considered as contributing to the extents. However, a lone
|
|
1298
1289
|
<a class="link" href="cairo-Paths.html#cairo-move-to" title="cairo_move_to ()"><code class="function">cairo_move_to()</code></a> will not contribute to the results of
|
1299
1290
|
<a class="link" href="cairo-Paths.html#cairo-path-extents" title="cairo_path_extents ()"><code class="function">cairo_path_extents()</code></a>.</p>
|
1300
1291
|
<div class="refsect3">
|
1301
|
-
<a name="
|
1302
|
-
<div class="informaltable"><table width="100%" border="0">
|
1292
|
+
<a name="cairo-path-extents.parameters"></a><h4>Parameters</h4>
|
1293
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1303
1294
|
<colgroup>
|
1304
1295
|
<col width="150px" class="parameters_name">
|
1305
1296
|
<col class="parameters_description">
|
@@ -1334,7 +1325,7 @@ considered as contributing to the extents. However, a lone
|
|
1334
1325
|
</tbody>
|
1335
1326
|
</table></div>
|
1336
1327
|
</div>
|
1337
|
-
<p class="since">Since 1.6</p>
|
1328
|
+
<p class="since">Since: 1.6</p>
|
1338
1329
|
</div>
|
1339
1330
|
</div>
|
1340
1331
|
<div class="refsect1">
|
@@ -1358,8 +1349,8 @@ array. This number is larger than the number of independent path
|
|
1358
1349
|
portions (defined in <a class="link" href="cairo-Paths.html#cairo-path-data-type-t" title="enum cairo_path_data_type_t"><span class="type">cairo_path_data_type_t</span></a>), since the data
|
1359
1350
|
includes both headers and coordinates for each portion.</p>
|
1360
1351
|
<div class="refsect3">
|
1361
|
-
<a name="
|
1362
|
-
<div class="informaltable"><table width="100%" border="0">
|
1352
|
+
<a name="cairo-path-t.members"></a><h4>Members</h4>
|
1353
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1363
1354
|
<colgroup>
|
1364
1355
|
<col width="300px" class="struct_members_name">
|
1365
1356
|
<col class="struct_members_description">
|
@@ -1384,7 +1375,7 @@ includes both headers and coordinates for each portion.</p>
|
|
1384
1375
|
</tbody>
|
1385
1376
|
</table></div>
|
1386
1377
|
</div>
|
1387
|
-
<p class="since">Since 1.0</p>
|
1378
|
+
<p class="since">Since: 1.0</p>
|
1388
1379
|
</div>
|
1389
1380
|
<hr>
|
1390
1381
|
<div class="refsect2">
|
@@ -1444,7 +1435,7 @@ structure. For this reason, it is recommended that applications
|
|
1444
1435
|
always use <code class="literal">data->header.length</code> to
|
1445
1436
|
iterate over the path data, instead of hardcoding the number of
|
1446
1437
|
elements for each element type.</p>
|
1447
|
-
<p class="since">Since 1.0</p>
|
1438
|
+
<p class="since">Since: 1.0</p>
|
1448
1439
|
</div>
|
1449
1440
|
<hr>
|
1450
1441
|
<div class="refsect2">
|
@@ -1453,8 +1444,8 @@ elements for each element type.</p>
|
|
1453
1444
|
of a path when represented as a <a class="link" href="cairo-Paths.html#cairo-path-t" title="cairo_path_t"><span class="type">cairo_path_t</span></a>.
|
1454
1445
|
See <a class="link" href="cairo-Paths.html#cairo-path-data-t" title="union cairo_path_data_t"><span class="type">cairo_path_data_t</span></a> for details.</p>
|
1455
1446
|
<div class="refsect3">
|
1456
|
-
<a name="
|
1457
|
-
<div class="informaltable"><table width="100%" border="0">
|
1447
|
+
<a name="cairo-path-data-type-t.members"></a><h4>Members</h4>
|
1448
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
1458
1449
|
<colgroup>
|
1459
1450
|
<col width="300px" class="enum_members_name">
|
1460
1451
|
<col class="enum_members_description">
|
@@ -1492,12 +1483,11 @@ See <a class="link" href="cairo-Paths.html#cairo-path-data-t" title="union cairo
|
|
1492
1483
|
</tbody>
|
1493
1484
|
</table></div>
|
1494
1485
|
</div>
|
1495
|
-
<p class="since">Since 1.0</p>
|
1486
|
+
<p class="since">Since: 1.0</p>
|
1496
1487
|
</div>
|
1497
1488
|
</div>
|
1498
1489
|
</div>
|
1499
1490
|
<div class="footer">
|
1500
|
-
<hr>
|
1501
|
-
Generated by GTK-Doc V1.20</div>
|
1491
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
1502
1492
|
</body>
|
1503
1493
|
</html>
|