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>FreeType 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-cairo-font-options-t.html" title="cairo_font_options_t">
|
10
10
|
<link rel="next" href="cairo-Win32-Fonts.html" title="Win32 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-FreeType-Fonts.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-FreeType-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-FreeType-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-FreeType-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">
|
@@ -108,7 +107,7 @@
|
|
108
107
|
</div>
|
109
108
|
<div class="refsect1">
|
110
109
|
<a name="cairo-FreeType-Fonts.other"></a><h2>Types and Values</h2>
|
111
|
-
<div class="informaltable"><table width="100%" border="0">
|
110
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
112
111
|
<colgroup>
|
113
112
|
<col width="150px" class="name">
|
114
113
|
<col class="description">
|
@@ -130,11 +129,6 @@
|
|
130
129
|
</table></div>
|
131
130
|
</div>
|
132
131
|
<div class="refsect1">
|
133
|
-
<a name="cairo-FreeType-Fonts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
134
|
-
<pre class="screen">
|
135
|
-
</pre>
|
136
|
-
</div>
|
137
|
-
<div class="refsect1">
|
138
132
|
<a name="cairo-FreeType-Fonts.description"></a><h2>Description</h2>
|
139
133
|
<p>The FreeType font backend is primarily used to render text on GNU/Linux
|
140
134
|
systems, but can be used on other platforms too.</p>
|
@@ -171,8 +165,8 @@ if (status) {
|
|
171
165
|
}
|
172
166
|
</pre></div>
|
173
167
|
<div class="refsect3">
|
174
|
-
<a name="
|
175
|
-
<div class="informaltable"><table width="100%" border="0">
|
168
|
+
<a name="cairo-ft-font-face-create-for-ft-face.parameters"></a><h4>Parameters</h4>
|
169
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
176
170
|
<colgroup>
|
177
171
|
<col width="150px" class="parameters_name">
|
178
172
|
<col class="parameters_description">
|
@@ -204,12 +198,11 @@ the load target, such as <code class="literal">FT_LOAD_TARGET_LIGHT</code>.</p><
|
|
204
198
|
</table></div>
|
205
199
|
</div>
|
206
200
|
<div class="refsect3">
|
207
|
-
<a name="
|
201
|
+
<a name="cairo-ft-font-face-create-for-ft-face.returns"></a><h4>Returns</h4>
|
208
202
|
<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
|
209
203
|
<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>
|
210
|
-
<p></p>
|
211
204
|
</div>
|
212
|
-
<p class="since">Since 1.0</p>
|
205
|
+
<p class="since">Since: 1.0</p>
|
213
206
|
</div>
|
214
207
|
<hr>
|
215
208
|
<div class="refsect2">
|
@@ -244,8 +237,8 @@ time of the returned <a class="link" href="cairo-cairo-font-face-t.html#cairo-fo
|
|
244
237
|
<a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-font-face-create-for-ft-face" title="cairo_ft_font_face_create_for_ft_face ()"><code class="function">cairo_ft_font_face_create_for_ft_face()</code></a> for an example of how to couple
|
245
238
|
the life time of the FT_Face to that of the cairo font-face.</p>
|
246
239
|
<div class="refsect3">
|
247
|
-
<a name="
|
248
|
-
<div class="informaltable"><table width="100%" border="0">
|
240
|
+
<a name="cairo-ft-font-face-create-for-pattern.parameters"></a><h4>Parameters</h4>
|
241
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
249
242
|
<colgroup>
|
250
243
|
<col width="150px" class="parameters_name">
|
251
244
|
<col class="parameters_description">
|
@@ -261,12 +254,11 @@ after this call.</p></td>
|
|
261
254
|
</table></div>
|
262
255
|
</div>
|
263
256
|
<div class="refsect3">
|
264
|
-
<a name="
|
257
|
+
<a name="cairo-ft-font-face-create-for-pattern.returns"></a><h4>Returns</h4>
|
265
258
|
<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
|
266
259
|
<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>
|
267
|
-
<p></p>
|
268
260
|
</div>
|
269
|
-
<p class="since">Since 1.0</p>
|
261
|
+
<p class="since">Since: 1.0</p>
|
270
262
|
</div>
|
271
263
|
<hr>
|
272
264
|
<div class="refsect2">
|
@@ -280,8 +272,8 @@ so you should call this function after calling <code class="function">FcConfigSu
|
|
280
272
|
user's settings should override options based on the surface type), but
|
281
273
|
before calling <code class="function">FcDefaultSubstitute()</code>.</p>
|
282
274
|
<div class="refsect3">
|
283
|
-
<a name="
|
284
|
-
<div class="informaltable"><table width="100%" border="0">
|
275
|
+
<a name="cairo-ft-font-options-substitute.parameters"></a><h4>Parameters</h4>
|
276
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
285
277
|
<colgroup>
|
286
278
|
<col width="150px" class="parameters_name">
|
287
279
|
<col class="parameters_description">
|
@@ -301,7 +293,7 @@ before calling <code class="function">FcDefaultSubstitute()</code>.</p>
|
|
301
293
|
</tbody>
|
302
294
|
</table></div>
|
303
295
|
</div>
|
304
|
-
<p class="since">Since 1.0</p>
|
296
|
+
<p class="since">Since: 1.0</p>
|
305
297
|
</div>
|
306
298
|
<hr>
|
307
299
|
<div class="refsect2">
|
@@ -326,8 +318,8 @@ own locking to protect any use of that object, (and which also must
|
|
326
318
|
protect any other calls into cairo as almost any cairo function
|
327
319
|
might result in a call into the freetype library).</p>
|
328
320
|
<div class="refsect3">
|
329
|
-
<a name="
|
330
|
-
<div class="informaltable"><table width="100%" border="0">
|
321
|
+
<a name="cairo-ft-scaled-font-lock-face.parameters"></a><h4>Parameters</h4>
|
322
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
331
323
|
<colgroup>
|
332
324
|
<col width="150px" class="parameters_name">
|
333
325
|
<col class="parameters_description">
|
@@ -344,15 +336,14 @@ FreeType backend font face (see <a class="link" href="cairo-FreeType-Fonts.html#
|
|
344
336
|
</table></div>
|
345
337
|
</div>
|
346
338
|
<div class="refsect3">
|
347
|
-
<a name="
|
339
|
+
<a name="cairo-ft-scaled-font-lock-face.returns"></a><h4>Returns</h4>
|
348
340
|
<p> The <span class="type">FT_Face</span> object for <em class="parameter"><code>font</code></em>
|
349
341
|
, scaled appropriately,
|
350
342
|
or <code class="literal">NULL</code> if <em class="parameter"><code>scaled_font</code></em>
|
351
343
|
is in an error state (see
|
352
344
|
<a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-status" title="cairo_scaled_font_status ()"><code class="function">cairo_scaled_font_status()</code></a>) or there is insufficient memory.</p>
|
353
|
-
<p></p>
|
354
345
|
</div>
|
355
|
-
<p class="since">Since 1.0</p>
|
346
|
+
<p class="since">Since: 1.0</p>
|
356
347
|
</div>
|
357
348
|
<hr>
|
358
349
|
<div class="refsect2">
|
@@ -361,8 +352,8 @@ is in an error state (see
|
|
361
352
|
cairo_ft_scaled_font_unlock_face (<em class="parameter"><code><a class="link" href="cairo-cairo-scaled-font-t.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> *scaled_font</code></em>);</pre>
|
362
353
|
<p>Releases a face obtained with <a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a>.</p>
|
363
354
|
<div class="refsect3">
|
364
|
-
<a name="
|
365
|
-
<div class="informaltable"><table width="100%" border="0">
|
355
|
+
<a name="cairo-ft-scaled-font-unlock-face.parameters"></a><h4>Parameters</h4>
|
356
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
366
357
|
<colgroup>
|
367
358
|
<col width="150px" class="parameters_name">
|
368
359
|
<col class="parameters_description">
|
@@ -378,7 +369,7 @@ FreeType backend font face (see <a class="link" href="cairo-FreeType-Fonts.html#
|
|
378
369
|
</tr></tbody>
|
379
370
|
</table></div>
|
380
371
|
</div>
|
381
|
-
<p class="since">Since 1.0</p>
|
372
|
+
<p class="since">Since: 1.0</p>
|
382
373
|
</div>
|
383
374
|
<hr>
|
384
375
|
<div class="refsect2">
|
@@ -387,8 +378,8 @@ FreeType backend font face (see <a class="link" href="cairo-FreeType-Fonts.html#
|
|
387
378
|
cairo_ft_font_face_get_synthesize (<em class="parameter"><code><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> *font_face</code></em>);</pre>
|
388
379
|
<p>See <a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-synthesize-t" title="enum cairo_ft_synthesize_t"><span class="type">cairo_ft_synthesize_t</span></a>.</p>
|
389
380
|
<div class="refsect3">
|
390
|
-
<a name="
|
391
|
-
<div class="informaltable"><table width="100%" border="0">
|
381
|
+
<a name="cairo-ft-font-face-get-synthesize.parameters"></a><h4>Parameters</h4>
|
382
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
392
383
|
<colgroup>
|
393
384
|
<col width="150px" class="parameters_name">
|
394
385
|
<col class="parameters_description">
|
@@ -402,11 +393,10 @@ cairo_ft_font_face_get_synthesize (<em class="parameter"><code><a class="link" h
|
|
402
393
|
</table></div>
|
403
394
|
</div>
|
404
395
|
<div class="refsect3">
|
405
|
-
<a name="
|
396
|
+
<a name="cairo-ft-font-face-get-synthesize.returns"></a><h4>Returns</h4>
|
406
397
|
<p> the current set of synthesis options.</p>
|
407
|
-
<p></p>
|
408
398
|
</div>
|
409
|
-
<p class="since">Since 1.12</p>
|
399
|
+
<p class="since">Since: 1.12</p>
|
410
400
|
</div>
|
411
401
|
<hr>
|
412
402
|
<div class="refsect2">
|
@@ -418,8 +408,8 @@ cairo_ft_font_face_set_synthesize (<em class="parameter"><code><a class="link" h
|
|
418
408
|
font, which is useful if you lack those glyphs from a true bold or oblique
|
419
409
|
font. See also <a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-synthesize-t" title="enum cairo_ft_synthesize_t"><span class="type">cairo_ft_synthesize_t</span></a>.</p>
|
420
410
|
<div class="refsect3">
|
421
|
-
<a name="
|
422
|
-
<div class="informaltable"><table width="100%" border="0">
|
411
|
+
<a name="cairo-ft-font-face-set-synthesize.parameters"></a><h4>Parameters</h4>
|
412
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
423
413
|
<colgroup>
|
424
414
|
<col width="150px" class="parameters_name">
|
425
415
|
<col class="parameters_description">
|
@@ -439,7 +429,7 @@ font. See also <a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-synthesi
|
|
439
429
|
</tbody>
|
440
430
|
</table></div>
|
441
431
|
</div>
|
442
|
-
<p class="since">Since 1.12</p>
|
432
|
+
<p class="since">Since: 1.12</p>
|
443
433
|
</div>
|
444
434
|
<hr>
|
445
435
|
<div class="refsect2">
|
@@ -449,8 +439,8 @@ cairo_ft_font_face_unset_synthesize (<em class="parameter"><code><a class="link"
|
|
449
439
|
<em class="parameter"><code>unsigned <span class="type">int</span> synth_flags</code></em>);</pre>
|
450
440
|
<p>See <a class="link" href="cairo-FreeType-Fonts.html#cairo-ft-font-face-set-synthesize" title="cairo_ft_font_face_set_synthesize ()"><code class="function">cairo_ft_font_face_set_synthesize()</code></a>.</p>
|
451
441
|
<div class="refsect3">
|
452
|
-
<a name="
|
453
|
-
<div class="informaltable"><table width="100%" border="0">
|
442
|
+
<a name="cairo-ft-font-face-unset-synthesize.parameters"></a><h4>Parameters</h4>
|
443
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
454
444
|
<colgroup>
|
455
445
|
<col width="150px" class="parameters_name">
|
456
446
|
<col class="parameters_description">
|
@@ -470,7 +460,7 @@ cairo_ft_font_face_unset_synthesize (<em class="parameter"><code><a class="link"
|
|
470
460
|
</tbody>
|
471
461
|
</table></div>
|
472
462
|
</div>
|
473
|
-
<p class="since">Since 1.12</p>
|
463
|
+
<p class="since">Since: 1.12</p>
|
474
464
|
</div>
|
475
465
|
</div>
|
476
466
|
<div class="refsect1">
|
@@ -481,7 +471,7 @@ cairo_ft_font_face_unset_synthesize (<em class="parameter"><code><a class="link"
|
|
481
471
|
</pre>
|
482
472
|
<p>Defined if the FreeType font backend is available.
|
483
473
|
This macro can be used to conditionally compile backend-specific code.</p>
|
484
|
-
<p class="since">Since 1.0</p>
|
474
|
+
<p class="since">Since: 1.0</p>
|
485
475
|
</div>
|
486
476
|
<hr>
|
487
477
|
<div class="refsect2">
|
@@ -491,7 +481,7 @@ This macro can be used to conditionally compile backend-specific code.</p>
|
|
491
481
|
<p>Defined if the Fontconfig-specific functions of the FreeType font backend
|
492
482
|
are available.
|
493
483
|
This macro can be used to conditionally compile backend-specific code.</p>
|
494
|
-
<p class="since">Since 1.10</p>
|
484
|
+
<p class="since">Since: 1.10</p>
|
495
485
|
</div>
|
496
486
|
<hr>
|
497
487
|
<div class="refsect2">
|
@@ -505,8 +495,8 @@ synthesis options can be queried with <a class="link" href="cairo-FreeType-Fonts
|
|
505
495
|
<p>Note: that when synthesizing glyphs, the font metrics returned will only
|
506
496
|
be estimates.</p>
|
507
497
|
<div class="refsect3">
|
508
|
-
<a name="
|
509
|
-
<div class="informaltable"><table width="100%" border="0">
|
498
|
+
<a name="cairo-ft-synthesize-t.members"></a><h4>Members</h4>
|
499
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
510
500
|
<colgroup>
|
511
501
|
<col width="300px" class="enum_members_name">
|
512
502
|
<col class="enum_members_description">
|
@@ -531,7 +521,7 @@ right.</p>
|
|
531
521
|
</tbody>
|
532
522
|
</table></div>
|
533
523
|
</div>
|
534
|
-
<p class="since">Since 1.12</p>
|
524
|
+
<p class="since">Since: 1.12</p>
|
535
525
|
</div>
|
536
526
|
</div>
|
537
527
|
<div class="refsect1">
|
@@ -540,7 +530,6 @@ right.</p>
|
|
540
530
|
</div>
|
541
531
|
</div>
|
542
532
|
<div class="footer">
|
543
|
-
<hr>
|
544
|
-
Generated by GTK-Doc V1.20</div>
|
533
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
545
534
|
</body>
|
546
535
|
</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>Image 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-cairo-surface-t.html" title="cairo_surface_t">
|
10
10
|
<link rel="next" href="cairo-PDF-Surfaces.html" title="PDF 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-Image-Surfaces.description" class="shortcut">Description</a></span
|
19
|
-
<a href="#cairo-Image-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-Image-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-Image-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">
|
@@ -108,7 +107,7 @@
|
|
108
107
|
</div>
|
109
108
|
<div class="refsect1">
|
110
109
|
<a name="cairo-Image-Surfaces.other"></a><h2>Types and Values</h2>
|
111
|
-
<div class="informaltable"><table width="100%" border="0">
|
110
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
112
111
|
<colgroup>
|
113
112
|
<col width="150px" class="name">
|
114
113
|
<col class="description">
|
@@ -126,11 +125,6 @@
|
|
126
125
|
</table></div>
|
127
126
|
</div>
|
128
127
|
<div class="refsect1">
|
129
|
-
<a name="cairo-Image-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
130
|
-
<pre class="screen">
|
131
|
-
</pre>
|
132
|
-
</div>
|
133
|
-
<div class="refsect1">
|
134
128
|
<a name="cairo-Image-Surfaces.description"></a><h2>Description</h2>
|
135
129
|
<p>Image surfaces provide the ability to render to memory buffers
|
136
130
|
either allocated by cairo or by the calling code. The supported
|
@@ -158,8 +152,8 @@ surface = cairo_image_surface_create_for_data (data, format,
|
|
158
152
|
stride);
|
159
153
|
</pre></div>
|
160
154
|
<div class="refsect3">
|
161
|
-
<a name="
|
162
|
-
<div class="informaltable"><table width="100%" border="0">
|
155
|
+
<a name="cairo-format-stride-for-width.parameters"></a><h4>Parameters</h4>
|
156
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
163
157
|
<colgroup>
|
164
158
|
<col width="150px" class="parameters_name">
|
165
159
|
<col class="parameters_description">
|
@@ -180,13 +174,12 @@ surface = cairo_image_surface_create_for_data (data, format,
|
|
180
174
|
</table></div>
|
181
175
|
</div>
|
182
176
|
<div class="refsect3">
|
183
|
-
<a name="
|
177
|
+
<a name="cairo-format-stride-for-width.returns"></a><h4>Returns</h4>
|
184
178
|
<p> the appropriate stride to use given the desired
|
185
179
|
format and width, or -1 if either the format is invalid or the width
|
186
180
|
too large.</p>
|
187
|
-
<p></p>
|
188
181
|
</div>
|
189
|
-
<p class="since">Since 1.6</p>
|
182
|
+
<p class="since">Since: 1.6</p>
|
190
183
|
</div>
|
191
184
|
<hr>
|
192
185
|
<div class="refsect2">
|
@@ -196,13 +189,13 @@ cairo_image_surface_create (<em class="parameter"><code><a class="link" href="ca
|
|
196
189
|
<em class="parameter"><code><span class="type">int</span> width</code></em>,
|
197
190
|
<em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
|
198
191
|
<p>Creates an image surface of the specified format and
|
199
|
-
dimensions. Initially the surface contents are
|
200
|
-
|
192
|
+
dimensions. Initially the surface contents are set to 0.
|
193
|
+
(Specifically, within each pixel, each color or alpha channel
|
201
194
|
belonging to format will be 0. The contents of bits within a pixel,
|
202
|
-
but not belonging to the given format are undefined).</p
|
195
|
+
but not belonging to the given format are undefined).</p>
|
203
196
|
<div class="refsect3">
|
204
|
-
<a name="
|
205
|
-
<div class="informaltable"><table width="100%" border="0">
|
197
|
+
<a name="cairo-image-surface-create.parameters"></a><h4>Parameters</h4>
|
198
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
206
199
|
<colgroup>
|
207
200
|
<col width="150px" class="parameters_name">
|
208
201
|
<col class="parameters_description">
|
@@ -228,16 +221,15 @@ but not belonging to the given format are undefined).</p></li></ol></div>
|
|
228
221
|
</table></div>
|
229
222
|
</div>
|
230
223
|
<div class="refsect3">
|
231
|
-
<a name="
|
224
|
+
<a name="cairo-image-surface-create.returns"></a><h4>Returns</h4>
|
232
225
|
<p> a pointer to the newly created surface. The caller
|
233
226
|
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
|
234
227
|
with it.</p>
|
235
228
|
<p>This function always returns a valid pointer, but it will return a
|
236
229
|
pointer to a "nil" surface if an error such as out of memory
|
237
230
|
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>
|
238
|
-
<p></p>
|
239
231
|
</div>
|
240
|
-
<p class="since">Since 1.0</p>
|
232
|
+
<p class="since">Since: 1.0</p>
|
241
233
|
</div>
|
242
234
|
<hr>
|
243
235
|
<div class="refsect2">
|
@@ -264,8 +256,8 @@ maximum image width value, and then use the resulting stride value
|
|
264
256
|
to allocate the data and to create the image surface. See
|
265
257
|
<a class="link" href="cairo-Image-Surfaces.html#cairo-format-stride-for-width" title="cairo_format_stride_for_width ()"><code class="function">cairo_format_stride_for_width()</code></a> for example code.</p>
|
266
258
|
<div class="refsect3">
|
267
|
-
<a name="
|
268
|
-
<div class="informaltable"><table width="100%" border="0">
|
259
|
+
<a name="cairo-image-surface-create-for-data.parameters"></a><h4>Parameters</h4>
|
260
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
269
261
|
<colgroup>
|
270
262
|
<col width="150px" class="parameters_name">
|
271
263
|
<col class="parameters_description">
|
@@ -306,7 +298,7 @@ buffer.</p></td>
|
|
306
298
|
</table></div>
|
307
299
|
</div>
|
308
300
|
<div class="refsect3">
|
309
|
-
<a name="
|
301
|
+
<a name="cairo-image-surface-create-for-data.returns"></a><h4>Returns</h4>
|
310
302
|
<p> a pointer to the newly created surface. The caller
|
311
303
|
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
|
312
304
|
with it.</p>
|
@@ -318,9 +310,8 @@ the error status of the returned surface will be
|
|
318
310
|
<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>
|
319
311
|
<p>See <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-set-user-data" title="cairo_surface_set_user_data ()"><code class="function">cairo_surface_set_user_data()</code></a> for a means of attaching a
|
320
312
|
destroy-notification fallback to the surface if necessary.</p>
|
321
|
-
<p></p>
|
322
313
|
</div>
|
323
|
-
<p class="since">Since 1.0</p>
|
314
|
+
<p class="since">Since: 1.0</p>
|
324
315
|
</div>
|
325
316
|
<hr>
|
326
317
|
<div class="refsect2">
|
@@ -334,8 +325,8 @@ pixel data to ensure that all pending drawing operations are
|
|
334
325
|
finished. A call to <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-mark-dirty" title="cairo_surface_mark_dirty ()"><code class="function">cairo_surface_mark_dirty()</code></a> is required after
|
335
326
|
the data is modified.</p>
|
336
327
|
<div class="refsect3">
|
337
|
-
<a name="
|
338
|
-
<div class="informaltable"><table width="100%" border="0">
|
328
|
+
<a name="cairo-image-surface-get-data.parameters"></a><h4>Parameters</h4>
|
329
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
339
330
|
<colgroup>
|
340
331
|
<col width="150px" class="parameters_name">
|
341
332
|
<col class="parameters_description">
|
@@ -349,14 +340,13 @@ the data is modified.</p>
|
|
349
340
|
</table></div>
|
350
341
|
</div>
|
351
342
|
<div class="refsect3">
|
352
|
-
<a name="
|
343
|
+
<a name="cairo-image-surface-get-data.returns"></a><h4>Returns</h4>
|
353
344
|
<p> a pointer to the image data of this surface or <code class="literal">NULL</code>
|
354
345
|
if <em class="parameter"><code>surface</code></em>
|
355
346
|
is not an image surface, or if <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-finish" title="cairo_surface_finish ()"><code class="function">cairo_surface_finish()</code></a>
|
356
347
|
has been called.</p>
|
357
|
-
<p></p>
|
358
348
|
</div>
|
359
|
-
<p class="since">Since 1.2</p>
|
349
|
+
<p class="since">Since: 1.2</p>
|
360
350
|
</div>
|
361
351
|
<hr>
|
362
352
|
<div class="refsect2">
|
@@ -365,8 +355,8 @@ has been called.</p>
|
|
365
355
|
cairo_image_surface_get_format (<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>
|
366
356
|
<p>Get the format of the surface.</p>
|
367
357
|
<div class="refsect3">
|
368
|
-
<a name="
|
369
|
-
<div class="informaltable"><table width="100%" border="0">
|
358
|
+
<a name="cairo-image-surface-get-format.parameters"></a><h4>Parameters</h4>
|
359
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
370
360
|
<colgroup>
|
371
361
|
<col width="150px" class="parameters_name">
|
372
362
|
<col class="parameters_description">
|
@@ -380,11 +370,10 @@ cairo_image_surface_get_format (<em class="parameter"><code><a class="link" href
|
|
380
370
|
</table></div>
|
381
371
|
</div>
|
382
372
|
<div class="refsect3">
|
383
|
-
<a name="
|
373
|
+
<a name="cairo-image-surface-get-format.returns"></a><h4>Returns</h4>
|
384
374
|
<p> the format of the surface</p>
|
385
|
-
<p></p>
|
386
375
|
</div>
|
387
|
-
<p class="since">Since 1.2</p>
|
376
|
+
<p class="since">Since: 1.2</p>
|
388
377
|
</div>
|
389
378
|
<hr>
|
390
379
|
<div class="refsect2">
|
@@ -393,8 +382,8 @@ cairo_image_surface_get_format (<em class="parameter"><code><a class="link" href
|
|
393
382
|
cairo_image_surface_get_width (<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>
|
394
383
|
<p>Get the width of the image surface in pixels.</p>
|
395
384
|
<div class="refsect3">
|
396
|
-
<a name="
|
397
|
-
<div class="informaltable"><table width="100%" border="0">
|
385
|
+
<a name="cairo-image-surface-get-width.parameters"></a><h4>Parameters</h4>
|
386
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
398
387
|
<colgroup>
|
399
388
|
<col width="150px" class="parameters_name">
|
400
389
|
<col class="parameters_description">
|
@@ -408,11 +397,10 @@ cairo_image_surface_get_width (<em class="parameter"><code><a class="link" href=
|
|
408
397
|
</table></div>
|
409
398
|
</div>
|
410
399
|
<div class="refsect3">
|
411
|
-
<a name="
|
400
|
+
<a name="cairo-image-surface-get-width.returns"></a><h4>Returns</h4>
|
412
401
|
<p> the width of the surface in pixels.</p>
|
413
|
-
<p></p>
|
414
402
|
</div>
|
415
|
-
<p class="since">Since 1.0</p>
|
403
|
+
<p class="since">Since: 1.0</p>
|
416
404
|
</div>
|
417
405
|
<hr>
|
418
406
|
<div class="refsect2">
|
@@ -421,8 +409,8 @@ cairo_image_surface_get_width (<em class="parameter"><code><a class="link" href=
|
|
421
409
|
cairo_image_surface_get_height (<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>
|
422
410
|
<p>Get the height of the image surface in pixels.</p>
|
423
411
|
<div class="refsect3">
|
424
|
-
<a name="
|
425
|
-
<div class="informaltable"><table width="100%" border="0">
|
412
|
+
<a name="cairo-image-surface-get-height.parameters"></a><h4>Parameters</h4>
|
413
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
426
414
|
<colgroup>
|
427
415
|
<col width="150px" class="parameters_name">
|
428
416
|
<col class="parameters_description">
|
@@ -436,11 +424,10 @@ cairo_image_surface_get_height (<em class="parameter"><code><a class="link" href
|
|
436
424
|
</table></div>
|
437
425
|
</div>
|
438
426
|
<div class="refsect3">
|
439
|
-
<a name="
|
427
|
+
<a name="cairo-image-surface-get-height.returns"></a><h4>Returns</h4>
|
440
428
|
<p> the height of the surface in pixels.</p>
|
441
|
-
<p></p>
|
442
429
|
</div>
|
443
|
-
<p class="since">Since 1.0</p>
|
430
|
+
<p class="since">Since: 1.0</p>
|
444
431
|
</div>
|
445
432
|
<hr>
|
446
433
|
<div class="refsect2">
|
@@ -449,8 +436,8 @@ cairo_image_surface_get_height (<em class="parameter"><code><a class="link" href
|
|
449
436
|
cairo_image_surface_get_stride (<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>
|
450
437
|
<p>Get the stride of the image surface in bytes</p>
|
451
438
|
<div class="refsect3">
|
452
|
-
<a name="
|
453
|
-
<div class="informaltable"><table width="100%" border="0">
|
439
|
+
<a name="cairo-image-surface-get-stride.parameters"></a><h4>Parameters</h4>
|
440
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
454
441
|
<colgroup>
|
455
442
|
<col width="150px" class="parameters_name">
|
456
443
|
<col class="parameters_description">
|
@@ -464,15 +451,14 @@ cairo_image_surface_get_stride (<em class="parameter"><code><a class="link" href
|
|
464
451
|
</table></div>
|
465
452
|
</div>
|
466
453
|
<div class="refsect3">
|
467
|
-
<a name="
|
454
|
+
<a name="cairo-image-surface-get-stride.returns"></a><h4>Returns</h4>
|
468
455
|
<p> the stride of the image surface in bytes (or 0 if
|
469
456
|
<em class="parameter"><code>surface</code></em>
|
470
457
|
is not an image surface). The stride is the distance in
|
471
458
|
bytes from the beginning of one row of the image data to the
|
472
459
|
beginning of the next row.</p>
|
473
|
-
<p></p>
|
474
460
|
</div>
|
475
|
-
<p class="since">Since 1.2</p>
|
461
|
+
<p class="since">Since: 1.2</p>
|
476
462
|
</div>
|
477
463
|
</div>
|
478
464
|
<div class="refsect1">
|
@@ -484,7 +470,7 @@ beginning of the next row.</p>
|
|
484
470
|
<p>Defined if the image surface backend is available.
|
485
471
|
The image surface backend is always built in.
|
486
472
|
This macro was added for completeness in cairo 1.8.</p>
|
487
|
-
<p class="since">Since 1.8</p>
|
473
|
+
<p class="since">Since: 1.8</p>
|
488
474
|
</div>
|
489
475
|
<hr>
|
490
476
|
<div class="refsect2">
|
@@ -493,8 +479,8 @@ This macro was added for completeness in cairo 1.8.</p>
|
|
493
479
|
image data.</p>
|
494
480
|
<p>New entries may be added in future versions.</p>
|
495
481
|
<div class="refsect3">
|
496
|
-
<a name="
|
497
|
-
<div class="informaltable"><table width="100%" border="0">
|
482
|
+
<a name="cairo-format-t.members"></a><h4>Members</h4>
|
483
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
498
484
|
<colgroup>
|
499
485
|
<col width="300px" class="enum_members_name">
|
500
486
|
<col class="enum_members_description">
|
@@ -567,7 +553,7 @@ image data.</p>
|
|
567
553
|
</tbody>
|
568
554
|
</table></div>
|
569
555
|
</div>
|
570
|
-
<p class="since">Since 1.0</p>
|
556
|
+
<p class="since">Since: 1.0</p>
|
571
557
|
</div>
|
572
558
|
</div>
|
573
559
|
<div class="refsect1">
|
@@ -576,7 +562,6 @@ image data.</p>
|
|
576
562
|
</div>
|
577
563
|
</div>
|
578
564
|
<div class="footer">
|
579
|
-
<hr>
|
580
|
-
Generated by GTK-Doc V1.20</div>
|
565
|
+
<hr>Generated by GTK-Doc V1.25</div>
|
581
566
|
</body>
|
582
567
|
</html>
|