cairo 1.15.9-x64-mingw32 → 1.15.10-x64-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>PostScript Surfaces: 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-PNG-Support.html" title="PNG Support">
|
10
10
|
<link rel="next" href="cairo-Recording-Surfaces.html" title="Recording 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-PostScript-Surfaces.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-PostScript-Surfaces.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-PostScript-Surfaces.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-PostScript-Surfaces.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">
|
@@ -132,7 +131,7 @@
|
|
132
131
|
</div>
|
133
132
|
<div class="refsect1">
|
134
133
|
<a name="cairo-PostScript-Surfaces.other"></a><h2>Types and Values</h2>
|
135
|
-
<div class="informaltable"><table width="100%" border="0">
|
134
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
136
135
|
<colgroup>
|
137
136
|
<col width="150px" class="name">
|
138
137
|
<col class="description">
|
@@ -150,11 +149,6 @@
|
|
150
149
|
</table></div>
|
151
150
|
</div>
|
152
151
|
<div class="refsect1">
|
153
|
-
<a name="cairo-PostScript-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
154
|
-
<pre class="screen">
|
155
|
-
</pre>
|
156
|
-
</div>
|
157
|
-
<div class="refsect1">
|
158
152
|
<a name="cairo-PostScript-Surfaces.description"></a><h2>Description</h2>
|
159
153
|
<p>The PostScript surface is used to render cairo graphics to Adobe
|
160
154
|
PostScript files and is a multi-page vector surface backend.</p>
|
@@ -175,8 +169,8 @@ simply writing it to a named file.</p>
|
|
175
169
|
<p>Note that the size of individual pages of the PostScript output can
|
176
170
|
vary. See <a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-set-size" title="cairo_ps_surface_set_size ()"><code class="function">cairo_ps_surface_set_size()</code></a>.</p>
|
177
171
|
<div class="refsect3">
|
178
|
-
<a name="
|
179
|
-
<div class="informaltable"><table width="100%" border="0">
|
172
|
+
<a name="cairo-ps-surface-create.parameters"></a><h4>Parameters</h4>
|
173
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
180
174
|
<colgroup>
|
181
175
|
<col width="150px" class="parameters_name">
|
182
176
|
<col class="parameters_description">
|
@@ -205,16 +199,15 @@ temporary file.</p></td>
|
|
205
199
|
</table></div>
|
206
200
|
</div>
|
207
201
|
<div class="refsect3">
|
208
|
-
<a name="
|
202
|
+
<a name="cairo-ps-surface-create.returns"></a><h4>Returns</h4>
|
209
203
|
<p> a pointer to the newly created surface. The caller
|
210
204
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
211
205
|
with it.</p>
|
212
206
|
<p>This function always returns a valid pointer, but it will return a
|
213
207
|
pointer to a "nil" surface if an error such as out of memory
|
214
208
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
215
|
-
<p></p>
|
216
209
|
</div>
|
217
|
-
<p class="since">Since 1.2</p>
|
210
|
+
<p class="since">Since: 1.2</p>
|
218
211
|
</div>
|
219
212
|
<hr>
|
220
213
|
<div class="refsect2">
|
@@ -233,8 +226,8 @@ to simply direct the PostScript output to a named file.</p>
|
|
233
226
|
<p>Note that the size of individual pages of the PostScript
|
234
227
|
output can vary. See <a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-set-size" title="cairo_ps_surface_set_size ()"><code class="function">cairo_ps_surface_set_size()</code></a>.</p>
|
235
228
|
<div class="refsect3">
|
236
|
-
<a name="
|
237
|
-
<div class="informaltable"><table width="100%" border="0">
|
229
|
+
<a name="cairo-ps-surface-create-for-stream.parameters"></a><h4>Parameters</h4>
|
230
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
238
231
|
<colgroup>
|
239
232
|
<col width="150px" class="parameters_name">
|
240
233
|
<col class="parameters_description">
|
@@ -271,16 +264,15 @@ generating any temporary files.</p></td>
|
|
271
264
|
</table></div>
|
272
265
|
</div>
|
273
266
|
<div class="refsect3">
|
274
|
-
<a name="
|
267
|
+
<a name="cairo-ps-surface-create-for-stream.returns"></a><h4>Returns</h4>
|
275
268
|
<p> a pointer to the newly created surface. The caller
|
276
269
|
owns the surface and should call <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
277
270
|
with it.</p>
|
278
271
|
<p>This function always returns a valid pointer, but it will return a
|
279
272
|
pointer to a "nil" surface if an error such as out of memory
|
280
273
|
occurs. You can use <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.</p>
|
281
|
-
<p></p>
|
282
274
|
</div>
|
283
|
-
<p class="since">Since 1.2</p>
|
275
|
+
<p class="since">Since: 1.2</p>
|
284
276
|
</div>
|
285
277
|
<hr>
|
286
278
|
<div class="refsect2">
|
@@ -297,8 +289,8 @@ have been performed on the given surface. The simplest way to do
|
|
297
289
|
this is to call this function immediately after creating the
|
298
290
|
surface.</p>
|
299
291
|
<div class="refsect3">
|
300
|
-
<a name="
|
301
|
-
<div class="informaltable"><table width="100%" border="0">
|
292
|
+
<a name="cairo-ps-surface-restrict-to-level.parameters"></a><h4>Parameters</h4>
|
293
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
302
294
|
<colgroup>
|
303
295
|
<col width="150px" class="parameters_name">
|
304
296
|
<col class="parameters_description">
|
@@ -318,7 +310,7 @@ surface.</p>
|
|
318
310
|
</tbody>
|
319
311
|
</table></div>
|
320
312
|
</div>
|
321
|
-
<p class="since">Since 1.6</p>
|
313
|
+
<p class="since">Since: 1.6</p>
|
322
314
|
</div>
|
323
315
|
<hr>
|
324
316
|
<div class="refsect2">
|
@@ -329,8 +321,8 @@ cairo_ps_get_levels (<em class="parameter"><code><a class="link" href="cairo-Pos
|
|
329
321
|
<p>Used to retrieve the list of supported levels. See
|
330
322
|
<a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-restrict-to-level" title="cairo_ps_surface_restrict_to_level ()"><code class="function">cairo_ps_surface_restrict_to_level()</code></a>.</p>
|
331
323
|
<div class="refsect3">
|
332
|
-
<a name="
|
333
|
-
<div class="informaltable"><table width="100%" border="0">
|
324
|
+
<a name="cairo-ps-get-levels.parameters"></a><h4>Parameters</h4>
|
325
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
334
326
|
<colgroup>
|
335
327
|
<col width="150px" class="parameters_name">
|
336
328
|
<col class="parameters_description">
|
@@ -350,7 +342,7 @@ cairo_ps_get_levels (<em class="parameter"><code><a class="link" href="cairo-Pos
|
|
350
342
|
</tbody>
|
351
343
|
</table></div>
|
352
344
|
</div>
|
353
|
-
<p class="since">Since 1.6</p>
|
345
|
+
<p class="since">Since: 1.6</p>
|
354
346
|
</div>
|
355
347
|
<hr>
|
356
348
|
<div class="refsect2">
|
@@ -363,8 +355,8 @@ will return <code class="literal">NULL</code> if <em class="parameter"><code>lev
|
|
363
355
|
id isn't valid. See <a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-get-levels" title="cairo_ps_get_levels ()"><code class="function">cairo_ps_get_levels()</code></a>
|
364
356
|
for a way to get the list of valid level ids.</p>
|
365
357
|
<div class="refsect3">
|
366
|
-
<a name="
|
367
|
-
<div class="informaltable"><table width="100%" border="0">
|
358
|
+
<a name="cairo-ps-level-to-string.parameters"></a><h4>Parameters</h4>
|
359
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
368
360
|
<colgroup>
|
369
361
|
<col width="150px" class="parameters_name">
|
370
362
|
<col class="parameters_description">
|
@@ -378,11 +370,10 @@ for a way to get the list of valid level ids.</p>
|
|
378
370
|
</table></div>
|
379
371
|
</div>
|
380
372
|
<div class="refsect3">
|
381
|
-
<a name="
|
373
|
+
<a name="cairo-ps-level-to-string.returns"></a><h4>Returns</h4>
|
382
374
|
<p> the string associated to given level.</p>
|
383
|
-
<p></p>
|
384
375
|
</div>
|
385
|
-
<p class="since">Since 1.6</p>
|
376
|
+
<p class="since">Since: 1.6</p>
|
386
377
|
</div>
|
387
378
|
<hr>
|
388
379
|
<div class="refsect2">
|
@@ -399,8 +390,8 @@ this is to call this function immediately after creating the
|
|
399
390
|
surface. An Encapsulated PostScript file should never contain more
|
400
391
|
than one page.</p>
|
401
392
|
<div class="refsect3">
|
402
|
-
<a name="
|
403
|
-
<div class="informaltable"><table width="100%" border="0">
|
393
|
+
<a name="cairo-ps-surface-set-eps.parameters"></a><h4>Parameters</h4>
|
394
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
404
395
|
<colgroup>
|
405
396
|
<col width="150px" class="parameters_name">
|
406
397
|
<col class="parameters_description">
|
@@ -420,7 +411,7 @@ than one page.</p>
|
|
420
411
|
</tbody>
|
421
412
|
</table></div>
|
422
413
|
</div>
|
423
|
-
<p class="since">Since 1.6</p>
|
414
|
+
<p class="since">Since: 1.6</p>
|
424
415
|
</div>
|
425
416
|
<hr>
|
426
417
|
<div class="refsect2">
|
@@ -429,8 +420,8 @@ than one page.</p>
|
|
429
420
|
cairo_ps_surface_get_eps (<em class="parameter"><code><a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> *surface</code></em>);</pre>
|
430
421
|
<p>Check whether the PostScript surface will output Encapsulated PostScript.</p>
|
431
422
|
<div class="refsect3">
|
432
|
-
<a name="
|
433
|
-
<div class="informaltable"><table width="100%" border="0">
|
423
|
+
<a name="cairo-ps-surface-get-eps.parameters"></a><h4>Parameters</h4>
|
424
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
434
425
|
<colgroup>
|
435
426
|
<col width="150px" class="parameters_name">
|
436
427
|
<col class="parameters_description">
|
@@ -444,11 +435,10 @@ cairo_ps_surface_get_eps (<em class="parameter"><code><a class="link" href="cair
|
|
444
435
|
</table></div>
|
445
436
|
</div>
|
446
437
|
<div class="refsect3">
|
447
|
-
<a name="
|
438
|
+
<a name="cairo-ps-surface-get-eps.returns"></a><h4>Returns</h4>
|
448
439
|
<p> <code class="literal">TRUE</code> if the surface will output Encapsulated PostScript.</p>
|
449
|
-
<p></p>
|
450
440
|
</div>
|
451
|
-
<p class="since">Since 1.6</p>
|
441
|
+
<p class="since">Since: 1.6</p>
|
452
442
|
</div>
|
453
443
|
<hr>
|
454
444
|
<div class="refsect2">
|
@@ -465,8 +455,8 @@ this is to call this function immediately after creating the
|
|
465
455
|
surface or immediately after completing a page with either
|
466
456
|
<a class="link" href="cairo-cairo-t.html#cairo-show-page" title="cairo_show_page ()"><code class="function">cairo_show_page()</code></a> or <a class="link" href="cairo-cairo-t.html#cairo-copy-page" title="cairo_copy_page ()"><code class="function">cairo_copy_page()</code></a>.</p>
|
467
457
|
<div class="refsect3">
|
468
|
-
<a name="
|
469
|
-
<div class="informaltable"><table width="100%" border="0">
|
458
|
+
<a name="cairo-ps-surface-set-size.parameters"></a><h4>Parameters</h4>
|
459
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
470
460
|
<colgroup>
|
471
461
|
<col width="150px" class="parameters_name">
|
472
462
|
<col class="parameters_description">
|
@@ -491,7 +481,7 @@ surface or immediately after completing a page with either
|
|
491
481
|
</tbody>
|
492
482
|
</table></div>
|
493
483
|
</div>
|
494
|
-
<p class="since">Since 1.2</p>
|
484
|
+
<p class="since">Since: 1.2</p>
|
495
485
|
</div>
|
496
486
|
<hr>
|
497
487
|
<div class="refsect2">
|
@@ -506,8 +496,8 @@ be called before any call to <a class="link" href="cairo-PostScript-Surfaces.htm
|
|
506
496
|
and before any drawing is performed to the surface.</p>
|
507
497
|
<p>See <a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-comment" title="cairo_ps_surface_dsc_comment ()"><code class="function">cairo_ps_surface_dsc_comment()</code></a> for more details.</p>
|
508
498
|
<div class="refsect3">
|
509
|
-
<a name="
|
510
|
-
<div class="informaltable"><table width="100%" border="0">
|
499
|
+
<a name="cairo-ps-surface-dsc-begin-setup.parameters"></a><h4>Parameters</h4>
|
500
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
511
501
|
<colgroup>
|
512
502
|
<col width="150px" class="parameters_name">
|
513
503
|
<col class="parameters_description">
|
@@ -520,7 +510,7 @@ and before any drawing is performed to the surface.</p>
|
|
520
510
|
</tr></tbody>
|
521
511
|
</table></div>
|
522
512
|
</div>
|
523
|
-
<p class="since">Since 1.2</p>
|
513
|
+
<p class="since">Since: 1.2</p>
|
524
514
|
</div>
|
525
515
|
<hr>
|
526
516
|
<div class="refsect2">
|
@@ -536,8 +526,8 @@ surface. It should be called after any call to
|
|
536
526
|
performed to the surface.</p>
|
537
527
|
<p>See <a class="link" href="cairo-PostScript-Surfaces.html#cairo-ps-surface-dsc-comment" title="cairo_ps_surface_dsc_comment ()"><code class="function">cairo_ps_surface_dsc_comment()</code></a> for more details.</p>
|
538
528
|
<div class="refsect3">
|
539
|
-
<a name="
|
540
|
-
<div class="informaltable"><table width="100%" border="0">
|
529
|
+
<a name="cairo-ps-surface-dsc-begin-page-setup.parameters"></a><h4>Parameters</h4>
|
530
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
541
531
|
<colgroup>
|
542
532
|
<col width="150px" class="parameters_name">
|
543
533
|
<col class="parameters_description">
|
@@ -550,7 +540,7 @@ performed to the surface.</p>
|
|
550
540
|
</tr></tbody>
|
551
541
|
</table></div>
|
552
542
|
</div>
|
553
|
-
<p class="since">Since 1.2</p>
|
543
|
+
<p class="since">Since: 1.2</p>
|
554
544
|
</div>
|
555
545
|
<hr>
|
556
546
|
<div class="refsect2">
|
@@ -626,8 +616,8 @@ cairo_ps_surface_dsc_comment (surface, "%%IncludeFeature: *PageSize A5");
|
|
626
616
|
...
|
627
617
|
</pre></div>
|
628
618
|
<div class="refsect3">
|
629
|
-
<a name="
|
630
|
-
<div class="informaltable"><table width="100%" border="0">
|
619
|
+
<a name="cairo-ps-surface-dsc-comment.parameters"></a><h4>Parameters</h4>
|
620
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
631
621
|
<colgroup>
|
632
622
|
<col width="150px" class="parameters_name">
|
633
623
|
<col class="parameters_description">
|
@@ -647,7 +637,7 @@ cairo_ps_surface_dsc_comment (surface, "%%IncludeFeature: *PageSize A5");
|
|
647
637
|
</tbody>
|
648
638
|
</table></div>
|
649
639
|
</div>
|
650
|
-
<p class="since">Since 1.2</p>
|
640
|
+
<p class="since">Since: 1.2</p>
|
651
641
|
</div>
|
652
642
|
</div>
|
653
643
|
<div class="refsect1">
|
@@ -658,7 +648,7 @@ cairo_ps_surface_dsc_comment (surface, "%%IncludeFeature: *PageSize A5");
|
|
658
648
|
</pre>
|
659
649
|
<p>Defined if the PostScript surface backend is available.
|
660
650
|
This macro can be used to conditionally compile backend-specific code.</p>
|
661
|
-
<p class="since">Since 1.2</p>
|
651
|
+
<p class="since">Since: 1.2</p>
|
662
652
|
</div>
|
663
653
|
<hr>
|
664
654
|
<div class="refsect2">
|
@@ -667,8 +657,8 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
667
657
|
PostScript Language Reference that a generated PostScript file will
|
668
658
|
conform to.</p>
|
669
659
|
<div class="refsect3">
|
670
|
-
<a name="
|
671
|
-
<div class="informaltable"><table width="100%" border="0">
|
660
|
+
<a name="cairo-ps-level-t.members"></a><h4>Members</h4>
|
661
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
672
662
|
<colgroup>
|
673
663
|
<col width="300px" class="enum_members_name">
|
674
664
|
<col class="enum_members_description">
|
@@ -692,7 +682,7 @@ conform to.</p>
|
|
692
682
|
</tbody>
|
693
683
|
</table></div>
|
694
684
|
</div>
|
695
|
-
<p class="since">Since 1.6</p>
|
685
|
+
<p class="since">Since: 1.6</p>
|
696
686
|
</div>
|
697
687
|
</div>
|
698
688
|
<div class="refsect1">
|
@@ -701,7 +691,6 @@ conform to.</p>
|
|
701
691
|
</div>
|
702
692
|
</div>
|
703
693
|
<div class="footer">
|
704
|
-
<hr>
|
705
|
-
Generated by GTK-Doc V1.20</div>
|
694
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
706
695
|
</body>
|
707
696
|
</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>Quartz (CGFont) Fonts: 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-fonts.html" title="Fonts">
|
9
9
|
<link rel="prev" href="cairo-Win32-Fonts.html" title="Win32 Fonts">
|
10
10
|
<link rel="next" href="cairo-User-Fonts.html" title="User Fonts">
|
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-Quartz-(CGFont)-Fonts.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Quartz-(CGFont)-Fonts.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-Quartz-(CGFont)-Fonts.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-fonts.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-Quartz-(CGFont)-Fonts.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">
|
@@ -61,7 +60,7 @@
|
|
61
60
|
</div>
|
62
61
|
<div class="refsect1">
|
63
62
|
<a name="cairo-Quartz-(CGFont)-Fonts.other"></a><h2>Types and Values</h2>
|
64
|
-
<div class="informaltable"><table width="100%" border="0">
|
63
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
65
64
|
<colgroup>
|
66
65
|
<col width="150px" class="name">
|
67
66
|
<col class="description">
|
@@ -73,11 +72,6 @@
|
|
73
72
|
</table></div>
|
74
73
|
</div>
|
75
74
|
<div class="refsect1">
|
76
|
-
<a name="cairo-Quartz-(CGFont)-Fonts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
77
|
-
<pre class="screen">
|
78
|
-
</pre>
|
79
|
-
</div>
|
80
|
-
<div class="refsect1">
|
81
75
|
<a name="cairo-Quartz-(CGFont)-Fonts.description"></a><h2>Description</h2>
|
82
76
|
<p>The Quartz font backend is primarily used to render text on Apple
|
83
77
|
MacOS X systems. The CGFont API is used for the internal
|
@@ -94,8 +88,8 @@ cairo_quartz_font_face_create_for_cgfont
|
|
94
88
|
<span class="type">CGFontRef</span>. This font can then be used with
|
95
89
|
<a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a> or <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>.</p>
|
96
90
|
<div class="refsect3">
|
97
|
-
<a name="
|
98
|
-
<div class="informaltable"><table width="100%" border="0">
|
91
|
+
<a name="cairo-quartz-font-face-create-for-cgfont.parameters"></a><h4>Parameters</h4>
|
92
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
99
93
|
<colgroup>
|
100
94
|
<col width="150px" class="parameters_name">
|
101
95
|
<col class="parameters_description">
|
@@ -109,12 +103,11 @@ cairo_quartz_font_face_create_for_cgfont
|
|
109
103
|
</table></div>
|
110
104
|
</div>
|
111
105
|
<div class="refsect3">
|
112
|
-
<a name="
|
106
|
+
<a name="cairo-quartz-font-face-create-for-cgfont.returns"></a><h4>Returns</h4>
|
113
107
|
<p> a newly created <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
|
114
108
|
<a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.</p>
|
115
|
-
<p></p>
|
116
109
|
</div>
|
117
|
-
<p class="since">Since 1.6</p>
|
110
|
+
<p class="since">Since: 1.6</p>
|
118
111
|
</div>
|
119
112
|
<hr>
|
120
113
|
<div class="refsect2">
|
@@ -126,8 +119,8 @@ cairo_quartz_font_face_create_for_atsu_font_id
|
|
126
119
|
<span class="type">ATSUFontID</span>. This font can then be used with
|
127
120
|
<a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a> or <a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>.</p>
|
128
121
|
<div class="refsect3">
|
129
|
-
<a name="id
|
130
|
-
<div class="informaltable"><table width="100%" border="0">
|
122
|
+
<a name="cairo-quartz-font-face-create-for-atsu-font-id.parameters"></a><h4>Parameters</h4>
|
123
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
131
124
|
<colgroup>
|
132
125
|
<col width="150px" class="parameters_name">
|
133
126
|
<col class="parameters_description">
|
@@ -141,12 +134,11 @@ cairo_quartz_font_face_create_for_atsu_font_id
|
|
141
134
|
</table></div>
|
142
135
|
</div>
|
143
136
|
<div class="refsect3">
|
144
|
-
<a name="id
|
137
|
+
<a name="cairo-quartz-font-face-create-for-atsu-font-id.returns"></a><h4>Returns</h4>
|
145
138
|
<p> a newly created <a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
|
146
139
|
<a class="link" href="cairo-cairo-font-face-t.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.</p>
|
147
|
-
<p></p>
|
148
140
|
</div>
|
149
|
-
<p class="since">Since 1.6</p>
|
141
|
+
<p class="since">Since: 1.6</p>
|
150
142
|
</div>
|
151
143
|
</div>
|
152
144
|
<div class="refsect1">
|
@@ -157,7 +149,7 @@ cairo_quartz_font_face_create_for_atsu_font_id
|
|
157
149
|
</pre>
|
158
150
|
<p>Defined if the Quartz font backend is available.
|
159
151
|
This macro can be used to conditionally compile backend-specific code.</p>
|
160
|
-
<p class="since">Since 1.6</p>
|
152
|
+
<p class="since">Since: 1.6</p>
|
161
153
|
</div>
|
162
154
|
</div>
|
163
155
|
<div class="refsect1">
|
@@ -166,7 +158,6 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
166
158
|
</div>
|
167
159
|
</div>
|
168
160
|
<div class="footer">
|
169
|
-
<hr>
|
170
|
-
Generated by GTK-Doc V1.20</div>
|
161
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
171
162
|
</body>
|
172
163
|
</html>
|