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.
Files changed (394) hide show
  1. checksums.yaml +4 -4
  2. data/NEWS +20 -0
  3. data/Rakefile +9 -7
  4. data/ext/cairo/rb_cairo.h +1 -1
  5. data/lib/2.2/cairo.so +0 -0
  6. data/lib/2.3/cairo.so +0 -0
  7. data/lib/2.4/cairo.so +0 -0
  8. data/lib/cairo.rb +3 -3
  9. data/test/cairo-test-utils.rb +8 -4
  10. data/test/test_context.rb +1 -1
  11. data/test/test_font_face.rb +1 -1
  12. data/test/test_recording_surface.rb +1 -0
  13. data/vendor/local/bin/fc-cache.exe +0 -0
  14. data/vendor/local/bin/fc-cat.exe +0 -0
  15. data/vendor/local/bin/fc-list.exe +0 -0
  16. data/vendor/local/bin/fc-match.exe +0 -0
  17. data/vendor/local/bin/fc-pattern.exe +0 -0
  18. data/vendor/local/bin/fc-query.exe +0 -0
  19. data/vendor/local/bin/fc-scan.exe +0 -0
  20. data/vendor/local/bin/fc-validate.exe +0 -0
  21. data/vendor/local/bin/freetype-config +78 -28
  22. data/vendor/local/bin/libcairo-2.dll +0 -0
  23. data/vendor/local/bin/libcairo-gobject-2.dll +0 -0
  24. data/vendor/local/bin/libcairo-script-interpreter-2.dll +0 -0
  25. data/vendor/local/bin/libfontconfig-1.dll +0 -0
  26. data/vendor/local/bin/libfreetype-6.dll +0 -0
  27. data/vendor/local/bin/libpixman-1-0.dll +0 -0
  28. data/vendor/local/bin/libpng-config +1 -1
  29. data/vendor/local/bin/libpng16-16.dll +0 -0
  30. data/vendor/local/bin/libpng16-config +1 -1
  31. data/vendor/local/bin/libxml2-2.dll +0 -0
  32. data/vendor/local/bin/png-fix-itxt.exe +0 -0
  33. data/vendor/local/bin/pngfix.exe +0 -0
  34. data/vendor/local/bin/xml2-config +1 -1
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/bin/zlib1211.dll +0 -0
  38. data/vendor/local/etc/fonts/conf.d/30-metric-aliases.conf +56 -16
  39. data/vendor/local/etc/fonts/conf.d/30-urw-aliases.conf +11 -2
  40. data/vendor/local/etc/fonts/conf.d/45-latin.conf +4 -0
  41. data/vendor/local/etc/fonts/conf.d/60-latin.conf +1 -0
  42. data/vendor/local/include/cairo/cairo-pdf.h +7 -8
  43. data/vendor/local/include/cairo/cairo-version.h +1 -1
  44. data/vendor/local/include/fontconfig/fontconfig.h +3 -2
  45. data/vendor/local/include/freetype2/freetype/config/ftconfig.h +10 -1
  46. data/vendor/local/include/freetype2/freetype/config/ftheader.h +14 -1
  47. data/vendor/local/include/freetype2/freetype/config/ftoption.h +79 -22
  48. data/vendor/local/include/freetype2/freetype/config/ftstdlib.h +1 -1
  49. data/vendor/local/include/freetype2/freetype/freetype.h +616 -400
  50. data/vendor/local/include/freetype2/freetype/ftadvanc.h +1 -1
  51. data/vendor/local/include/freetype2/freetype/ftautoh.h +32 -10
  52. data/vendor/local/include/freetype2/freetype/ftbbox.h +1 -1
  53. data/vendor/local/include/freetype2/freetype/ftbdf.h +1 -1
  54. data/vendor/local/include/freetype2/freetype/ftbitmap.h +1 -1
  55. data/vendor/local/include/freetype2/freetype/ftbzip2.h +1 -1
  56. data/vendor/local/include/freetype2/freetype/ftcache.h +1 -1
  57. data/vendor/local/include/freetype2/freetype/ftcffdrv.h +47 -1
  58. data/vendor/local/include/freetype2/freetype/ftchapters.h +1 -0
  59. data/vendor/local/include/freetype2/freetype/ftcid.h +1 -1
  60. data/vendor/local/include/freetype2/freetype/fterrdef.h +5 -1
  61. data/vendor/local/include/freetype2/freetype/fterrors.h +5 -5
  62. data/vendor/local/include/freetype2/freetype/ftfntfmt.h +1 -1
  63. data/vendor/local/include/freetype2/freetype/ftgasp.h +12 -4
  64. data/vendor/local/include/freetype2/freetype/ftglyph.h +11 -2
  65. data/vendor/local/include/freetype2/freetype/ftgxval.h +1 -1
  66. data/vendor/local/include/freetype2/freetype/ftgzip.h +1 -1
  67. data/vendor/local/include/freetype2/freetype/ftimage.h +12 -12
  68. data/vendor/local/include/freetype2/freetype/ftincrem.h +1 -1
  69. data/vendor/local/include/freetype2/freetype/ftlcdfil.h +46 -10
  70. data/vendor/local/include/freetype2/freetype/ftlist.h +1 -1
  71. data/vendor/local/include/freetype2/freetype/ftlzw.h +1 -1
  72. data/vendor/local/include/freetype2/freetype/ftmac.h +6 -5
  73. data/vendor/local/include/freetype2/freetype/ftmm.h +147 -58
  74. data/vendor/local/include/freetype2/freetype/ftmodapi.h +46 -3
  75. data/vendor/local/include/freetype2/freetype/ftmoderr.h +1 -1
  76. data/vendor/local/include/freetype2/freetype/ftotval.h +1 -1
  77. data/vendor/local/include/freetype2/freetype/ftoutln.h +4 -1
  78. data/vendor/local/include/freetype2/freetype/ftpcfdrv.h +105 -0
  79. data/vendor/local/include/freetype2/freetype/ftpfr.h +1 -1
  80. data/vendor/local/include/freetype2/freetype/ftrender.h +1 -1
  81. data/vendor/local/include/freetype2/freetype/ftsizes.h +1 -1
  82. data/vendor/local/include/freetype2/freetype/ftsnames.h +117 -30
  83. data/vendor/local/include/freetype2/freetype/ftstroke.h +2 -2
  84. data/vendor/local/include/freetype2/freetype/ftsynth.h +1 -1
  85. data/vendor/local/include/freetype2/freetype/ftsystem.h +1 -1
  86. data/vendor/local/include/freetype2/freetype/fttrigon.h +1 -1
  87. data/vendor/local/include/freetype2/freetype/ftttdrv.h +5 -6
  88. data/vendor/local/include/freetype2/freetype/fttypes.h +1 -1
  89. data/vendor/local/include/freetype2/freetype/ftwinfnt.h +1 -1
  90. data/vendor/local/include/freetype2/freetype/t1tables.h +3 -3
  91. data/vendor/local/include/freetype2/freetype/ttnameid.h +313 -314
  92. data/vendor/local/include/freetype2/freetype/tttables.h +190 -173
  93. data/vendor/local/include/freetype2/freetype/tttags.h +7 -1
  94. data/vendor/local/include/freetype2/freetype/ttunpat.h +2 -2
  95. data/vendor/local/include/freetype2/ft2build.h +1 -1
  96. data/vendor/local/include/libpng16/png.h +29 -18
  97. data/vendor/local/include/libpng16/pngconf.h +1 -1
  98. data/vendor/local/include/libpng16/pnglibconf.h +5 -2
  99. data/vendor/local/include/libxml2/libxml/HTMLparser.h +2 -2
  100. data/vendor/local/include/libxml2/libxml/schemasInternals.h +1 -1
  101. data/vendor/local/include/libxml2/libxml/xmlreader.h +1 -1
  102. data/vendor/local/include/libxml2/libxml/xmlversion.h +4 -4
  103. data/vendor/local/include/png.h +29 -18
  104. data/vendor/local/include/pngconf.h +1 -1
  105. data/vendor/local/include/pnglibconf.h +5 -2
  106. data/vendor/local/lib/cmake/libxml2/libxml2-config.cmake +2 -2
  107. data/vendor/local/lib/fontconfig.def +1 -1
  108. data/vendor/local/lib/libcairo-gobject.a +0 -0
  109. data/vendor/local/lib/libcairo-gobject.dll.a +0 -0
  110. data/vendor/local/lib/libcairo-gobject.la +2 -2
  111. data/vendor/local/lib/libcairo-script-interpreter.a +0 -0
  112. data/vendor/local/lib/libcairo-script-interpreter.dll.a +0 -0
  113. data/vendor/local/lib/libcairo-script-interpreter.la +2 -2
  114. data/vendor/local/lib/libcairo.a +0 -0
  115. data/vendor/local/lib/libcairo.dll.a +0 -0
  116. data/vendor/local/lib/libcairo.la +2 -2
  117. data/vendor/local/lib/libfontconfig.dll.a +0 -0
  118. data/vendor/local/lib/libfontconfig.la +1 -1
  119. data/vendor/local/lib/libfreetype.a +0 -0
  120. data/vendor/local/lib/libfreetype.dll.a +0 -0
  121. data/vendor/local/lib/libfreetype.la +2 -2
  122. data/vendor/local/lib/libpixman-1.dll.a +0 -0
  123. data/vendor/local/lib/libpng.a +0 -0
  124. data/vendor/local/lib/libpng.dll.a +0 -0
  125. data/vendor/local/lib/libpng.la +2 -2
  126. data/vendor/local/lib/libpng16.a +0 -0
  127. data/vendor/local/lib/libpng16.dll.a +0 -0
  128. data/vendor/local/lib/libpng16.la +2 -2
  129. data/vendor/local/lib/libxml2.a +0 -0
  130. data/vendor/local/lib/libxml2.dll.a +0 -0
  131. data/vendor/local/lib/libxml2.la +1 -1
  132. data/vendor/local/lib/libz.dll.a +0 -0
  133. data/vendor/local/lib/pkgconfig/cairo-fc.pc +1 -1
  134. data/vendor/local/lib/pkgconfig/cairo-ft.pc +1 -1
  135. data/vendor/local/lib/pkgconfig/cairo-gobject.pc +1 -1
  136. data/vendor/local/lib/pkgconfig/cairo-pdf.pc +1 -1
  137. data/vendor/local/lib/pkgconfig/cairo-png.pc +1 -1
  138. data/vendor/local/lib/pkgconfig/cairo-ps.pc +1 -1
  139. data/vendor/local/lib/pkgconfig/cairo-script.pc +1 -1
  140. data/vendor/local/lib/pkgconfig/cairo-svg.pc +1 -1
  141. data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +1 -1
  142. data/vendor/local/lib/pkgconfig/cairo-win32.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/cairo.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/fontconfig.pc +2 -2
  145. data/vendor/local/lib/pkgconfig/freetype2.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/libpng.pc +2 -1
  147. data/vendor/local/lib/pkgconfig/libpng16.pc +2 -1
  148. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +1 -1
  149. data/vendor/local/lib/xml2Conf.sh +1 -1
  150. data/vendor/local/share/aclocal/freetype2.m4 +1 -1
  151. data/vendor/local/share/aclocal/libxml.m4 +1 -1
  152. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/Copyright +0 -0
  153. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testHTML.c +0 -0
  154. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testSAX.c +0 -0
  155. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/testXPath.c +0 -0
  156. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/examples/xmllint.c +78 -78
  157. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/DOM.gif +0 -0
  158. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/FAQ.html +0 -0
  159. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-180x168.gif +0 -0
  160. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/Libxml2-Logo-90x34.gif +0 -0
  161. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/encoding.html +0 -0
  162. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xml +256 -256
  163. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/examples.xsl +0 -0
  164. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/book1.html +0 -0
  165. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/home.png +0 -0
  166. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/index.html +0 -0
  167. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/left.png +0 -0
  168. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-DOCBparser.html +0 -0
  169. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLparser.html +4 -4
  170. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-HTMLtree.html +0 -0
  171. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX.html +0 -0
  172. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-SAX2.html +0 -0
  173. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-c14n.html +0 -0
  174. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-catalog.html +0 -0
  175. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-chvalid.html +0 -0
  176. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-debugXML.html +0 -0
  177. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-dict.html +2 -2
  178. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-encoding.html +0 -0
  179. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-entities.html +0 -0
  180. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-globals.html +0 -0
  181. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-hash.html +2 -2
  182. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-lib.html +0 -0
  183. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-list.html +2 -2
  184. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanoftp.html +0 -0
  185. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-nanohttp.html +0 -0
  186. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parser.html +0 -0
  187. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-parserInternals.html +0 -0
  188. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-pattern.html +0 -0
  189. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-relaxng.html +0 -0
  190. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schemasInternals.html +1 -1
  191. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-schematron.html +0 -0
  192. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-threads.html +0 -0
  193. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-tree.html +1 -1
  194. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-uri.html +0 -0
  195. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-valid.html +0 -0
  196. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xinclude.html +0 -0
  197. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xlink.html +0 -0
  198. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlIO.html +0 -0
  199. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlautomata.html +0 -0
  200. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlerror.html +2 -2
  201. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlexports.html +0 -0
  202. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmemory.html +0 -0
  203. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlmodule.html +0 -0
  204. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlreader.html +2 -2
  205. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlregexp.html +0 -0
  206. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlsave.html +0 -0
  207. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemas.html +0 -0
  208. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlschemastypes.html +0 -0
  209. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlstring.html +3 -3
  210. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlunicode.html +0 -0
  211. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlversion.html +0 -0
  212. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xmlwriter.html +0 -0
  213. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpath.html +1 -1
  214. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpathInternals.html +1 -1
  215. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xpointer.html +1 -1
  216. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/libxml-xzlib.html +0 -0
  217. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/right.png +0 -0
  218. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/html/up.png +0 -0
  219. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/index.html +0 -0
  220. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.c +0 -0
  221. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io1.res +0 -0
  222. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.c +0 -0
  223. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/io2.res +0 -0
  224. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/libxml.gif +0 -0
  225. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse1.c +0 -0
  226. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse2.c +0 -0
  227. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse3.c +0 -0
  228. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/parse4.c +0 -0
  229. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.c +0 -0
  230. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader1.res +0 -0
  231. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader2.c +0 -0
  232. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.c +0 -0
  233. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader3.res +0 -0
  234. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.c +0 -0
  235. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/reader4.res +0 -0
  236. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/redhat.gif +0 -0
  237. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/smallfootonly.gif +0 -0
  238. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/structure.gif +0 -0
  239. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test1.xml +0 -0
  240. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test2.xml +0 -0
  241. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/test3.xml +0 -0
  242. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/testWriter.c +16 -16
  243. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.c +0 -0
  244. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree1.res +0 -0
  245. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.c +1 -2
  246. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tree2.res +0 -0
  247. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tst.xml +0 -0
  248. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apa.html +0 -0
  249. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apb.html +0 -0
  250. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apc.html +0 -0
  251. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apd.html +0 -0
  252. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ape.html +0 -0
  253. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apf.html +0 -0
  254. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/apg.html +0 -0
  255. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/aph.html +0 -0
  256. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/api.html +0 -0
  257. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s02.html +0 -0
  258. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s03.html +0 -0
  259. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s04.html +0 -0
  260. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s05.html +0 -0
  261. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s06.html +0 -0
  262. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s07.html +0 -0
  263. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s08.html +0 -0
  264. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ar01s09.html +0 -0
  265. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/blank.png +0 -0
  266. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/1.png +0 -0
  267. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/10.png +0 -0
  268. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/2.png +0 -0
  269. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/3.png +0 -0
  270. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/4.png +0 -0
  271. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/5.png +0 -0
  272. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/6.png +0 -0
  273. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/7.png +0 -0
  274. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/8.png +0 -0
  275. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/callouts/9.png +0 -0
  276. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/caution.png +0 -0
  277. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/draft.png +0 -0
  278. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/home.png +0 -0
  279. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/important.png +0 -0
  280. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/next.png +0 -0
  281. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/note.png +0 -0
  282. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/prev.png +0 -0
  283. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/tip.png +0 -0
  284. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-blank.png +0 -0
  285. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-minus.png +0 -0
  286. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/toc-plus.png +0 -0
  287. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/up.png +0 -0
  288. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/images/warning.png +0 -0
  289. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddattribute.c +0 -0
  290. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeaddkeyword.c +0 -0
  291. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includeconvert.c +0 -0
  292. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includegetattribute.c +0 -0
  293. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includekeyword.c +0 -0
  294. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/includexpath.c +0 -0
  295. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/index.html +0 -0
  296. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/ix01.html +0 -0
  297. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/tutorial/xmltutorial.pdf +0 -0
  298. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/w3c.png +0 -0
  299. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/writer.xml +0 -0
  300. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xml.html +154 -8
  301. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.c +0 -0
  302. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath1.res +0 -0
  303. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.c +0 -0
  304. data/vendor/local/share/doc/{libxml2-2.9.4 → libxml2-2.9.6}/html/xpath2.res +0 -0
  305. data/vendor/local/share/fontconfig/conf.avail/30-metric-aliases.conf +56 -16
  306. data/vendor/local/share/fontconfig/conf.avail/30-urw-aliases.conf +11 -2
  307. data/vendor/local/share/fontconfig/conf.avail/45-latin.conf +4 -0
  308. data/vendor/local/share/fontconfig/conf.avail/60-latin.conf +1 -0
  309. data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +5 -6
  310. data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -6
  311. data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +5 -6
  312. data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +5 -6
  313. data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +5 -6
  314. data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +5 -6
  315. data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +5 -6
  316. data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +5 -6
  317. data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +5 -6
  318. data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +17 -25
  319. data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +42 -53
  320. data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +48 -63
  321. data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +68 -78
  322. data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +34 -47
  323. data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +82 -92
  324. data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +50 -61
  325. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +18 -27
  326. data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +22 -32
  327. data/vendor/local/share/gtk-doc/html/cairo/cairo-Raster-Sources.html +64 -79
  328. data/vendor/local/share/gtk-doc/html/cairo/cairo-Recording-Surfaces.html +21 -30
  329. data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +99 -125
  330. data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +31 -41
  331. data/vendor/local/share/gtk-doc/html/cairo/cairo-Script-Surfaces.html +43 -56
  332. data/vendor/local/share/gtk-doc/html/cairo/cairo-Tags-and-Links.html +23 -29
  333. data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +41 -48
  334. data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +19 -26
  335. data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +56 -72
  336. data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +28 -39
  337. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +39 -51
  338. data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +34 -47
  339. data/vendor/local/share/gtk-doc/html/cairo/cairo-XCB-Surfaces.html +45 -57
  340. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +62 -79
  341. data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-XRender-Backend.html +18 -27
  342. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +53 -95
  343. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +40 -53
  344. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +71 -87
  345. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +49 -57
  346. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +158 -189
  347. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +76 -92
  348. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +146 -164
  349. data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +234 -264
  350. data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +5 -6
  351. data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +5 -6
  352. data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +5 -6
  353. data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +5 -6
  354. data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +104 -119
  355. data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +236 -6
  356. data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +62 -63
  357. data/vendor/local/share/gtk-doc/html/cairo/index-1.12.html +69 -70
  358. data/vendor/local/share/gtk-doc/html/cairo/index-1.14.html +11 -12
  359. data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +59 -60
  360. data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +35 -36
  361. data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +28 -29
  362. data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +39 -40
  363. data/vendor/local/share/gtk-doc/html/cairo/index-all.html +510 -511
  364. data/vendor/local/share/gtk-doc/html/cairo/index.html +4 -5
  365. data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +5 -6
  366. data/vendor/local/share/gtk-doc/html/cairo/left-insensitive.png +0 -0
  367. data/vendor/local/share/gtk-doc/html/cairo/left.png +0 -0
  368. data/vendor/local/share/gtk-doc/html/cairo/right.png +0 -0
  369. data/vendor/local/share/gtk-doc/html/cairo/style.css +160 -142
  370. data/vendor/local/share/gtk-doc/html/cairo/up-insensitive.png +0 -0
  371. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +4 -4
  372. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +2 -2
  373. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +2 -2
  374. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +2 -2
  375. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +1 -1
  376. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1 -1
  377. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +2 -2
  378. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +2 -2
  379. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +3 -3
  380. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +1 -1
  381. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +1 -1
  382. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +1 -1
  383. data/vendor/local/share/license/cairo/README +1 -1
  384. data/vendor/local/share/license/fontconfig/README +58 -2
  385. data/vendor/local/share/license/freetype/README +5 -5
  386. data/vendor/local/share/license/freetype/README.git +1 -1
  387. data/vendor/local/share/license/libpng/README +6 -6
  388. data/vendor/local/share/license/libxml2/README.zOS +212 -0
  389. data/vendor/local/share/man/man1/freetype-config.1 +44 -6
  390. data/vendor/local/share/man/man3/libpng.3 +106 -48
  391. data/vendor/local/share/man/man3/libpngpf.3 +4 -4
  392. data/vendor/local/share/man/man5/png.5 +5 -5
  393. metadata +175 -174
  394. 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: PDF Surfaces</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>PDF 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-Image-Surfaces.html" title="Image Surfaces">
10
10
  <link rel="next" href="cairo-PNG-Support.html" title="PNG Support">
11
- <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
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="10"><tr valign="middle">
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"> <span class="dim">|</span> 
18
- <a href="#cairo-PDF-Surfaces.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-PDF-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-PDF-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-PDF-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">
@@ -124,7 +123,7 @@
124
123
  </div>
125
124
  <div class="refsect1">
126
125
  <a name="cairo-PDF-Surfaces.other"></a><h2>Types and Values</h2>
127
- <div class="informaltable"><table width="100%" border="0">
126
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
128
127
  <colgroup>
129
128
  <col width="150px" class="name">
130
129
  <col class="description">
@@ -154,11 +153,6 @@
154
153
  </table></div>
155
154
  </div>
156
155
  <div class="refsect1">
157
- <a name="cairo-PDF-Surfaces.object-hierarchy"></a><h2>Object Hierarchy</h2>
158
- <pre class="screen">
159
- </pre>
160
- </div>
161
- <div class="refsect1">
162
156
  <a name="cairo-PDF-Surfaces.description"></a><h2>Description</h2>
163
157
  <p>The PDF surface is used to render cairo graphics to Adobe
164
158
  PDF files and is a multi-page vector surface backend.</p>
@@ -190,8 +184,8 @@ cairo_pdf_surface_create (<em class="parameter"><code>const <span class="type">c
190
184
  to <em class="parameter"><code>filename</code></em>
191
185
  .</p>
192
186
  <div class="refsect3">
193
- <a name="id-1.5.5.7.2.5"></a><h4>Parameters</h4>
194
- <div class="informaltable"><table width="100%" border="0">
187
+ <a name="cairo-pdf-surface-create.parameters"></a><h4>Parameters</h4>
188
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
195
189
  <colgroup>
196
190
  <col width="150px" class="parameters_name">
197
191
  <col class="parameters_description">
@@ -220,16 +214,15 @@ temporary file.</p></td>
220
214
  </table></div>
221
215
  </div>
222
216
  <div class="refsect3">
223
- <a name="id-1.5.5.7.2.6"></a><h4>Returns</h4>
217
+ <a name="cairo-pdf-surface-create.returns"></a><h4>Returns</h4>
224
218
  <p> a pointer to the newly created surface. The caller
225
219
  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
226
220
  with it.</p>
227
221
  <p>This function always returns a valid pointer, but it will return a
228
222
  pointer to a "nil" surface if an error such as out of memory
229
223
  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>
230
- <p></p>
231
224
  </div>
232
- <p class="since">Since 1.2</p>
225
+ <p class="since">Since: 1.2</p>
233
226
  </div>
234
227
  <hr>
235
228
  <div class="refsect2">
@@ -244,8 +237,8 @@ incrementally to the stream represented by <em class="parameter"><code>write_fun
244
237
  and <em class="parameter"><code>closure</code></em>
245
238
  .</p>
246
239
  <div class="refsect3">
247
- <a name="id-1.5.5.7.3.5"></a><h4>Parameters</h4>
248
- <div class="informaltable"><table width="100%" border="0">
240
+ <a name="cairo-pdf-surface-create-for-stream.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">
@@ -282,16 +275,15 @@ generating any temporary files.</p></td>
282
275
  </table></div>
283
276
  </div>
284
277
  <div class="refsect3">
285
- <a name="id-1.5.5.7.3.6"></a><h4>Returns</h4>
278
+ <a name="cairo-pdf-surface-create-for-stream.returns"></a><h4>Returns</h4>
286
279
  <p> a pointer to the newly created surface. The caller
287
280
  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
288
281
  with it.</p>
289
282
  <p>This function always returns a valid pointer, but it will return a
290
283
  pointer to a "nil" surface if an error such as out of memory
291
284
  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>
292
- <p></p>
293
285
  </div>
294
- <p class="since">Since 1.2</p>
286
+ <p class="since">Since: 1.2</p>
295
287
  </div>
296
288
  <hr>
297
289
  <div class="refsect2">
@@ -307,8 +299,8 @@ have been performed on the given surface. The simplest way to do
307
299
  this is to call this function immediately after creating the
308
300
  surface.</p>
309
301
  <div class="refsect3">
310
- <a name="id-1.5.5.7.4.6"></a><h4>Parameters</h4>
311
- <div class="informaltable"><table width="100%" border="0">
302
+ <a name="cairo-pdf-surface-restrict-to-version.parameters"></a><h4>Parameters</h4>
303
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
312
304
  <colgroup>
313
305
  <col width="150px" class="parameters_name">
314
306
  <col class="parameters_description">
@@ -328,7 +320,7 @@ surface.</p>
328
320
  </tbody>
329
321
  </table></div>
330
322
  </div>
331
- <p class="since">Since 1.10</p>
323
+ <p class="since">Since: 1.10</p>
332
324
  </div>
333
325
  <hr>
334
326
  <div class="refsect2">
@@ -339,8 +331,8 @@ cairo_pdf_get_versions (<em class="parameter"><code><a class="link" href="cairo-
339
331
  <p>Used to retrieve the list of supported versions. See
340
332
  <a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-restrict-to-version" title="cairo_pdf_surface_restrict_to_version ()"><code class="function">cairo_pdf_surface_restrict_to_version()</code></a>.</p>
341
333
  <div class="refsect3">
342
- <a name="id-1.5.5.7.5.5"></a><h4>Parameters</h4>
343
- <div class="informaltable"><table width="100%" border="0">
334
+ <a name="cairo-pdf-get-versions.parameters"></a><h4>Parameters</h4>
335
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
344
336
  <colgroup>
345
337
  <col width="150px" class="parameters_name">
346
338
  <col class="parameters_description">
@@ -360,7 +352,7 @@ cairo_pdf_get_versions (<em class="parameter"><code><a class="link" href="cairo-
360
352
  </tbody>
361
353
  </table></div>
362
354
  </div>
363
- <p class="since">Since 1.10</p>
355
+ <p class="since">Since: 1.10</p>
364
356
  </div>
365
357
  <hr>
366
358
  <div class="refsect2">
@@ -373,8 +365,8 @@ will return <code class="literal">NULL</code> if <em class="parameter"><code>ver
373
365
  isn't valid. See <a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-get-versions" title="cairo_pdf_get_versions ()"><code class="function">cairo_pdf_get_versions()</code></a>
374
366
  for a way to get the list of valid version ids.</p>
375
367
  <div class="refsect3">
376
- <a name="id-1.5.5.7.6.5"></a><h4>Parameters</h4>
377
- <div class="informaltable"><table width="100%" border="0">
368
+ <a name="cairo-pdf-version-to-string.parameters"></a><h4>Parameters</h4>
369
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
378
370
  <colgroup>
379
371
  <col width="150px" class="parameters_name">
380
372
  <col class="parameters_description">
@@ -388,11 +380,10 @@ for a way to get the list of valid version ids.</p>
388
380
  </table></div>
389
381
  </div>
390
382
  <div class="refsect3">
391
- <a name="id-1.5.5.7.6.6"></a><h4>Returns</h4>
383
+ <a name="cairo-pdf-version-to-string.returns"></a><h4>Returns</h4>
392
384
  <p> the string associated to given version.</p>
393
- <p></p>
394
385
  </div>
395
- <p class="since">Since 1.10</p>
386
+ <p class="since">Since: 1.10</p>
396
387
  </div>
397
388
  <hr>
398
389
  <div class="refsect2">
@@ -409,8 +400,8 @@ this is to call this function immediately after creating the
409
400
  surface or immediately after completing a page with either
410
401
  <a class="link" href="cairo-cairo-t.html#cairo-show-page" title="cairo_show_page ()"><code class="function">cairo_show_page()</code></a> or <a class="link" href="cairo-cairo-t.html#cairo-copy-page" title="cairo_copy_page ()"><code class="function">cairo_copy_page()</code></a>.</p>
411
402
  <div class="refsect3">
412
- <a name="id-1.5.5.7.7.6"></a><h4>Parameters</h4>
413
- <div class="informaltable"><table width="100%" border="0">
403
+ <a name="cairo-pdf-surface-set-size.parameters"></a><h4>Parameters</h4>
404
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
414
405
  <colgroup>
415
406
  <col width="150px" class="parameters_name">
416
407
  <col class="parameters_description">
@@ -435,7 +426,7 @@ surface or immediately after completing a page with either
435
426
  </tbody>
436
427
  </table></div>
437
428
  </div>
438
- <p class="since">Since 1.2</p>
429
+ <p class="since">Since: 1.2</p>
439
430
  </div>
440
431
  <hr>
441
432
  <div class="refsect2">
@@ -444,19 +435,20 @@ surface or immediately after completing a page with either
444
435
  cairo_pdf_surface_add_outline (<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>,
445
436
  <em class="parameter"><code><span class="type">int</span> parent_id</code></em>,
446
437
  <em class="parameter"><code>const <span class="type">char</span> *utf8</code></em>,
447
- <em class="parameter"><code>const <span class="type">char</span> *dest</code></em>,
438
+ <em class="parameter"><code>const <span class="type">char</span> *link_attribs</code></em>,
448
439
  <em class="parameter"><code><a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-outline-flags-t" title="enum cairo_pdf_outline_flags_t"><span class="type">cairo_pdf_outline_flags_t</span></a> flags</code></em>);</pre>
449
440
  <p>Add an item to the document outline hierarchy with the name <em class="parameter"><code>utf8</code></em>
450
- that links to the
451
- destinaton <em class="parameter"><code>dest</code></em>
452
- . Destinations are created using
453
- <a class="link" href="cairo-Tags-and-Links.html#cairo-tag-begin" title="cairo_tag_begin ()"><code class="function">cairo_tag_begin()</code></a>/<a class="link" href="cairo-Tags-and-Links.html#cairo-tag-end" title="cairo_tag_end ()"><code class="function">cairo_tag_end()</code></a> with the
454
- <a class="link" href="cairo-Tags-and-Links.html#CAIRO-TAG-DEST:CAPS" title="CAIRO_TAG_DEST"><code class="literal">CAIRO_TAG_DEST</code></a>. The item will be a child of the item with id <em class="parameter"><code>parent_id</code></em>
455
- . Use <a class="link" href="cairo-PDF-Surfaces.html#CAIRO-PDF-OUTLINE-ROOT:CAPS" title="CAIRO_PDF_OUTLINE_ROOT"><code class="literal">CAIRO_PDF_OUTLINE_ROOT</code></a>
456
- as the parent id of top level items.</p>
441
+
442
+ that links to the location specified by <em class="parameter"><code>link_attribs</code></em>
443
+ . Link
444
+ attributes have the same keys and values as the <a class="link" href="cairo-Tags-and-Links.html#link" title="Link Tags">Link Tag</a>,
445
+ excluding the "rect" attribute. The item will be a child of the
446
+ item with id <em class="parameter"><code>parent_id</code></em>
447
+ . Use <a class="link" href="cairo-PDF-Surfaces.html#CAIRO-PDF-OUTLINE-ROOT:CAPS" title="CAIRO_PDF_OUTLINE_ROOT"><code class="literal">CAIRO_PDF_OUTLINE_ROOT</code></a> as the parent
448
+ id of top level items.</p>
457
449
  <div class="refsect3">
458
- <a name="id-1.5.5.7.8.5"></a><h4>Parameters</h4>
459
- <div class="informaltable"><table width="100%" border="0">
450
+ <a name="cairo-pdf-surface-add-outline.parameters"></a><h4>Parameters</h4>
451
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
460
452
  <colgroup>
461
453
  <col width="150px" class="parameters_name">
462
454
  <col class="parameters_description">
@@ -479,8 +471,8 @@ as the parent id of top level items.</p>
479
471
  <td class="parameter_annotations"> </td>
480
472
  </tr>
481
473
  <tr>
482
- <td class="parameter_name"><p>dest</p></td>
483
- <td class="parameter_description"><p>the name of the destination</p></td>
474
+ <td class="parameter_name"><p>link_attribs</p></td>
475
+ <td class="parameter_description"><p>the link attributes specifying where this outline links to</p></td>
484
476
  <td class="parameter_annotations"> </td>
485
477
  </tr>
486
478
  <tr>
@@ -492,11 +484,10 @@ as the parent id of top level items.</p>
492
484
  </table></div>
493
485
  </div>
494
486
  <div class="refsect3">
495
- <a name="id-1.5.5.7.8.6"></a><h4>Returns</h4>
487
+ <a name="cairo-pdf-surface-add-outline.returns"></a><h4>Returns</h4>
496
488
  <p> the id for the added item.</p>
497
- <p></p>
498
489
  </div>
499
- <p class="since">Since 1.16</p>
490
+ <p class="since">Since: 1.16</p>
500
491
  </div>
501
492
  <hr>
502
493
  <div class="refsect2">
@@ -516,8 +507,8 @@ cairo_pdf_surface_set_metadata (surface, CAIRO_PDF_METADATA_TITLE, "My Document"
516
507
  cairo_pdf_surface_set_metadata (surface, CAIRO_PDF_METADATA_CREATE_DATE, "2015-12-31T23:59+02:00");
517
508
  </pre></div>
518
509
  <div class="refsect3">
519
- <a name="id-1.5.5.7.9.7"></a><h4>Parameters</h4>
520
- <div class="informaltable"><table width="100%" border="0">
510
+ <a name="cairo-pdf-surface-set-metadata.parameters"></a><h4>Parameters</h4>
511
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
521
512
  <colgroup>
522
513
  <col width="150px" class="parameters_name">
523
514
  <col class="parameters_description">
@@ -542,7 +533,7 @@ cairo_pdf_surface_set_metadata (surface, CAIRO_PDF_METADATA_CREATE_DATE, "2015-1
542
533
  </tbody>
543
534
  </table></div>
544
535
  </div>
545
- <p class="since">Since 1.16</p>
536
+ <p class="since">Since: 1.16</p>
546
537
  </div>
547
538
  <hr>
548
539
  <div class="refsect2">
@@ -552,8 +543,8 @@ cairo_pdf_surface_set_page_label (<em class="parameter"><code><a class="link" hr
552
543
  <em class="parameter"><code>const <span class="type">char</span> *utf8</code></em>);</pre>
553
544
  <p>Set page label for the current page.</p>
554
545
  <div class="refsect3">
555
- <a name="id-1.5.5.7.10.5"></a><h4>Parameters</h4>
556
- <div class="informaltable"><table width="100%" border="0">
546
+ <a name="cairo-pdf-surface-set-page-label.parameters"></a><h4>Parameters</h4>
547
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
557
548
  <colgroup>
558
549
  <col width="150px" class="parameters_name">
559
550
  <col class="parameters_description">
@@ -573,7 +564,7 @@ cairo_pdf_surface_set_page_label (<em class="parameter"><code><a class="link" hr
573
564
  </tbody>
574
565
  </table></div>
575
566
  </div>
576
- <p class="since">Since 1.16</p>
567
+ <p class="since">Since: 1.16</p>
577
568
  </div>
578
569
  <hr>
579
570
  <div class="refsect2">
@@ -586,8 +577,8 @@ cairo_pdf_surface_set_thumbnail_size (<em class="parameter"><code><a class="link
586
577
  pages. Setting a width or height of 0 disables thumbnails for the
587
578
  current and subsequent pages.</p>
588
579
  <div class="refsect3">
589
- <a name="id-1.5.5.7.11.5"></a><h4>Parameters</h4>
590
- <div class="informaltable"><table width="100%" border="0">
580
+ <a name="cairo-pdf-surface-set-thumbnail-size.parameters"></a><h4>Parameters</h4>
581
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
591
582
  <colgroup>
592
583
  <col width="150px" class="parameters_name">
593
584
  <col class="parameters_description">
@@ -612,7 +603,7 @@ current and subsequent pages.</p>
612
603
  </tbody>
613
604
  </table></div>
614
605
  </div>
615
- <p class="since">Since 1.16</p>
606
+ <p class="since">Since: 1.16</p>
616
607
  </div>
617
608
  </div>
618
609
  <div class="refsect1">
@@ -623,7 +614,7 @@ current and subsequent pages.</p>
623
614
  </pre>
624
615
  <p>Defined if the PDF surface backend is available.
625
616
  This macro can be used to conditionally compile backend-specific code.</p>
626
- <p class="since">Since 1.2</p>
617
+ <p class="since">Since: 1.2</p>
627
618
  </div>
628
619
  <hr>
629
620
  <div class="refsect2">
@@ -631,7 +622,7 @@ This macro can be used to conditionally compile backend-specific code.</p>
631
622
  <pre class="programlisting">#define CAIRO_PDF_OUTLINE_ROOT 0
632
623
  </pre>
633
624
  <p>The root outline item in <a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-add-outline" title="cairo_pdf_surface_add_outline ()"><code class="function">cairo_pdf_surface_add_outline()</code></a>.</p>
634
- <p class="since">Since 1.16</p>
625
+ <p class="since">Since: 1.16</p>
635
626
  </div>
636
627
  <hr>
637
628
  <div class="refsect2">
@@ -641,8 +632,8 @@ This macro can be used to conditionally compile backend-specific code.</p>
641
632
  an outline item. These flags may be bitwise-or'd to produce any
642
633
  combination of flags.</p>
643
634
  <div class="refsect3">
644
- <a name="id-1.5.5.8.4.4"></a><h4>Members</h4>
645
- <div class="informaltable"><table width="100%" border="0">
635
+ <a name="cairo-pdf-outline-flags-t.members"></a><h4>Members</h4>
636
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
646
637
  <colgroup>
647
638
  <col width="300px" class="enum_members_name">
648
639
  <col class="enum_members_description">
@@ -650,21 +641,21 @@ combination of flags.</p>
650
641
  </colgroup>
651
642
  <tbody>
652
643
  <tr>
653
- <td class="enum_member_name"><p><a name="CAIRO-BOOKMARK-FLAG-OPEN:CAPS"></a>CAIRO_BOOKMARK_FLAG_OPEN</p></td>
644
+ <td class="enum_member_name"><p><a name="CAIRO-PDF-OUTLINE-FLAG-OPEN:CAPS"></a>CAIRO_PDF_OUTLINE_FLAG_OPEN</p></td>
654
645
  <td class="enum_member_description">
655
646
  <p>The outline item defaults to open in the PDF viewer (Since 1.16)</p>
656
647
  </td>
657
648
  <td class="enum_member_annotations"> </td>
658
649
  </tr>
659
650
  <tr>
660
- <td class="enum_member_name"><p><a name="CAIRO-BOOKMARK-FLAG-BOLD:CAPS"></a>CAIRO_BOOKMARK_FLAG_BOLD</p></td>
651
+ <td class="enum_member_name"><p><a name="CAIRO-PDF-OUTLINE-FLAG-BOLD:CAPS"></a>CAIRO_PDF_OUTLINE_FLAG_BOLD</p></td>
661
652
  <td class="enum_member_description">
662
653
  <p>The outline item is displayed by the viewer in bold text (Since 1.16)</p>
663
654
  </td>
664
655
  <td class="enum_member_annotations"> </td>
665
656
  </tr>
666
657
  <tr>
667
- <td class="enum_member_name"><p><a name="CAIRO-BOOKMARK-FLAG-ITALIC:CAPS"></a>CAIRO_BOOKMARK_FLAG_ITALIC</p></td>
658
+ <td class="enum_member_name"><p><a name="CAIRO-PDF-OUTLINE-FLAG-ITALIC:CAPS"></a>CAIRO_PDF_OUTLINE_FLAG_ITALIC</p></td>
668
659
  <td class="enum_member_description">
669
660
  <p>The outline item is displayed by the viewer in italic text (Since 1.16)</p>
670
661
  </td>
@@ -673,7 +664,7 @@ combination of flags.</p>
673
664
  </tbody>
674
665
  </table></div>
675
666
  </div>
676
- <p class="since">Since 1.16</p>
667
+ <p class="since">Since: 1.16</p>
677
668
  </div>
678
669
  <hr>
679
670
  <div class="refsect2">
@@ -681,8 +672,8 @@ combination of flags.</p>
681
672
  <p><a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-metadata-t" title="enum cairo_pdf_metadata_t"><span class="type">cairo_pdf_metadata_t</span></a> is used by the
682
673
  <a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-surface-set-metadata" title="cairo_pdf_surface_set_metadata ()"><code class="function">cairo_pdf_surface_set_metadata()</code></a> function specify the metadata to set.</p>
683
674
  <div class="refsect3">
684
- <a name="id-1.5.5.8.5.4"></a><h4>Members</h4>
685
- <div class="informaltable"><table width="100%" border="0">
675
+ <a name="cairo-pdf-metadata-t.members"></a><h4>Members</h4>
676
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
686
677
  <colgroup>
687
678
  <col width="300px" class="enum_members_name">
688
679
  <col class="enum_members_description">
@@ -741,7 +732,7 @@ combination of flags.</p>
741
732
  </tbody>
742
733
  </table></div>
743
734
  </div>
744
- <p class="since">Since 1.16</p>
735
+ <p class="since">Since: 1.16</p>
745
736
  </div>
746
737
  <hr>
747
738
  <div class="refsect2">
@@ -749,8 +740,8 @@ combination of flags.</p>
749
740
  <p><a class="link" href="cairo-PDF-Surfaces.html#cairo-pdf-version-t" title="enum cairo_pdf_version_t"><span class="type">cairo_pdf_version_t</span></a> is used to describe the version number of the PDF
750
741
  specification that a generated PDF file will conform to.</p>
751
742
  <div class="refsect3">
752
- <a name="id-1.5.5.8.6.4"></a><h4>Members</h4>
753
- <div class="informaltable"><table width="100%" border="0">
743
+ <a name="cairo-pdf-version-t.members"></a><h4>Members</h4>
744
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
754
745
  <colgroup>
755
746
  <col width="300px" class="enum_members_name">
756
747
  <col class="enum_members_description">
@@ -774,7 +765,7 @@ specification that a generated PDF file will conform to.</p>
774
765
  </tbody>
775
766
  </table></div>
776
767
  </div>
777
- <p class="since">Since 1.10</p>
768
+ <p class="since">Since: 1.10</p>
778
769
  </div>
779
770
  </div>
780
771
  <div class="refsect1">
@@ -783,7 +774,6 @@ specification that a generated PDF file will conform to.</p>
783
774
  </div>
784
775
  </div>
785
776
  <div class="footer">
786
- <hr>
787
- Generated by GTK-Doc V1.20</div>
777
+ <hr>Generated by GTK-Doc V1.25</div>
788
778
  </body>
789
779
  </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: PNG Support</title>
6
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
5
+ <title>PNG Support: Cairo: A Vector Graphics Library</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7
7
  <link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
8
8
  <link rel="up" href="cairo-surfaces.html" title="Surfaces">
9
9
  <link rel="prev" href="cairo-PDF-Surfaces.html" title="PDF Surfaces">
10
10
  <link rel="next" href="cairo-PostScript-Surfaces.html" title="PostScript Surfaces">
11
- <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
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="10"><tr valign="middle">
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"> <span class="dim">|</span> 
18
- <a href="#cairo-PNG-Support.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
- <a href="#cairo-PNG-Support.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18
+ <a href="#cairo-PNG-Support.description" class="shortcut">Description</a></span>
20
19
  </td>
21
20
  <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
21
  <td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
@@ -34,7 +33,7 @@
34
33
  </tr></table></div>
35
34
  <div class="refsect1">
36
35
  <a name="cairo-PNG-Support.functions"></a><h2>Functions</h2>
37
- <div class="informaltable"><table width="100%" border="0">
36
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
38
37
  <colgroup>
39
38
  <col width="150px" class="functions_return">
40
39
  <col class="functions_name">
@@ -93,7 +92,7 @@
93
92
  </div>
94
93
  <div class="refsect1">
95
94
  <a name="cairo-PNG-Support.other"></a><h2>Types and Values</h2>
96
- <div class="informaltable"><table width="100%" border="0">
95
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
97
96
  <colgroup>
98
97
  <col width="150px" class="name">
99
98
  <col class="description">
@@ -105,11 +104,6 @@
105
104
  </table></div>
106
105
  </div>
107
106
  <div class="refsect1">
108
- <a name="cairo-PNG-Support.object-hierarchy"></a><h2>Object Hierarchy</h2>
109
- <pre class="screen">
110
- </pre>
111
- </div>
112
- <div class="refsect1">
113
107
  <a name="cairo-PNG-Support.description"></a><h2>Description</h2>
114
108
  <p>The PNG functions allow reading PNG images into image surfaces, and writing
115
109
  any surface to a PNG file.</p>
@@ -130,8 +124,8 @@ cairo_image_surface_create_from_png (<em class="parameter"><code>const <span cla
130
124
  <p>Creates a new image surface and initializes the contents to the
131
125
  given PNG file.</p>
132
126
  <div class="refsect3">
133
- <a name="id-1.5.6.7.2.5"></a><h4>Parameters</h4>
134
- <div class="informaltable"><table width="100%" border="0">
127
+ <a name="cairo-image-surface-create-from-png.parameters"></a><h4>Parameters</h4>
128
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
135
129
  <colgroup>
136
130
  <col width="150px" class="parameters_name">
137
131
  <col class="parameters_description">
@@ -145,7 +139,7 @@ given PNG file.</p>
145
139
  </table></div>
146
140
  </div>
147
141
  <div class="refsect3">
148
- <a name="id-1.5.6.7.2.6"></a><h4>Returns</h4>
142
+ <a name="cairo-image-surface-create-from-png.returns"></a><h4>Returns</h4>
149
143
  <p> a new <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
150
144
  of the PNG file, or a "nil" surface if any error occurred. A nil
151
145
  surface can be checked for with cairo_surface_status(surface) which
@@ -157,9 +151,8 @@ may return one of the following values:</p>
157
151
  <p>Alternatively, you can allow errors to propagate through the drawing
158
152
  operations and check the status on the context upon completion
159
153
  using <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</p>
160
- <p></p>
161
154
  </div>
162
- <p class="since">Since 1.0</p>
155
+ <p class="since">Since: 1.0</p>
163
156
  </div>
164
157
  <hr>
165
158
  <div class="refsect2">
@@ -176,8 +169,8 @@ length of the data in bytes. The read function should return
176
169
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully read,
177
170
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-READ-ERROR:CAPS"><code class="literal">CAIRO_STATUS_READ_ERROR</code></a> otherwise.</p>
178
171
  <div class="refsect3">
179
- <a name="id-1.5.6.7.3.5"></a><h4>Parameters</h4>
180
- <div class="informaltable"><table width="100%" border="0">
172
+ <a name="cairo-read-func-t.parameters"></a><h4>Parameters</h4>
173
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
181
174
  <colgroup>
182
175
  <col width="150px" class="parameters_name">
183
176
  <col class="parameters_description">
@@ -203,11 +196,10 @@ length of the data in bytes. The read function should return
203
196
  </table></div>
204
197
  </div>
205
198
  <div class="refsect3">
206
- <a name="id-1.5.6.7.3.6"></a><h4>Returns</h4>
199
+ <a name="cairo-read-func-t.returns"></a><h4>Returns</h4>
207
200
  <p> the status code of the read operation</p>
208
- <p></p>
209
201
  </div>
210
- <p class="since">Since 1.0</p>
202
+ <p class="since">Since: 1.0</p>
211
203
  </div>
212
204
  <hr>
213
205
  <div class="refsect2">
@@ -220,8 +212,8 @@ cairo_image_surface_create_from_png_stream
220
212
  via the <em class="parameter"><code>read_func</code></em>
221
213
  function.</p>
222
214
  <div class="refsect3">
223
- <a name="id-1.5.6.7.4.5"></a><h4>Parameters</h4>
224
- <div class="informaltable"><table width="100%" border="0">
215
+ <a name="cairo-image-surface-create-from-png-stream.parameters"></a><h4>Parameters</h4>
216
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
225
217
  <colgroup>
226
218
  <col width="150px" class="parameters_name">
227
219
  <col class="parameters_description">
@@ -243,7 +235,7 @@ via the <em class="parameter"><code>read_func</code></em>
243
235
  </table></div>
244
236
  </div>
245
237
  <div class="refsect3">
246
- <a name="id-1.5.6.7.4.6"></a><h4>Returns</h4>
238
+ <a name="cairo-image-surface-create-from-png-stream.returns"></a><h4>Returns</h4>
247
239
  <p> a new <a class="link" href="cairo-cairo-surface-t.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
248
240
  of the PNG file or a "nil" surface if the data read is not a valid PNG image
249
241
  or memory could not be allocated for the operation. A nil
@@ -255,9 +247,8 @@ may return one of the following values:</p>
255
247
  <p>Alternatively, you can allow errors to propagate through the drawing
256
248
  operations and check the status on the context upon completion
257
249
  using <a class="link" href="cairo-cairo-t.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.</p>
258
- <p></p>
259
250
  </div>
260
- <p class="since">Since 1.0</p>
251
+ <p class="since">Since: 1.0</p>
261
252
  </div>
262
253
  <hr>
263
254
  <div class="refsect2">
@@ -270,8 +261,8 @@ cairo_surface_write_to_png (<em class="parameter"><code><a class="link" href="ca
270
261
  as a PNG
271
262
  image.</p>
272
263
  <div class="refsect3">
273
- <a name="id-1.5.6.7.5.5"></a><h4>Parameters</h4>
274
- <div class="informaltable"><table width="100%" border="0">
264
+ <a name="cairo-surface-write-to-png.parameters"></a><h4>Parameters</h4>
265
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
275
266
  <colgroup>
276
267
  <col width="150px" class="parameters_name">
277
268
  <col class="parameters_description">
@@ -292,7 +283,7 @@ image.</p>
292
283
  </table></div>
293
284
  </div>
294
285
  <div class="refsect3">
295
- <a name="id-1.5.6.7.5.6"></a><h4>Returns</h4>
286
+ <a name="cairo-surface-write-to-png.returns"></a><h4>Returns</h4>
296
287
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
297
288
  successfully. Otherwise, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> if memory could not
298
289
  be allocated for the operation or
@@ -300,9 +291,8 @@ be allocated for the operation or
300
291
  pixel contents, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> if an I/O error occurs
301
292
  while attempting to write the file, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PNG-ERROR:CAPS"><code class="literal">CAIRO_STATUS_PNG_ERROR</code></a> if libpng
302
293
  returned an error.</p>
303
- <p></p>
304
294
  </div>
305
- <p class="since">Since 1.0</p>
295
+ <p class="since">Since: 1.0</p>
306
296
  </div>
307
297
  <hr>
308
298
  <div class="refsect2">
@@ -319,8 +309,8 @@ data in bytes. The write function should return
319
309
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully written,
320
310
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-WRITE-ERROR:CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> otherwise.</p>
321
311
  <div class="refsect3">
322
- <a name="id-1.5.6.7.6.5"></a><h4>Parameters</h4>
323
- <div class="informaltable"><table width="100%" border="0">
312
+ <a name="cairo-write-func-t.parameters"></a><h4>Parameters</h4>
313
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
324
314
  <colgroup>
325
315
  <col width="150px" class="parameters_name">
326
316
  <col class="parameters_description">
@@ -346,11 +336,10 @@ data in bytes. The write function should return
346
336
  </table></div>
347
337
  </div>
348
338
  <div class="refsect3">
349
- <a name="id-1.5.6.7.6.6"></a><h4>Returns</h4>
339
+ <a name="cairo-write-func-t.returns"></a><h4>Returns</h4>
350
340
  <p> the status code of the write operation</p>
351
- <p></p>
352
341
  </div>
353
- <p class="since">Since 1.0</p>
342
+ <p class="since">Since: 1.0</p>
354
343
  </div>
355
344
  <hr>
356
345
  <div class="refsect2">
@@ -361,8 +350,8 @@ cairo_surface_write_to_png_stream (<em class="parameter"><code><a class="link" h
361
350
  <em class="parameter"><code><span class="type">void</span> *closure</code></em>);</pre>
362
351
  <p>Writes the image surface to the write function.</p>
363
352
  <div class="refsect3">
364
- <a name="id-1.5.6.7.7.5"></a><h4>Parameters</h4>
365
- <div class="informaltable"><table width="100%" border="0">
353
+ <a name="cairo-surface-write-to-png-stream.parameters"></a><h4>Parameters</h4>
354
+ <div class="informaltable"><table class="informaltable" width="100%" border="0">
366
355
  <colgroup>
367
356
  <col width="150px" class="parameters_name">
368
357
  <col class="parameters_description">
@@ -388,16 +377,15 @@ cairo_surface_write_to_png_stream (<em class="parameter"><code><a class="link" h
388
377
  </table></div>
389
378
  </div>
390
379
  <div class="refsect3">
391
- <a name="id-1.5.6.7.7.6"></a><h4>Returns</h4>
380
+ <a name="cairo-surface-write-to-png-stream.returns"></a><h4>Returns</h4>
392
381
  <p> <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SUCCESS:CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
393
382
  successfully. Otherwise, <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-NO-MEMORY:CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> is returned if
394
383
  memory could not be allocated for the operation,
395
384
  <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH:CAPS"><code class="literal">CAIRO_STATUS_SURFACE_TYPE_MISMATCH</code></a> if the surface does not have
396
385
  pixel contents, or <a class="link" href="cairo-Error-handling.html#CAIRO-STATUS-PNG-ERROR:CAPS"><code class="literal">CAIRO_STATUS_PNG_ERROR</code></a> if libpng
397
386
  returned an error.</p>
398
- <p></p>
399
387
  </div>
400
- <p class="since">Since 1.0</p>
388
+ <p class="since">Since: 1.0</p>
401
389
  </div>
402
390
  </div>
403
391
  <div class="refsect1">
@@ -409,7 +397,7 @@ returned an error.</p>
409
397
  <p>Defined if the PNG functions are available.
410
398
  This macro can be used to conditionally compile code using the cairo
411
399
  PNG functions.</p>
412
- <p class="since">Since 1.0</p>
400
+ <p class="since">Since: 1.0</p>
413
401
  </div>
414
402
  </div>
415
403
  <div class="refsect1">
@@ -418,7 +406,6 @@ PNG functions.</p>
418
406
  </div>
419
407
  </div>
420
408
  <div class="footer">
421
- <hr>
422
- Generated by GTK-Doc V1.20</div>
409
+ <hr>Generated by GTK-Doc V1.25</div>
423
410
  </body>
424
411
  </html>