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
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType modules public interface (specification). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 1996-
|
7
|
+
/* Copyright 1996-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -89,6 +89,7 @@ FT_BEGIN_HEADER
|
|
89
89
|
/* */
|
90
90
|
/* FT_Property_Set */
|
91
91
|
/* FT_Property_Get */
|
92
|
+
/* FT_Set_Default_Properties */
|
92
93
|
/* */
|
93
94
|
/* FT_New_Library */
|
94
95
|
/* FT_Done_Library */
|
@@ -437,6 +438,47 @@ FT_BEGIN_HEADER
|
|
437
438
|
void* value );
|
438
439
|
|
439
440
|
|
441
|
+
/*************************************************************************/
|
442
|
+
/* */
|
443
|
+
/* <Function> */
|
444
|
+
/* FT_Set_Default_Properties */
|
445
|
+
/* */
|
446
|
+
/* <Description> */
|
447
|
+
/* If compilation option FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES is */
|
448
|
+
/* set, this function reads the `FREETYPE_PROPERTIES' environment */
|
449
|
+
/* variable to control driver properties. See sections @auto_hinter, */
|
450
|
+
/* @cff_driver, @pcf_driver, and @tt_driver for more. */
|
451
|
+
/* */
|
452
|
+
/* If the compilation option is not set, this function does nothing. */
|
453
|
+
/* */
|
454
|
+
/* `FREETYPE_PROPERTIES' has the following syntax form (broken here */
|
455
|
+
/* into multiple lines for better readability). */
|
456
|
+
/* */
|
457
|
+
/* { */
|
458
|
+
/* <optional whitespace> */
|
459
|
+
/* <module-name1> ':' */
|
460
|
+
/* <property-name1> '=' <property-value1> */
|
461
|
+
/* <whitespace> */
|
462
|
+
/* <module-name2> ':' */
|
463
|
+
/* <property-name2> '=' <property-value2> */
|
464
|
+
/* ... */
|
465
|
+
/* } */
|
466
|
+
/* */
|
467
|
+
/* Example: */
|
468
|
+
/* */
|
469
|
+
/* { */
|
470
|
+
/* FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ */
|
471
|
+
/* cff:no-stem-darkening=1 \ */
|
472
|
+
/* autofitter:warping=1 */
|
473
|
+
/* } */
|
474
|
+
/* */
|
475
|
+
/* <InOut> */
|
476
|
+
/* library :: A handle to a new library object. */
|
477
|
+
/* */
|
478
|
+
FT_EXPORT( void )
|
479
|
+
FT_Set_Default_Properties( FT_Library library );
|
480
|
+
|
481
|
+
|
440
482
|
/*************************************************************************/
|
441
483
|
/* */
|
442
484
|
/* <Function> */
|
@@ -477,8 +519,9 @@ FT_BEGIN_HEADER
|
|
477
519
|
/* valid for the life of the @FT_Library object. */
|
478
520
|
/* */
|
479
521
|
/* Normally, you would call this function (followed by a call to */
|
480
|
-
/* @FT_Add_Default_Modules or a series of calls to @FT_Add_Module
|
481
|
-
/*
|
522
|
+
/* @FT_Add_Default_Modules or a series of calls to @FT_Add_Module, */
|
523
|
+
/* and a call to @FT_Set_Default_Properties) instead of */
|
524
|
+
/* @FT_Init_FreeType to initialize the FreeType library. */
|
482
525
|
/* */
|
483
526
|
/* Don't use @FT_Done_FreeType but @FT_Done_Library to destroy a */
|
484
527
|
/* library instance. */
|
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType module error offsets (specification). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 2001-
|
7
|
+
/* Copyright 2001-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType API for validating OpenType tables (specification). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 2004-
|
7
|
+
/* Copyright 2004-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/* Support for the FT_Outline type used to store glyph shapes of */
|
6
6
|
/* most scalable font formats (specification). */
|
7
7
|
/* */
|
8
|
-
/* Copyright 1996-
|
8
|
+
/* Copyright 1996-2017 by */
|
9
9
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
10
10
|
/* */
|
11
11
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -385,6 +385,9 @@ FT_BEGIN_HEADER
|
|
385
385
|
/* @FT_Outline_Embolden, which uses the same strength in both */
|
386
386
|
/* directions. */
|
387
387
|
/* */
|
388
|
+
/* <Since> */
|
389
|
+
/* 2.4.10 */
|
390
|
+
/* */
|
388
391
|
FT_EXPORT( FT_Error )
|
389
392
|
FT_Outline_EmboldenXY( FT_Outline* outline,
|
390
393
|
FT_Pos xstrength,
|
@@ -0,0 +1,105 @@
|
|
1
|
+
/***************************************************************************/
|
2
|
+
/* */
|
3
|
+
/* ftpcfdrv.h */
|
4
|
+
/* */
|
5
|
+
/* FreeType API for controlling the PCF driver (specification only). */
|
6
|
+
/* */
|
7
|
+
/* Copyright 2017 by */
|
8
|
+
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
|
+
/* */
|
10
|
+
/* This file is part of the FreeType project, and may only be used, */
|
11
|
+
/* modified, and distributed under the terms of the FreeType project */
|
12
|
+
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
13
|
+
/* this file you indicate that you have read the license and */
|
14
|
+
/* understand and accept it fully. */
|
15
|
+
/* */
|
16
|
+
/***************************************************************************/
|
17
|
+
|
18
|
+
|
19
|
+
#ifndef FTPCFDRV_H_
|
20
|
+
#define FTPCFDRV_H_
|
21
|
+
|
22
|
+
#include <ft2build.h>
|
23
|
+
#include FT_FREETYPE_H
|
24
|
+
|
25
|
+
#ifdef FREETYPE_H
|
26
|
+
#error "freetype.h of FreeType 1 has been loaded!"
|
27
|
+
#error "Please fix the directory search order for header files"
|
28
|
+
#error "so that freetype.h of FreeType 2 is found first."
|
29
|
+
#endif
|
30
|
+
|
31
|
+
|
32
|
+
FT_BEGIN_HEADER
|
33
|
+
|
34
|
+
|
35
|
+
/**************************************************************************
|
36
|
+
*
|
37
|
+
* @section:
|
38
|
+
* pcf_driver
|
39
|
+
*
|
40
|
+
* @title:
|
41
|
+
* The PCF driver
|
42
|
+
*
|
43
|
+
* @abstract:
|
44
|
+
* Controlling the PCF driver module.
|
45
|
+
*
|
46
|
+
* @description:
|
47
|
+
* While FreeType's PCF driver doesn't expose API functions by itself,
|
48
|
+
* it is possible to control its behaviour with @FT_Property_Set and
|
49
|
+
* @FT_Property_Get. Right now, there is a single property
|
50
|
+
* `no-long-family-names' available if FreeType is compiled with
|
51
|
+
* PCF_CONFIG_OPTION_LONG_FAMILY_NAMES.
|
52
|
+
*
|
53
|
+
* The PCF driver's module name is `pcf'.
|
54
|
+
*
|
55
|
+
*/
|
56
|
+
|
57
|
+
|
58
|
+
/**************************************************************************
|
59
|
+
*
|
60
|
+
* @property:
|
61
|
+
* no-long-family-names
|
62
|
+
*
|
63
|
+
* @description:
|
64
|
+
* If PCF_CONFIG_OPTION_LONG_FAMILY_NAMES is active while compiling
|
65
|
+
* FreeType, the PCF driver constructs long family names.
|
66
|
+
*
|
67
|
+
* There are many PCF fonts just called `Fixed' which look completely
|
68
|
+
* different, and which have nothing to do with each other. When
|
69
|
+
* selecting `Fixed' in KDE or Gnome one gets results that appear rather
|
70
|
+
* random, the style changes often if one changes the size and one
|
71
|
+
* cannot select some fonts at all. The improve this situation, the PCF
|
72
|
+
* module prepends the foundry name (plus a space) to the family name.
|
73
|
+
* It also checks whether there are `wide' characters; all put together,
|
74
|
+
* family names like `Sony Fixed' or `Misc Fixed Wide' are constructed.
|
75
|
+
*
|
76
|
+
* If `no-long-family-names' is set, this feature gets switched off.
|
77
|
+
*
|
78
|
+
* {
|
79
|
+
* FT_Library library;
|
80
|
+
* FT_Bool no_long_family_names = TRUE;
|
81
|
+
*
|
82
|
+
*
|
83
|
+
* FT_Init_FreeType( &library );
|
84
|
+
*
|
85
|
+
* FT_Property_Set( library, "pcf",
|
86
|
+
* "no-long-family-names",
|
87
|
+
* &no_long_family_names );
|
88
|
+
* }
|
89
|
+
*
|
90
|
+
* @note:
|
91
|
+
* This property can be used with @FT_Property_Get also.
|
92
|
+
*
|
93
|
+
* This property can be set via the `FREETYPE_PROPERTIES' environment
|
94
|
+
* variable (using values 1 and 0 for `on' and `off', respectively).
|
95
|
+
*
|
96
|
+
*/
|
97
|
+
|
98
|
+
|
99
|
+
FT_END_HEADER
|
100
|
+
|
101
|
+
|
102
|
+
#endif /* FTPCFDRV_H_ */
|
103
|
+
|
104
|
+
|
105
|
+
/* END */
|
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType API for accessing PFR-specific data (specification only). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 2002-
|
7
|
+
/* Copyright 2002-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType renderer modules public interface (specification). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 1996-
|
7
|
+
/* Copyright 1996-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -4,7 +4,7 @@
|
|
4
4
|
/* */
|
5
5
|
/* FreeType size objects management (specification). */
|
6
6
|
/* */
|
7
|
-
/* Copyright 1996-
|
7
|
+
/* Copyright 1996-2017 by */
|
8
8
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
9
9
|
/* */
|
10
10
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -2,12 +2,12 @@
|
|
2
2
|
/* */
|
3
3
|
/* ftsnames.h */
|
4
4
|
/* */
|
5
|
-
/* Simple interface to access SFNT name tables (which are used
|
5
|
+
/* Simple interface to access SFNT `name' tables (which are used */
|
6
6
|
/* to hold font names, copyright info, notices, etc.) (specification). */
|
7
7
|
/* */
|
8
8
|
/* This is _not_ used to retrieve glyph names! */
|
9
9
|
/* */
|
10
|
-
/* Copyright 1996-
|
10
|
+
/* Copyright 1996-2017 by */
|
11
11
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
12
12
|
/* */
|
13
13
|
/* This file is part of the FreeType project, and may only be used, */
|
@@ -49,7 +49,7 @@ FT_BEGIN_HEADER
|
|
49
49
|
/* */
|
50
50
|
/* <Description> */
|
51
51
|
/* The TrueType and OpenType specifications allow the inclusion of */
|
52
|
-
/* a special
|
52
|
+
/* a special names table (`name') in font files. This table contains */
|
53
53
|
/* textual (and internationalized) information regarding the font, */
|
54
54
|
/* like family name, copyright, version, etc. */
|
55
55
|
/* */
|
@@ -70,30 +70,37 @@ FT_BEGIN_HEADER
|
|
70
70
|
/* */
|
71
71
|
/* <Fields> */
|
72
72
|
/* platform_id :: The platform ID for `string'. */
|
73
|
+
/* See @TT_PLATFORM_XXX for possible values. */
|
73
74
|
/* */
|
74
75
|
/* encoding_id :: The encoding ID for `string'. */
|
76
|
+
/* See @TT_APPLE_ID_XXX, @TT_MAC_ID_XXX, */
|
77
|
+
/* @TT_ISO_ID_XXX, @TT_MS_ID_XXX, and @TT_ADOBE_ID_XXX */
|
78
|
+
/* for possible values. */
|
75
79
|
/* */
|
76
80
|
/* language_id :: The language ID for `string'. */
|
81
|
+
/* See @TT_MAC_LANGID_XXX and @TT_MS_LANGID_XXX for */
|
82
|
+
/* possible values. */
|
83
|
+
/* */
|
84
|
+
/* Registered OpenType values for `language_id' are */
|
85
|
+
/* always smaller than 0x8000; values equal or larger */
|
86
|
+
/* than 0x8000 usually indicate a language tag string */
|
87
|
+
/* (introduced in OpenType version 1.6). Use function */
|
88
|
+
/* @FT_Get_Sfnt_LangTag with `language_id' as its */
|
89
|
+
/* argument to retrieve the associated language tag. */
|
77
90
|
/* */
|
78
91
|
/* name_id :: An identifier for `string'. */
|
92
|
+
/* See @TT_NAME_ID_XXX for possible values. */
|
79
93
|
/* */
|
80
94
|
/* string :: The `name' string. Note that its format differs */
|
81
|
-
/* depending on the (platform,encoding) pair
|
82
|
-
/*
|
83
|
-
/*
|
84
|
-
/* Generally speaking, the string is not */
|
85
|
-
/* zero-terminated. Please refer to the TrueType */
|
86
|
-
/* specification for details. */
|
95
|
+
/* depending on the (platform,encoding) pair, being */
|
96
|
+
/* either a string of bytes (without a terminating */
|
97
|
+
/* NULL byte) or containing UTF-16BE entities. */
|
87
98
|
/* */
|
88
99
|
/* string_len :: The length of `string' in bytes. */
|
89
100
|
/* */
|
90
101
|
/* <Note> */
|
91
|
-
/*
|
92
|
-
/*
|
93
|
-
/* please refer to the TrueType or OpenType specification. */
|
94
|
-
/* */
|
95
|
-
/* See also @TT_PLATFORM_XXX, @TT_APPLE_ID_XXX, @TT_MAC_ID_XXX, */
|
96
|
-
/* @TT_ISO_ID_XXX, and @TT_MS_ID_XXX. */
|
102
|
+
/* Please refer to the TrueType or OpenType specification for more */
|
103
|
+
/* details. */
|
97
104
|
/* */
|
98
105
|
typedef struct FT_SfntName_
|
99
106
|
{
|
@@ -103,7 +110,7 @@ FT_BEGIN_HEADER
|
|
103
110
|
FT_UShort name_id;
|
104
111
|
|
105
112
|
FT_Byte* string; /* this string is *not* null-terminated! */
|
106
|
-
FT_UInt string_len; /* in bytes
|
113
|
+
FT_UInt string_len; /* in bytes */
|
107
114
|
|
108
115
|
} FT_SfntName;
|
109
116
|
|
@@ -147,47 +154,127 @@ FT_BEGIN_HEADER
|
|
147
154
|
/* */
|
148
155
|
/* <Note> */
|
149
156
|
/* The `string' array returned in the `aname' structure is not */
|
150
|
-
/* null-terminated.
|
151
|
-
/*
|
157
|
+
/* null-terminated. Note that you don't have to deallocate `string' */
|
158
|
+
/* by yourself; FreeType takes care of it if you call @FT_Done_Face. */
|
152
159
|
/* */
|
153
160
|
/* Use @FT_Get_Sfnt_Name_Count to get the total number of available */
|
154
161
|
/* `name' table entries, then do a loop until you get the right */
|
155
162
|
/* platform, encoding, and name ID. */
|
156
163
|
/* */
|
164
|
+
/* `name' table format~1 entries can use language tags also, see */
|
165
|
+
/* @FT_Get_Sfnt_LangTag. */
|
166
|
+
/* */
|
157
167
|
FT_EXPORT( FT_Error )
|
158
168
|
FT_Get_Sfnt_Name( FT_Face face,
|
159
169
|
FT_UInt idx,
|
160
170
|
FT_SfntName *aname );
|
161
171
|
|
162
172
|
|
173
|
+
/*************************************************************************/
|
174
|
+
/* */
|
175
|
+
/* <Struct> */
|
176
|
+
/* FT_SfntLangTag */
|
177
|
+
/* */
|
178
|
+
/* <Description> */
|
179
|
+
/* A structure to model a language tag entry from an SFNT `name' */
|
180
|
+
/* table. */
|
181
|
+
/* */
|
182
|
+
/* <Fields> */
|
183
|
+
/* string :: The language tag string, encoded in UTF-16BE */
|
184
|
+
/* (without trailing NULL bytes). */
|
185
|
+
/* */
|
186
|
+
/* string_len :: The length of `string' in *bytes*. */
|
187
|
+
/* */
|
188
|
+
/* <Note> */
|
189
|
+
/* Please refer to the TrueType or OpenType specification for more */
|
190
|
+
/* details. */
|
191
|
+
/* */
|
192
|
+
typedef struct FT_SfntLangTag_
|
193
|
+
{
|
194
|
+
FT_Byte* string; /* this string is *not* null-terminated! */
|
195
|
+
FT_UInt string_len; /* in bytes */
|
196
|
+
|
197
|
+
} FT_SfntLangTag;
|
198
|
+
|
199
|
+
|
200
|
+
/*************************************************************************/
|
201
|
+
/* */
|
202
|
+
/* <Function> */
|
203
|
+
/* FT_Get_Sfnt_LangTag */
|
204
|
+
/* */
|
205
|
+
/* <Description> */
|
206
|
+
/* Retrieve the language tag associated with a language ID of an SFNT */
|
207
|
+
/* `name' table entry. */
|
208
|
+
/* */
|
209
|
+
/* <Input> */
|
210
|
+
/* face :: A handle to the source face. */
|
211
|
+
/* */
|
212
|
+
/* langID :: The language ID, as returned by @FT_Get_Sfnt_Name. */
|
213
|
+
/* This is always a value larger than 0x8000. */
|
214
|
+
/* */
|
215
|
+
/* <Output> */
|
216
|
+
/* alangTag :: The language tag associated with the `name' table */
|
217
|
+
/* entry's language ID. */
|
218
|
+
/* */
|
219
|
+
/* <Return> */
|
220
|
+
/* FreeType error code. 0~means success. */
|
221
|
+
/* */
|
222
|
+
/* <Note> */
|
223
|
+
/* The `string' array returned in the `alangTag' structure is not */
|
224
|
+
/* null-terminated. Note that you don't have to deallocate `string' */
|
225
|
+
/* by yourself; FreeType takes care of it if you call @FT_Done_Face. */
|
226
|
+
/* */
|
227
|
+
/* Only `name' table format~1 supports language tags. For format~0 */
|
228
|
+
/* tables, this function always returns FT_Err_Invalid_Table. For */
|
229
|
+
/* invalid format~1 language ID values, FT_Err_Invalid_Argument is */
|
230
|
+
/* returned. */
|
231
|
+
/* */
|
232
|
+
FT_EXPORT( FT_Error )
|
233
|
+
FT_Get_Sfnt_LangTag( FT_Face face,
|
234
|
+
FT_UInt langID,
|
235
|
+
FT_SfntLangTag *alangTag );
|
236
|
+
|
237
|
+
|
163
238
|
/***************************************************************************
|
164
239
|
*
|
165
240
|
* @constant:
|
166
|
-
*
|
241
|
+
* FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY
|
167
242
|
*
|
168
243
|
* @description:
|
169
|
-
* A
|
170
|
-
*
|
171
|
-
*
|
172
|
-
*
|
244
|
+
* A tag for @FT_Parameter to make @FT_Open_Face ignore typographic
|
245
|
+
* family names in the `name' table (introduced in OpenType version
|
246
|
+
* 1.4). Use this for backward compatibility with legacy systems that
|
247
|
+
* have a four-faces-per-family restriction.
|
173
248
|
*
|
174
249
|
*/
|
175
|
-
#define
|
250
|
+
#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY \
|
251
|
+
FT_MAKE_TAG( 'i', 'g', 'p', 'f' )
|
252
|
+
|
253
|
+
|
254
|
+
/* this constant is deprecated */
|
255
|
+
#define FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY \
|
256
|
+
FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY
|
176
257
|
|
177
258
|
|
178
259
|
/***************************************************************************
|
179
260
|
*
|
180
261
|
* @constant:
|
181
|
-
*
|
262
|
+
* FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY
|
182
263
|
*
|
183
264
|
* @description:
|
184
|
-
* A
|
185
|
-
*
|
186
|
-
*
|
187
|
-
*
|
265
|
+
* A tag for @FT_Parameter to make @FT_Open_Face ignore typographic
|
266
|
+
* subfamily names in the `name' table (introduced in OpenType version
|
267
|
+
* 1.4). Use this for backward compatibility with legacy systems that
|
268
|
+
* have a four-faces-per-family restriction.
|
188
269
|
*
|
189
270
|
*/
|
190
|
-
#define
|
271
|
+
#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY \
|
272
|
+
FT_MAKE_TAG( 'i', 'g', 'p', 's' )
|
273
|
+
|
274
|
+
|
275
|
+
/* this constant is deprecated */
|
276
|
+
#define FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY \
|
277
|
+
FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY
|
191
278
|
|
192
279
|
/* */
|
193
280
|
|