cairo 1.8.5-x86-mingw32 → 1.10.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of cairo might be problematic. Click here for more details.
- data/NEWS +2 -2
- data/Rakefile +44 -7
- data/ext/cairo/cairo.def +28 -1
- data/ext/cairo/extconf.rb +14 -16
- data/ext/cairo/rb_cairo.c +4 -1
- data/ext/cairo/rb_cairo.h +65 -1
- data/ext/cairo/rb_cairo_constants.c +150 -3
- data/ext/cairo/rb_cairo_context.c +17 -0
- data/ext/cairo/rb_cairo_device.c +406 -0
- data/ext/cairo/rb_cairo_exception.c +83 -32
- data/ext/cairo/rb_cairo_io.c +166 -0
- data/ext/cairo/rb_cairo_io.h +44 -0
- data/ext/cairo/rb_cairo_matrix.c +1 -1
- data/ext/cairo/rb_cairo_private.h +3 -0
- data/ext/cairo/rb_cairo_region.c +385 -0
- data/ext/cairo/rb_cairo_surface.c +674 -199
- data/lib/1.8/cairo.so +0 -0
- data/lib/1.9/cairo.so +0 -0
- data/samples/blur.rb +2 -3
- data/samples/{pac2.rb → pac-nomralize.rb} +5 -6
- data/samples/pac-tee.rb +170 -0
- data/samples/pac.rb +2 -3
- data/samples/png.rb +2 -3
- data/samples/scalable.rb +2 -3
- data/samples/text-on-path.rb +2 -3
- data/samples/text2.rb +2 -3
- data/test/cairo-test-utils.rb +15 -0
- data/test/run-test.rb +5 -4
- data/test/test_context.rb +4 -4
- data/test/test_font_face.rb +34 -21
- data/test/test_recording_surface.rb +18 -0
- data/test/test_region.rb +102 -0
- data/test/test_script_device.rb +46 -0
- data/test/test_script_surface.rb +13 -0
- data/test/test_surface.rb +14 -4
- data/test/test_tee_surface.rb +32 -0
- data/test/test_xml_device.rb +22 -0
- data/test/test_xml_surface.rb +32 -0
- data/tmp/i386-mingw32/cairo/1.9.2/rbconfig.rb +1 -1
- data/vendor/local/bin/libcairo-2.dll +0 -0
- data/vendor/local/include/cairo/cairo-deprecated.h +1 -16
- data/vendor/local/include/cairo/cairo-features.h +7 -0
- data/vendor/local/include/cairo/cairo-ft.h +16 -9
- data/vendor/local/include/cairo/cairo-gobject.h +186 -0
- data/vendor/local/include/cairo/cairo-pdf.h +27 -1
- data/vendor/local/include/cairo/cairo-ps.h +1 -1
- data/vendor/local/include/cairo/cairo-script-interpreter.h +117 -0
- data/vendor/local/include/cairo/cairo-svg.h +1 -1
- data/vendor/local/include/cairo/cairo-version.h +2 -2
- data/vendor/local/include/cairo/cairo-win32.h +1 -1
- data/vendor/local/include/cairo/cairo.h +382 -26
- data/vendor/local/lib/cairo.def +44 -0
- data/vendor/local/lib/cairo.lib +0 -0
- data/vendor/local/lib/libcairo.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/cairo-fc.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-ft.pc +4 -4
- data/vendor/local/lib/pkgconfig/cairo-gobject.pc +12 -0
- data/vendor/local/lib/pkgconfig/cairo-pdf.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-png.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-ps.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-svg.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32-font.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo-win32.pc +3 -3
- data/vendor/local/lib/pkgconfig/cairo.pc +4 -4
- data/vendor/local/manifest/{cairo-dev_1.8.10-4_win32.mft → cairo-dev_1.10.0-1_win32.mft} +34 -27
- data/vendor/local/manifest/cairo_1.10.0-1_win32.mft +5 -0
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING +9 -8
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-LGPL-2.1 +2 -2
- data/vendor/local/share/doc/{cairo_1.8.10-4_win32 → cairo_1.10.0-1_win32}/COPYING-MPL-1.1 +0 -0
- data/vendor/local/share/gtk-doc/html/cairo/bindings-errors.html +4 -14
- data/vendor/local/share/gtk-doc/html/cairo/bindings-fonts.html +5 -15
- data/vendor/local/share/gtk-doc/html/cairo/bindings-memory.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/bindings-overloading.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-path.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/bindings-patterns.html +23 -28
- data/vendor/local/share/gtk-doc/html/cairo/bindings-return-values.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-streams.html +3 -13
- data/vendor/local/share/gtk-doc/html/cairo/bindings-surfaces.html +7 -17
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Error-handling.html +373 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-FreeType-Fonts.html +330 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Image-Surfaces.html +478 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PDF-Surfaces.html +344 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PNG-Support.html +320 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Paths.html +1291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-PostScript-Surfaces.html +622 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-(CGFont)-Fonts.html +134 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Quartz-Surfaces.html +210 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Regions.html +834 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-SVG-Surfaces.html +318 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Transformations.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Types.html +169 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-User-Fonts.html +715 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Version-Information.html +410 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Fonts.html +335 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-Win32-Surfaces.html +291 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-XLib-Surfaces.html +470 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-device-t.html +595 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-face-t.html +384 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-font-options-t.html +644 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-matrix-t.html +574 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html +1457 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-scaled-font-t.html +1076 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-surface-t.html +1396 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-cairo-t.html +2743 -0
- data/vendor/local/share/gtk-doc/html/cairo/cairo-drawing.html +13 -20
- data/vendor/local/share/gtk-doc/html/cairo/cairo-fonts.html +13 -23
- data/vendor/local/share/gtk-doc/html/cairo/cairo-support.html +11 -21
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surfaces.html +19 -26
- data/vendor/local/share/gtk-doc/html/cairo/cairo-text.html +279 -326
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp +411 -355
- data/vendor/local/share/gtk-doc/html/cairo/cairo.devhelp2 +579 -480
- data/vendor/local/share/gtk-doc/html/cairo/index-1.10.html +147 -0
- data/vendor/local/share/gtk-doc/html/cairo/index-1.2.html +88 -65
- data/vendor/local/share/gtk-doc/html/cairo/index-1.4.html +72 -47
- data/vendor/local/share/gtk-doc/html/cairo/index-1.6.html +43 -32
- data/vendor/local/share/gtk-doc/html/cairo/index-1.8.html +42 -41
- data/vendor/local/share/gtk-doc/html/cairo/index-all.html +542 -345
- data/vendor/local/share/gtk-doc/html/cairo/index.html +36 -39
- data/vendor/local/share/gtk-doc/html/cairo/index.sgml +674 -444
- data/vendor/local/share/gtk-doc/html/cairo/language-bindings.html +6 -16
- data/vendor/local/share/gtk-doc/html/cairo/style.css +152 -54
- data/vendor/local/src/tml/packaging/cairo_1.10.0-1_win32.log +1262 -0
- data/vendor/local/src/tml/packaging/{cairo_1.8.10-4_win32.sh → cairo_1.10.0-1_win32.sh} +3 -3
- metadata +137 -389
- data/doc/doc.css +0 -91
- data/doc/en/cairo-antialias.html +0 -38
- data/doc/en/cairo-clip-not-representable-error.html +0 -47
- data/doc/en/cairo-color-base.html +0 -69
- data/doc/en/cairo-color-cmyk.html +0 -157
- data/doc/en/cairo-color-hsv.html +0 -137
- data/doc/en/cairo-color-rgb.html +0 -142
- data/doc/en/cairo-color-x11.html +0 -173
- data/doc/en/cairo-color.html +0 -238
- data/doc/en/cairo-content.html +0 -37
- data/doc/en/cairo-context-blur.html +0 -39
- data/doc/en/cairo-context-circle.html +0 -39
- data/doc/en/cairo-context-color.html +0 -39
- data/doc/en/cairo-context-path.html +0 -44
- data/doc/en/cairo-context-rectangle.html +0 -39
- data/doc/en/cairo-context-triangle.html +0 -39
- data/doc/en/cairo-context.html +0 -643
- data/doc/en/cairo-error.html +0 -44
- data/doc/en/cairo-extend.html +0 -38
- data/doc/en/cairo-file-not-found.html +0 -47
- data/doc/en/cairo-fill-rule.html +0 -36
- data/doc/en/cairo-filter.html +0 -40
- data/doc/en/cairo-font-extents.html +0 -129
- data/doc/en/cairo-font-face.html +0 -38
- data/doc/en/cairo-font-options.html +0 -139
- data/doc/en/cairo-font-slant.html +0 -37
- data/doc/en/cairo-font-type-mismatch.html +0 -47
- data/doc/en/cairo-font-weight.html +0 -36
- data/doc/en/cairo-format.html +0 -46
- data/doc/en/cairo-glyph.html +0 -99
- data/doc/en/cairo-gradient-pattern.html +0 -74
- data/doc/en/cairo-hint-metrics.html +0 -37
- data/doc/en/cairo-hint-style.html +0 -39
- data/doc/en/cairo-image-surface.html +0 -82
- data/doc/en/cairo-invalid-clusters.html +0 -47
- data/doc/en/cairo-invalid-content-error.html +0 -47
- data/doc/en/cairo-invalid-dash-error.html +0 -47
- data/doc/en/cairo-invalid-dsc-comment-error.html +0 -47
- data/doc/en/cairo-invalid-format-error.html +0 -47
- data/doc/en/cairo-invalid-index-error.html +0 -47
- data/doc/en/cairo-invalid-matrix-error.html +0 -47
- data/doc/en/cairo-invalid-path-data-error.html +0 -47
- data/doc/en/cairo-invalid-pop-group-error.html +0 -47
- data/doc/en/cairo-invalid-restore-error.html +0 -47
- data/doc/en/cairo-invalid-slant.html +0 -47
- data/doc/en/cairo-invalid-status-error.html +0 -47
- data/doc/en/cairo-invalid-stride-error.html +0 -47
- data/doc/en/cairo-invalid-string-error.html +0 -47
- data/doc/en/cairo-invalid-visual-error.html +0 -47
- data/doc/en/cairo-invalid-weight.html +0 -47
- data/doc/en/cairo-line-cap.html +0 -37
- data/doc/en/cairo-line-join.html +0 -37
- data/doc/en/cairo-linear-pattern.html +0 -60
- data/doc/en/cairo-matrix.html +0 -259
- data/doc/en/cairo-negative-count.html +0 -47
- data/doc/en/cairo-no-current-point-error.html +0 -47
- data/doc/en/cairo-null-pointer-error.html +0 -47
- data/doc/en/cairo-operator.html +0 -48
- data/doc/en/cairo-paper-parse-error.html +0 -47
- data/doc/en/cairo-paper-unknown-paper-name.html +0 -66
- data/doc/en/cairo-paper-unknown-unit.html +0 -66
- data/doc/en/cairo-paper-unrecognized-paper-description.html +0 -66
- data/doc/en/cairo-paper.html +0 -184
- data/doc/en/cairo-path-close-path.html +0 -49
- data/doc/en/cairo-path-curve-to.html +0 -49
- data/doc/en/cairo-path-data-type.html +0 -38
- data/doc/en/cairo-path-data.html +0 -98
- data/doc/en/cairo-path-line-to.html +0 -49
- data/doc/en/cairo-path-move-to.html +0 -49
- data/doc/en/cairo-path.html +0 -155
- data/doc/en/cairo-pattern-type-mismatch-error.html +0 -47
- data/doc/en/cairo-pattern.html +0 -99
- data/doc/en/cairo-pdf-surface.html +0 -57
- data/doc/en/cairo-point.html +0 -74
- data/doc/en/cairo-ps-level.html +0 -49
- data/doc/en/cairo-ps-surface.html +0 -92
- data/doc/en/cairo-quartz-image-surface.html +0 -57
- data/doc/en/cairo-quartz-surface.html +0 -57
- data/doc/en/cairo-radial-pattern.html +0 -60
- data/doc/en/cairo-read-error.html +0 -47
- data/doc/en/cairo-rectangle.html +0 -89
- data/doc/en/cairo-scaled-font.html +0 -94
- data/doc/en/cairo-solid-pattern.html +0 -62
- data/doc/en/cairo-subpixel-order.html +0 -39
- data/doc/en/cairo-surface-finished-error.html +0 -47
- data/doc/en/cairo-surface-pattern.html +0 -57
- data/doc/en/cairo-surface-type-mismatch-error.html +0 -47
- data/doc/en/cairo-surface.html +0 -121
- data/doc/en/cairo-svg-surface.html +0 -77
- data/doc/en/cairo-svg-version.html +0 -49
- data/doc/en/cairo-temp-file-error.html +0 -47
- data/doc/en/cairo-text-cluster-flag.html +0 -35
- data/doc/en/cairo-text-cluster.html +0 -84
- data/doc/en/cairo-text-extents.html +0 -144
- data/doc/en/cairo-toy-font-face.html +0 -67
- data/doc/en/cairo-user-font-error.html +0 -47
- data/doc/en/cairo-user-font-face-text-to-glyphs-data.html +0 -94
- data/doc/en/cairo-user-font-face.html +0 -72
- data/doc/en/cairo-user-font-immutable.html +0 -47
- data/doc/en/cairo-win32-printing-surface.html +0 -57
- data/doc/en/cairo-win32-surface.html +0 -62
- data/doc/en/cairo-write-error.html +0 -47
- data/doc/en/cairo.html +0 -131
- data/doc/en/index.html +0 -1154
- data/doc/index.html +0 -18
- data/doc/ja/cairo-antialias.html +0 -57
- data/doc/ja/cairo-clip-not-representable-error.html +0 -56
- data/doc/ja/cairo-color-base.html +0 -75
- data/doc/ja/cairo-color-cmyk.html +0 -152
- data/doc/ja/cairo-color-hsv.html +0 -135
- data/doc/ja/cairo-color-rgb.html +0 -145
- data/doc/ja/cairo-color-x11.html +0 -183
- data/doc/ja/cairo-color.html +0 -317
- data/doc/ja/cairo-content.html +0 -51
- data/doc/ja/cairo-context-blur.html +0 -53
- data/doc/ja/cairo-context-circle.html +0 -54
- data/doc/ja/cairo-context-color.html +0 -52
- data/doc/ja/cairo-context-path.html +0 -77
- data/doc/ja/cairo-context-rectangle.html +0 -60
- data/doc/ja/cairo-context-triangle.html +0 -47
- data/doc/ja/cairo-context.html +0 -1542
- data/doc/ja/cairo-error.html +0 -56
- data/doc/ja/cairo-extend.html +0 -56
- data/doc/ja/cairo-file-not-found.html +0 -51
- data/doc/ja/cairo-fill-rule.html +0 -58
- data/doc/ja/cairo-filter.html +0 -43
- data/doc/ja/cairo-font-extents.html +0 -164
- data/doc/ja/cairo-font-face.html +0 -55
- data/doc/ja/cairo-font-options.html +0 -189
- data/doc/ja/cairo-font-slant.html +0 -50
- data/doc/ja/cairo-font-type-mismatch.html +0 -52
- data/doc/ja/cairo-font-weight.html +0 -47
- data/doc/ja/cairo-format.html +0 -81
- data/doc/ja/cairo-glyph.html +0 -115
- data/doc/ja/cairo-gradient-pattern.html +0 -119
- data/doc/ja/cairo-hint-metrics.html +0 -57
- data/doc/ja/cairo-hint-style.html +0 -64
- data/doc/ja/cairo-image-surface.html +0 -131
- data/doc/ja/cairo-invalid-clusters.html +0 -55
- data/doc/ja/cairo-invalid-content-error.html +0 -54
- data/doc/ja/cairo-invalid-dash-error.html +0 -54
- data/doc/ja/cairo-invalid-dsc-comment-error.html +0 -54
- data/doc/ja/cairo-invalid-format-error.html +0 -54
- data/doc/ja/cairo-invalid-index-error.html +0 -54
- data/doc/ja/cairo-invalid-matrix-error.html +0 -54
- data/doc/ja/cairo-invalid-path-data-error.html +0 -54
- data/doc/ja/cairo-invalid-pop-group-error.html +0 -54
- data/doc/ja/cairo-invalid-restore-error.html +0 -55
- data/doc/ja/cairo-invalid-slant.html +0 -57
- data/doc/ja/cairo-invalid-status-error.html +0 -55
- data/doc/ja/cairo-invalid-stride-error.html +0 -55
- data/doc/ja/cairo-invalid-string-error.html +0 -54
- data/doc/ja/cairo-invalid-visual-error.html +0 -57
- data/doc/ja/cairo-invalid-weight.html +0 -57
- data/doc/ja/cairo-line-cap.html +0 -50
- data/doc/ja/cairo-line-join.html +0 -53
- data/doc/ja/cairo-linear-pattern.html +0 -87
- data/doc/ja/cairo-matrix.html +0 -354
- data/doc/ja/cairo-negative-count.html +0 -52
- data/doc/ja/cairo-no-current-point-error.html +0 -54
- data/doc/ja/cairo-null-pointer-error.html +0 -54
- data/doc/ja/cairo-operator.html +0 -51
- data/doc/ja/cairo-paper-parse-error.html +0 -55
- data/doc/ja/cairo-paper-unknown-paper-name.html +0 -76
- data/doc/ja/cairo-paper-unknown-unit.html +0 -75
- data/doc/ja/cairo-paper-unrecognized-paper-description.html +0 -76
- data/doc/ja/cairo-paper.html +0 -357
- data/doc/ja/cairo-path-close-path.html +0 -57
- data/doc/ja/cairo-path-curve-to.html +0 -70
- data/doc/ja/cairo-path-data-type.html +0 -53
- data/doc/ja/cairo-path-data.html +0 -127
- data/doc/ja/cairo-path-line-to.html +0 -62
- data/doc/ja/cairo-path-move-to.html +0 -62
- data/doc/ja/cairo-path.html +0 -144
- data/doc/ja/cairo-pattern-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-pattern.html +0 -128
- data/doc/ja/cairo-pdf-surface.html +0 -86
- data/doc/ja/cairo-point.html +0 -90
- data/doc/ja/cairo-ps-level.html +0 -62
- data/doc/ja/cairo-ps-surface.html +0 -214
- data/doc/ja/cairo-quartz-image-surface.html +0 -75
- data/doc/ja/cairo-quartz-surface.html +0 -93
- data/doc/ja/cairo-radial-pattern.html +0 -93
- data/doc/ja/cairo-read-error.html +0 -55
- data/doc/ja/cairo-rectangle.html +0 -109
- data/doc/ja/cairo-scaled-font.html +0 -180
- data/doc/ja/cairo-solid-pattern.html +0 -87
- data/doc/ja/cairo-subpixel-order.html +0 -57
- data/doc/ja/cairo-surface-finished-error.html +0 -54
- data/doc/ja/cairo-surface-pattern.html +0 -68
- data/doc/ja/cairo-surface-type-mismatch-error.html +0 -56
- data/doc/ja/cairo-surface.html +0 -213
- data/doc/ja/cairo-svg-surface.html +0 -114
- data/doc/ja/cairo-svg-version.html +0 -66
- data/doc/ja/cairo-temp-file-error.html +0 -50
- data/doc/ja/cairo-text-cluster-flag.html +0 -46
- data/doc/ja/cairo-text-cluster.html +0 -102
- data/doc/ja/cairo-text-extents.html +0 -163
- data/doc/ja/cairo-toy-font-face.html +0 -107
- data/doc/ja/cairo-user-font-error.html +0 -55
- data/doc/ja/cairo-user-font-face-text-to-glyphs-data.html +0 -156
- data/doc/ja/cairo-user-font-face.html +0 -268
- data/doc/ja/cairo-user-font-immutable.html +0 -54
- data/doc/ja/cairo-win32-printing-surface.html +0 -80
- data/doc/ja/cairo-win32-surface.html +0 -100
- data/doc/ja/cairo-write-error.html +0 -55
- data/doc/ja/cairo.html +0 -177
- data/doc/ja/index.html +0 -1156
- data/pkg-config.rb +0 -313
- data/test-unit/Rakefile +0 -30
- data/test-unit/bin/testrb +0 -5
- data/test-unit/lib/test/unit.rb +0 -280
- data/test-unit/lib/test/unit/assertionfailederror.rb +0 -14
- data/test-unit/lib/test/unit/assertions.rb +0 -722
- data/test-unit/lib/test/unit/attribute.rb +0 -125
- data/test-unit/lib/test/unit/autorunner.rb +0 -254
- data/test-unit/lib/test/unit/collector.rb +0 -43
- data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
- data/test-unit/lib/test/unit/collector/dir.rb +0 -108
- data/test-unit/lib/test/unit/collector/load.rb +0 -135
- data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
- data/test-unit/lib/test/unit/color.rb +0 -61
- data/test-unit/lib/test/unit/diff.rb +0 -524
- data/test-unit/lib/test/unit/error.rb +0 -124
- data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
- data/test-unit/lib/test/unit/failure.rb +0 -110
- data/test-unit/lib/test/unit/fixture.rb +0 -185
- data/test-unit/lib/test/unit/notification.rb +0 -125
- data/test-unit/lib/test/unit/omission.rb +0 -143
- data/test-unit/lib/test/unit/pending.rb +0 -146
- data/test-unit/lib/test/unit/priority.rb +0 -146
- data/test-unit/lib/test/unit/runner/console.rb +0 -46
- data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
- data/test-unit/lib/test/unit/testcase.rb +0 -281
- data/test-unit/lib/test/unit/testresult.rb +0 -89
- data/test-unit/lib/test/unit/testsuite.rb +0 -110
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -195
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -49
- data/test-unit/lib/test/unit/ui/testrunner.rb +0 -20
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
- data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
- data/test-unit/lib/test/unit/util/observable.rb +0 -90
- data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
- data/test-unit/lib/test/unit/version.rb +0 -7
- data/test-unit/sample/adder.rb +0 -13
- data/test-unit/sample/subtracter.rb +0 -12
- data/test-unit/sample/tc_adder.rb +0 -18
- data/test-unit/sample/tc_subtracter.rb +0 -18
- data/test-unit/sample/ts_examples.rb +0 -7
- data/test-unit/test/collector/test_descendant.rb +0 -135
- data/test-unit/test/collector/test_dir.rb +0 -406
- data/test-unit/test/collector/test_load.rb +0 -333
- data/test-unit/test/collector/test_objectspace.rb +0 -98
- data/test-unit/test/run-test.rb +0 -13
- data/test-unit/test/test_assertions.rb +0 -693
- data/test-unit/test/test_attribute.rb +0 -86
- data/test-unit/test/test_color.rb +0 -37
- data/test-unit/test/test_diff.rb +0 -477
- data/test-unit/test/test_emacs_runner.rb +0 -60
- data/test-unit/test/test_error.rb +0 -26
- data/test-unit/test/test_failure.rb +0 -33
- data/test-unit/test/test_fixture.rb +0 -252
- data/test-unit/test/test_notification.rb +0 -33
- data/test-unit/test/test_omission.rb +0 -81
- data/test-unit/test/test_pending.rb +0 -70
- data/test-unit/test/test_priority.rb +0 -89
- data/test-unit/test/test_testcase.rb +0 -430
- data/test-unit/test/test_testresult.rb +0 -113
- data/test-unit/test/test_testsuite.rb +0 -129
- data/test-unit/test/testunit_test_util.rb +0 -14
- data/test-unit/test/ui/test_testrunmediator.rb +0 -20
- data/test-unit/test/util/test_backtracefilter.rb +0 -41
- data/test-unit/test/util/test_observable.rb +0 -102
- data/test-unit/test/util/test_procwrapper.rb +0 -36
- data/test/test_pkg_config.rb +0 -123
- data/vendor/local/include/libpng14/png.h +0 -2701
- data/vendor/local/include/libpng14/pngconf.h +0 -1525
- data/vendor/local/include/png.h +0 -2701
- data/vendor/local/include/pngconf.h +0 -1525
- data/vendor/local/include/zconf.h +0 -461
- data/vendor/local/include/zlib.h +0 -1589
- data/vendor/local/lib/libpng.def +0 -192
- data/vendor/local/lib/libpng.lib +0 -0
- data/vendor/local/lib/libpng14.dll.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/libpng.pc +0 -11
- data/vendor/local/lib/pkgconfig/libpng14.pc +0 -11
- data/vendor/local/lib/zdll.lib +0 -0
- data/vendor/local/lib/zlib.def +0 -67
- data/vendor/local/manifest/cairo_1.8.10-4_win32.mft +0 -5
- data/vendor/local/manifest/libpng-dev_1.4.3-1_win32.mft +0 -15
- data/vendor/local/manifest/zlib-dev_1.2.5-2_win32.mft +0 -8
- data/vendor/local/share/gtk-doc/html/cairo/cairo-context.html +0 -2643
- data/vendor/local/share/gtk-doc/html/cairo/cairo-error-status.html +0 -360
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-face.html +0 -408
- data/vendor/local/share/gtk-doc/html/cairo/cairo-font-options.html +0 -678
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ft-font.html +0 -319
- data/vendor/local/share/gtk-doc/html/cairo/cairo-image-surface.html +0 -473
- data/vendor/local/share/gtk-doc/html/cairo/cairo-matrix.html +0 -596
- data/vendor/local/share/gtk-doc/html/cairo/cairo-paths.html +0 -1274
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pattern.html +0 -1485
- data/vendor/local/share/gtk-doc/html/cairo/cairo-pdf-surface.html +0 -238
- data/vendor/local/share/gtk-doc/html/cairo/cairo-png-functions.html +0 -341
- data/vendor/local/share/gtk-doc/html/cairo/cairo-ps-surface.html +0 -622
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-font.html +0 -151
- data/vendor/local/share/gtk-doc/html/cairo/cairo-quartz-surface.html +0 -219
- data/vendor/local/share/gtk-doc/html/cairo/cairo-scaled-font.html +0 -1023
- data/vendor/local/share/gtk-doc/html/cairo/cairo-surface.html +0 -1026
- data/vendor/local/share/gtk-doc/html/cairo/cairo-svg-surface.html +0 -321
- data/vendor/local/share/gtk-doc/html/cairo/cairo-transformations.html +0 -436
- data/vendor/local/share/gtk-doc/html/cairo/cairo-types.html +0 -133
- data/vendor/local/share/gtk-doc/html/cairo/cairo-user-font.html +0 -735
- data/vendor/local/share/gtk-doc/html/cairo/cairo-version-info.html +0 -345
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-font.html +0 -358
- data/vendor/local/share/gtk-doc/html/cairo/cairo-win32-surface.html +0 -312
- data/vendor/local/share/gtk-doc/html/cairo/cairo-xlib-surface.html +0 -492
- data/vendor/local/share/man/man3/libpng.3 +0 -4455
- data/vendor/local/share/man/man3/libpngpf.3 +0 -808
- data/vendor/local/share/man/man5/png.5 +0 -74
- data/vendor/local/src/tml/packaging/cairo_1.8.10-4_win32.log +0 -920
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.log +0 -272
- data/vendor/local/src/tml/packaging/libpng_1.4.3-1_win32.sh +0 -71
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.log +0 -42
- data/vendor/local/src/tml/packaging/zlib_1.2.5-2_win32.sh +0 -189
@@ -1,238 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>PDF Surfaces</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
-
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
|
-
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
|
-
<link rel="prev" href="cairo-image-surface.html" title="Image Surfaces">
|
10
|
-
<link rel="next" href="cairo-png-functions.html" title="PNG Support">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
|
12
|
-
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
|
-
</head>
|
24
|
-
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
26
|
-
<tr valign="middle">
|
27
|
-
<td><a accesskey="p" href="cairo-image-surface.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
28
|
-
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
29
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
30
|
-
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
31
|
-
<td><a accesskey="n" href="cairo-png-functions.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
32
|
-
</tr>
|
33
|
-
<tr><td colspan="5" class="shortcuts">
|
34
|
-
<a href="#cairo-pdf-surface.synopsis" class="shortcut">Top</a>
|
35
|
-
|
|
36
|
-
<a href="#cairo-pdf-surface.description" class="shortcut">Description</a>
|
37
|
-
</td></tr>
|
38
|
-
</table>
|
39
|
-
<div class="refentry" title="PDF Surfaces">
|
40
|
-
<a name="cairo-pdf-surface"></a><div class="titlepage"></div>
|
41
|
-
<div class="refnamediv"><table width="100%"><tr>
|
42
|
-
<td valign="top">
|
43
|
-
<h2><span class="refentrytitle"><a name="cairo-pdf-surface.top_of_page"></a>PDF Surfaces</span></h2>
|
44
|
-
<p>PDF Surfaces — Rendering PDF documents</p>
|
45
|
-
</td>
|
46
|
-
<td valign="top" align="right"></td>
|
47
|
-
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv" title="Synopsis">
|
49
|
-
<a name="cairo-pdf-surface.synopsis"></a><h2>Synopsis</h2>
|
50
|
-
<pre class="synopsis">
|
51
|
-
#define <a class="link" href="cairo-pdf-surface.html#CAIRO-HAS-PDF-SURFACE--CAPS" title="CAIRO_HAS_PDF_SURFACE">CAIRO_HAS_PDF_SURFACE</a>
|
52
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-pdf-surface.html#cairo-pdf-surface-create" title="cairo_pdf_surface_create ()">cairo_pdf_surface_create</a> (const char *filename,
|
53
|
-
double width_in_points,
|
54
|
-
double height_in_points);
|
55
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-pdf-surface.html#cairo-pdf-surface-create-for-stream" title="cairo_pdf_surface_create_for_stream ()">cairo_pdf_surface_create_for_stream</a> (<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()">cairo_write_func_t</a> write_func,
|
56
|
-
void *closure,
|
57
|
-
double width_in_points,
|
58
|
-
double height_in_points);
|
59
|
-
void <a class="link" href="cairo-pdf-surface.html#cairo-pdf-surface-set-size" title="cairo_pdf_surface_set_size ()">cairo_pdf_surface_set_size</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
60
|
-
double width_in_points,
|
61
|
-
double height_in_points);
|
62
|
-
</pre>
|
63
|
-
</div>
|
64
|
-
<div class="refsect1" title="Description">
|
65
|
-
<a name="cairo-pdf-surface.description"></a><h2>Description</h2>
|
66
|
-
<p>
|
67
|
-
The PDF surface is used to render cairo graphics to Adobe
|
68
|
-
PDF files and is a multi-page vector surface backend.
|
69
|
-
</p>
|
70
|
-
</div>
|
71
|
-
<div class="refsect1" title="Details">
|
72
|
-
<a name="cairo-pdf-surface.details"></a><h2>Details</h2>
|
73
|
-
<div class="refsect2" title="CAIRO_HAS_PDF_SURFACE">
|
74
|
-
<a name="CAIRO-HAS-PDF-SURFACE--CAPS"></a><h3>CAIRO_HAS_PDF_SURFACE</h3>
|
75
|
-
<pre class="programlisting">#define CAIRO_HAS_PDF_SURFACE 1
|
76
|
-
</pre>
|
77
|
-
<p>
|
78
|
-
Defined if the PDF surface backend is available.
|
79
|
-
This macro can be used to conditionally compile backend-specific code.
|
80
|
-
</p>
|
81
|
-
</div>
|
82
|
-
<hr>
|
83
|
-
<div class="refsect2" title="cairo_pdf_surface_create ()">
|
84
|
-
<a name="cairo-pdf-surface-create"></a><h3>cairo_pdf_surface_create ()</h3>
|
85
|
-
<pre class="programlisting"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * cairo_pdf_surface_create (const char *filename,
|
86
|
-
double width_in_points,
|
87
|
-
double height_in_points);</pre>
|
88
|
-
<p>
|
89
|
-
Creates a PDF surface of the specified size in points to be written
|
90
|
-
to <em class="parameter"><code>filename</code></em>.</p>
|
91
|
-
<p>
|
92
|
-
</p>
|
93
|
-
<div class="variablelist"><table border="0">
|
94
|
-
<col align="left" valign="top">
|
95
|
-
<tbody>
|
96
|
-
<tr>
|
97
|
-
<td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
|
98
|
-
<td> a filename for the PDF output (must be writable), <code class="literal">NULL</code> may be
|
99
|
-
used to specify no output. This will generate a PDF surface that
|
100
|
-
may be queried and used as a source, without generating a
|
101
|
-
temporary file.
|
102
|
-
</td>
|
103
|
-
</tr>
|
104
|
-
<tr>
|
105
|
-
<td><p><span class="term"><em class="parameter"><code>width_in_points</code></em> :</span></p></td>
|
106
|
-
<td> width of the surface, in points (1 point == 1/72.0 inch)
|
107
|
-
</td>
|
108
|
-
</tr>
|
109
|
-
<tr>
|
110
|
-
<td><p><span class="term"><em class="parameter"><code>height_in_points</code></em> :</span></p></td>
|
111
|
-
<td> height of the surface, in points (1 point == 1/72.0 inch)
|
112
|
-
</td>
|
113
|
-
</tr>
|
114
|
-
<tr>
|
115
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
116
|
-
<td> a pointer to the newly created surface. The caller
|
117
|
-
owns the surface and should call <a class="link" href="cairo-surface.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
118
|
-
with it.
|
119
|
-
|
120
|
-
This function always returns a valid pointer, but it will return a
|
121
|
-
pointer to a "nil" surface if an error such as out of memory
|
122
|
-
occurs. You can use <a class="link" href="cairo-surface.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.
|
123
|
-
|
124
|
-
</td>
|
125
|
-
</tr>
|
126
|
-
</tbody>
|
127
|
-
</table></div>
|
128
|
-
<p class="since">Since 1.2</p>
|
129
|
-
</div>
|
130
|
-
<hr>
|
131
|
-
<div class="refsect2" title="cairo_pdf_surface_create_for_stream ()">
|
132
|
-
<a name="cairo-pdf-surface-create-for-stream"></a><h3>cairo_pdf_surface_create_for_stream ()</h3>
|
133
|
-
<pre class="programlisting"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * cairo_pdf_surface_create_for_stream (<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()">cairo_write_func_t</a> write_func,
|
134
|
-
void *closure,
|
135
|
-
double width_in_points,
|
136
|
-
double height_in_points);</pre>
|
137
|
-
<p>
|
138
|
-
Creates a PDF surface of the specified size in points to be written
|
139
|
-
incrementally to the stream represented by <em class="parameter"><code>write_func</code></em> and <em class="parameter"><code>closure</code></em>.</p>
|
140
|
-
<p>
|
141
|
-
</p>
|
142
|
-
<div class="variablelist"><table border="0">
|
143
|
-
<col align="left" valign="top">
|
144
|
-
<tbody>
|
145
|
-
<tr>
|
146
|
-
<td><p><span class="term"><em class="parameter"><code>write_func</code></em> :</span></p></td>
|
147
|
-
<td> a <a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()"><span class="type">cairo_write_func_t</span></a> to accept the output data, may be <code class="literal">NULL</code>
|
148
|
-
to indicate a no-op <em class="parameter"><code>write_func</code></em>. With a no-op <em class="parameter"><code>write_func</code></em>,
|
149
|
-
the surface may be queried or used as a source without
|
150
|
-
generating any temporary files.
|
151
|
-
</td>
|
152
|
-
</tr>
|
153
|
-
<tr>
|
154
|
-
<td><p><span class="term"><em class="parameter"><code>closure</code></em> :</span></p></td>
|
155
|
-
<td> the closure argument for <em class="parameter"><code>write_func</code></em>
|
156
|
-
</td>
|
157
|
-
</tr>
|
158
|
-
<tr>
|
159
|
-
<td><p><span class="term"><em class="parameter"><code>width_in_points</code></em> :</span></p></td>
|
160
|
-
<td> width of the surface, in points (1 point == 1/72.0 inch)
|
161
|
-
</td>
|
162
|
-
</tr>
|
163
|
-
<tr>
|
164
|
-
<td><p><span class="term"><em class="parameter"><code>height_in_points</code></em> :</span></p></td>
|
165
|
-
<td> height of the surface, in points (1 point == 1/72.0 inch)
|
166
|
-
</td>
|
167
|
-
</tr>
|
168
|
-
<tr>
|
169
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
170
|
-
<td> a pointer to the newly created surface. The caller
|
171
|
-
owns the surface and should call <a class="link" href="cairo-surface.html#cairo-surface-destroy" title="cairo_surface_destroy ()"><code class="function">cairo_surface_destroy()</code></a> when done
|
172
|
-
with it.
|
173
|
-
|
174
|
-
This function always returns a valid pointer, but it will return a
|
175
|
-
pointer to a "nil" surface if an error such as out of memory
|
176
|
-
occurs. You can use <a class="link" href="cairo-surface.html#cairo-surface-status" title="cairo_surface_status ()"><code class="function">cairo_surface_status()</code></a> to check for this.
|
177
|
-
|
178
|
-
</td>
|
179
|
-
</tr>
|
180
|
-
</tbody>
|
181
|
-
</table></div>
|
182
|
-
<p class="since">Since 1.2</p>
|
183
|
-
</div>
|
184
|
-
<hr>
|
185
|
-
<div class="refsect2" title="cairo_pdf_surface_set_size ()">
|
186
|
-
<a name="cairo-pdf-surface-set-size"></a><h3>cairo_pdf_surface_set_size ()</h3>
|
187
|
-
<pre class="programlisting">void cairo_pdf_surface_set_size (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
188
|
-
double width_in_points,
|
189
|
-
double height_in_points);</pre>
|
190
|
-
<p>
|
191
|
-
Changes the size of a PDF surface for the current (and
|
192
|
-
subsequent) pages.
|
193
|
-
</p>
|
194
|
-
<p>
|
195
|
-
This function should only be called before any drawing operations
|
196
|
-
have been performed on the current page. The simplest way to do
|
197
|
-
this is to call this function immediately after creating the
|
198
|
-
surface or immediately after completing a page with either
|
199
|
-
<a class="link" href="cairo-context.html#cairo-show-page" title="cairo_show_page ()"><code class="function">cairo_show_page()</code></a> or <a class="link" href="cairo-context.html#cairo-copy-page" title="cairo_copy_page ()"><code class="function">cairo_copy_page()</code></a>.</p>
|
200
|
-
<p>
|
201
|
-
</p>
|
202
|
-
<div class="variablelist"><table border="0">
|
203
|
-
<col align="left" valign="top">
|
204
|
-
<tbody>
|
205
|
-
<tr>
|
206
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
207
|
-
<td> a PDF <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a>
|
208
|
-
</td>
|
209
|
-
</tr>
|
210
|
-
<tr>
|
211
|
-
<td><p><span class="term"><em class="parameter"><code>width_in_points</code></em> :</span></p></td>
|
212
|
-
<td> new surface width, in points (1 point == 1/72.0 inch)
|
213
|
-
</td>
|
214
|
-
</tr>
|
215
|
-
<tr>
|
216
|
-
<td><p><span class="term"><em class="parameter"><code>height_in_points</code></em> :</span></p></td>
|
217
|
-
<td> new surface height, in points (1 point == 1/72.0 inch)
|
218
|
-
</td>
|
219
|
-
</tr>
|
220
|
-
</tbody>
|
221
|
-
</table></div>
|
222
|
-
<p class="since">Since 1.2</p>
|
223
|
-
</div>
|
224
|
-
</div>
|
225
|
-
<div class="refsect1" title="See Also">
|
226
|
-
<a name="cairo-pdf-surface.see-also"></a><h2>See Also</h2>
|
227
|
-
<p>
|
228
|
-
</p>
|
229
|
-
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a></li></ul></div>
|
230
|
-
<p>
|
231
|
-
</p>
|
232
|
-
</div>
|
233
|
-
</div>
|
234
|
-
<div class="footer">
|
235
|
-
<hr>
|
236
|
-
Generated by GTK-Doc V1.11</div>
|
237
|
-
</body>
|
238
|
-
</html>
|
@@ -1,341 +0,0 @@
|
|
1
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>PNG Support</title>
|
6
|
-
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
|
7
|
-
<link rel="home" href="index.html" title="Cairo: A Vector Graphics Library">
|
8
|
-
<link rel="up" href="cairo-surfaces.html" title="Surfaces">
|
9
|
-
<link rel="prev" href="cairo-pdf-surface.html" title="PDF Surfaces">
|
10
|
-
<link rel="next" href="cairo-ps-surface.html" title="PostScript Surfaces">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
|
12
|
-
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
-
<link rel="chapter" href="cairo-drawing.html" title="Drawing">
|
14
|
-
<link rel="chapter" href="cairo-fonts.html" title="Fonts">
|
15
|
-
<link rel="chapter" href="cairo-surfaces.html" title="Surfaces">
|
16
|
-
<link rel="chapter" href="cairo-support.html" title="Utilities">
|
17
|
-
<link rel="index" href="index-all.html" title="Index">
|
18
|
-
<link rel="index" href="index-1.2.html" title="Index of new symbols in 1.2">
|
19
|
-
<link rel="index" href="index-1.4.html" title="Index of new symbols in 1.4">
|
20
|
-
<link rel="index" href="index-1.6.html" title="Index of new symbols in 1.6">
|
21
|
-
<link rel="index" href="index-1.8.html" title="Index of new symbols in 1.8">
|
22
|
-
<link rel="appendix" href="language-bindings.html" title="Appendix A. Creating a language binding for cairo">
|
23
|
-
</head>
|
24
|
-
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
25
|
-
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
26
|
-
<tr valign="middle">
|
27
|
-
<td><a accesskey="p" href="cairo-pdf-surface.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
28
|
-
<td><a accesskey="u" href="cairo-surfaces.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
29
|
-
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
30
|
-
<th width="100%" align="center">Cairo: A Vector Graphics Library</th>
|
31
|
-
<td><a accesskey="n" href="cairo-ps-surface.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
32
|
-
</tr>
|
33
|
-
<tr><td colspan="5" class="shortcuts">
|
34
|
-
<a href="#cairo-png-functions.synopsis" class="shortcut">Top</a>
|
35
|
-
|
|
36
|
-
<a href="#cairo-png-functions.description" class="shortcut">Description</a>
|
37
|
-
</td></tr>
|
38
|
-
</table>
|
39
|
-
<div class="refentry" title="PNG Support">
|
40
|
-
<a name="cairo-png-functions"></a><div class="titlepage"></div>
|
41
|
-
<div class="refnamediv"><table width="100%"><tr>
|
42
|
-
<td valign="top">
|
43
|
-
<h2><span class="refentrytitle"><a name="cairo-png-functions.top_of_page"></a>PNG Support</span></h2>
|
44
|
-
<p>PNG Support — Reading and writing PNG images</p>
|
45
|
-
</td>
|
46
|
-
<td valign="top" align="right"></td>
|
47
|
-
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv" title="Synopsis">
|
49
|
-
<a name="cairo-png-functions.synopsis"></a><h2>Synopsis</h2>
|
50
|
-
<pre class="synopsis">
|
51
|
-
#define <a class="link" href="cairo-png-functions.html#CAIRO-HAS-PNG-FUNCTIONS--CAPS" title="CAIRO_HAS_PNG_FUNCTIONS">CAIRO_HAS_PNG_FUNCTIONS</a>
|
52
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-png-functions.html#cairo-image-surface-create-from-png" title="cairo_image_surface_create_from_png ()">cairo_image_surface_create_from_png</a> (const char *filename);
|
53
|
-
<a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> (<a class="link" href="cairo-png-functions.html#cairo-read-func-t" title="cairo_read_func_t ()">*cairo_read_func_t</a>) (void *closure,
|
54
|
-
unsigned char *data,
|
55
|
-
unsigned int length);
|
56
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-png-functions.html#cairo-image-surface-create-from-png-stream" title="cairo_image_surface_create_from_png_stream ()">cairo_image_surface_create_from_png_stream</a>
|
57
|
-
(<a class="link" href="cairo-png-functions.html#cairo-read-func-t" title="cairo_read_func_t ()">cairo_read_func_t</a> read_func,
|
58
|
-
void *closure);
|
59
|
-
<a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> <a class="link" href="cairo-png-functions.html#cairo-surface-write-to-png" title="cairo_surface_write_to_png ()">cairo_surface_write_to_png</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
60
|
-
const char *filename);
|
61
|
-
<a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> (<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()">*cairo_write_func_t</a>) (void *closure,
|
62
|
-
unsigned char *data,
|
63
|
-
unsigned int length);
|
64
|
-
<a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> <a class="link" href="cairo-png-functions.html#cairo-surface-write-to-png-stream" title="cairo_surface_write_to_png_stream ()">cairo_surface_write_to_png_stream</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
65
|
-
<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()">cairo_write_func_t</a> write_func,
|
66
|
-
void *closure);
|
67
|
-
</pre>
|
68
|
-
</div>
|
69
|
-
<div class="refsect1" title="Description">
|
70
|
-
<a name="cairo-png-functions.description"></a><h2>Description</h2>
|
71
|
-
<p>
|
72
|
-
The PNG functions allow reading PNG images into image surfaces, and writing
|
73
|
-
any surface to a PNG file.
|
74
|
-
</p>
|
75
|
-
</div>
|
76
|
-
<div class="refsect1" title="Details">
|
77
|
-
<a name="cairo-png-functions.details"></a><h2>Details</h2>
|
78
|
-
<div class="refsect2" title="CAIRO_HAS_PNG_FUNCTIONS">
|
79
|
-
<a name="CAIRO-HAS-PNG-FUNCTIONS--CAPS"></a><h3>CAIRO_HAS_PNG_FUNCTIONS</h3>
|
80
|
-
<pre class="programlisting">#define CAIRO_HAS_PNG_FUNCTIONS 1
|
81
|
-
</pre>
|
82
|
-
<p>
|
83
|
-
Defined if the PNG functions are available.
|
84
|
-
This macro can be used to conditionally compile code using the cairo
|
85
|
-
PNG functions.
|
86
|
-
</p>
|
87
|
-
</div>
|
88
|
-
<hr>
|
89
|
-
<div class="refsect2" title="cairo_image_surface_create_from_png ()">
|
90
|
-
<a name="cairo-image-surface-create-from-png"></a><h3>cairo_image_surface_create_from_png ()</h3>
|
91
|
-
<pre class="programlisting"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * cairo_image_surface_create_from_png (const char *filename);</pre>
|
92
|
-
<p>
|
93
|
-
Creates a new image surface and initializes the contents to the
|
94
|
-
given PNG file.</p>
|
95
|
-
<p>
|
96
|
-
</p>
|
97
|
-
<div class="variablelist"><table border="0">
|
98
|
-
<col align="left" valign="top">
|
99
|
-
<tbody>
|
100
|
-
<tr>
|
101
|
-
<td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
|
102
|
-
<td> name of PNG file to load
|
103
|
-
</td>
|
104
|
-
</tr>
|
105
|
-
<tr>
|
106
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
107
|
-
<td> a new <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
|
108
|
-
of the PNG file, or a "nil" surface if any error occurred. A nil
|
109
|
-
surface can be checked for with cairo_surface_status(surface) which
|
110
|
-
may return one of the following values:
|
111
|
-
|
112
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-NO-MEMORY--CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>
|
113
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-FILE-NOT-FOUND--CAPS"><code class="literal">CAIRO_STATUS_FILE_NOT_FOUND</code></a>
|
114
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-READ-ERROR--CAPS"><code class="literal">CAIRO_STATUS_READ_ERROR</code></a>
|
115
|
-
|
116
|
-
Alternatively, you can allow errors to propagate through the drawing
|
117
|
-
operations and check the status on the context upon completion
|
118
|
-
using <a class="link" href="cairo-context.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.
|
119
|
-
</td>
|
120
|
-
</tr>
|
121
|
-
</tbody>
|
122
|
-
</table></div>
|
123
|
-
</div>
|
124
|
-
<hr>
|
125
|
-
<div class="refsect2" title="cairo_read_func_t ()">
|
126
|
-
<a name="cairo-read-func-t"></a><h3>cairo_read_func_t ()</h3>
|
127
|
-
<pre class="programlisting"><a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> (*cairo_read_func_t) (void *closure,
|
128
|
-
unsigned char *data,
|
129
|
-
unsigned int length);</pre>
|
130
|
-
<p>
|
131
|
-
<a class="link" href="cairo-png-functions.html#cairo-read-func-t" title="cairo_read_func_t ()"><span class="type">cairo_read_func_t</span></a> is the type of function which is called when a
|
132
|
-
backend needs to read data from an input stream. It is passed the
|
133
|
-
closure which was specified by the user at the time the read
|
134
|
-
function was registered, the buffer to read the data into and the
|
135
|
-
length of the data in bytes. The read function should return
|
136
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-SUCCESS--CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully read,
|
137
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-READ-ERROR--CAPS"><code class="literal">CAIRO_STATUS_READ_ERROR</code></a> otherwise.</p>
|
138
|
-
<p>
|
139
|
-
</p>
|
140
|
-
<div class="variablelist"><table border="0">
|
141
|
-
<col align="left" valign="top">
|
142
|
-
<tbody>
|
143
|
-
<tr>
|
144
|
-
<td><p><span class="term"><em class="parameter"><code>closure</code></em> :</span></p></td>
|
145
|
-
<td> the input closure
|
146
|
-
</td>
|
147
|
-
</tr>
|
148
|
-
<tr>
|
149
|
-
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
150
|
-
<td> the buffer into which to read the data
|
151
|
-
</td>
|
152
|
-
</tr>
|
153
|
-
<tr>
|
154
|
-
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
155
|
-
<td> the amount of data to read
|
156
|
-
</td>
|
157
|
-
</tr>
|
158
|
-
<tr>
|
159
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
160
|
-
<td> the status code of the read operation
|
161
|
-
</td>
|
162
|
-
</tr>
|
163
|
-
</tbody>
|
164
|
-
</table></div>
|
165
|
-
</div>
|
166
|
-
<hr>
|
167
|
-
<div class="refsect2" title="cairo_image_surface_create_from_png_stream ()">
|
168
|
-
<a name="cairo-image-surface-create-from-png-stream"></a><h3>cairo_image_surface_create_from_png_stream ()</h3>
|
169
|
-
<pre class="programlisting"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * cairo_image_surface_create_from_png_stream
|
170
|
-
(<a class="link" href="cairo-png-functions.html#cairo-read-func-t" title="cairo_read_func_t ()">cairo_read_func_t</a> read_func,
|
171
|
-
void *closure);</pre>
|
172
|
-
<p>
|
173
|
-
Creates a new image surface from PNG data read incrementally
|
174
|
-
via the <em class="parameter"><code>read_func</code></em> function.</p>
|
175
|
-
<p>
|
176
|
-
</p>
|
177
|
-
<div class="variablelist"><table border="0">
|
178
|
-
<col align="left" valign="top">
|
179
|
-
<tbody>
|
180
|
-
<tr>
|
181
|
-
<td><p><span class="term"><em class="parameter"><code>read_func</code></em> :</span></p></td>
|
182
|
-
<td> function called to read the data of the file
|
183
|
-
</td>
|
184
|
-
</tr>
|
185
|
-
<tr>
|
186
|
-
<td><p><span class="term"><em class="parameter"><code>closure</code></em> :</span></p></td>
|
187
|
-
<td> data to pass to <em class="parameter"><code>read_func</code></em>.
|
188
|
-
</td>
|
189
|
-
</tr>
|
190
|
-
<tr>
|
191
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
192
|
-
<td> a new <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> initialized with the contents
|
193
|
-
of the PNG file or a "nil" surface if the data read is not a valid PNG image
|
194
|
-
or memory could not be allocated for the operation. A nil
|
195
|
-
surface can be checked for with cairo_surface_status(surface) which
|
196
|
-
may return one of the following values:
|
197
|
-
|
198
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-NO-MEMORY--CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a>
|
199
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-READ-ERROR--CAPS"><code class="literal">CAIRO_STATUS_READ_ERROR</code></a>
|
200
|
-
|
201
|
-
Alternatively, you can allow errors to propagate through the drawing
|
202
|
-
operations and check the status on the context upon completion
|
203
|
-
using <a class="link" href="cairo-context.html#cairo-status" title="cairo_status ()"><code class="function">cairo_status()</code></a>.
|
204
|
-
</td>
|
205
|
-
</tr>
|
206
|
-
</tbody>
|
207
|
-
</table></div>
|
208
|
-
</div>
|
209
|
-
<hr>
|
210
|
-
<div class="refsect2" title="cairo_surface_write_to_png ()">
|
211
|
-
<a name="cairo-surface-write-to-png"></a><h3>cairo_surface_write_to_png ()</h3>
|
212
|
-
<pre class="programlisting"><a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> cairo_surface_write_to_png (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
213
|
-
const char *filename);</pre>
|
214
|
-
<p>
|
215
|
-
Writes the contents of <em class="parameter"><code>surface</code></em> to a new file <em class="parameter"><code>filename</code></em> as a PNG
|
216
|
-
image.</p>
|
217
|
-
<p>
|
218
|
-
</p>
|
219
|
-
<div class="variablelist"><table border="0">
|
220
|
-
<col align="left" valign="top">
|
221
|
-
<tbody>
|
222
|
-
<tr>
|
223
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
224
|
-
<td> a <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> with pixel contents
|
225
|
-
</td>
|
226
|
-
</tr>
|
227
|
-
<tr>
|
228
|
-
<td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
|
229
|
-
<td> the name of a file to write to
|
230
|
-
</td>
|
231
|
-
</tr>
|
232
|
-
<tr>
|
233
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
234
|
-
<td> <a class="link" href="cairo-error-status.html#CAIRO-STATUS-SUCCESS--CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
|
235
|
-
successfully. Otherwise, <a class="link" href="cairo-error-status.html#CAIRO-STATUS-NO-MEMORY--CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> if memory could not
|
236
|
-
be allocated for the operation or
|
237
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH--CAPS"><code class="literal">CAIRO_STATUS_SURFACE_TYPE_MISMATCH</code></a> if the surface does not have
|
238
|
-
pixel contents, or <a class="link" href="cairo-error-status.html#CAIRO-STATUS-WRITE-ERROR--CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> if an I/O error occurs
|
239
|
-
while attempting to write the file.
|
240
|
-
</td>
|
241
|
-
</tr>
|
242
|
-
</tbody>
|
243
|
-
</table></div>
|
244
|
-
</div>
|
245
|
-
<hr>
|
246
|
-
<div class="refsect2" title="cairo_write_func_t ()">
|
247
|
-
<a name="cairo-write-func-t"></a><h3>cairo_write_func_t ()</h3>
|
248
|
-
<pre class="programlisting"><a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> (*cairo_write_func_t) (void *closure,
|
249
|
-
unsigned char *data,
|
250
|
-
unsigned int length);</pre>
|
251
|
-
<p>
|
252
|
-
<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()"><span class="type">cairo_write_func_t</span></a> is the type of function which is called when a
|
253
|
-
backend needs to write data to an output stream. It is passed the
|
254
|
-
closure which was specified by the user at the time the write
|
255
|
-
function was registered, the data to write and the length of the
|
256
|
-
data in bytes. The write function should return
|
257
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-SUCCESS--CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if all the data was successfully written,
|
258
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-WRITE-ERROR--CAPS"><code class="literal">CAIRO_STATUS_WRITE_ERROR</code></a> otherwise.</p>
|
259
|
-
<p>
|
260
|
-
</p>
|
261
|
-
<div class="variablelist"><table border="0">
|
262
|
-
<col align="left" valign="top">
|
263
|
-
<tbody>
|
264
|
-
<tr>
|
265
|
-
<td><p><span class="term"><em class="parameter"><code>closure</code></em> :</span></p></td>
|
266
|
-
<td> the output closure
|
267
|
-
</td>
|
268
|
-
</tr>
|
269
|
-
<tr>
|
270
|
-
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
271
|
-
<td> the buffer containing the data to write
|
272
|
-
</td>
|
273
|
-
</tr>
|
274
|
-
<tr>
|
275
|
-
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
276
|
-
<td> the amount of data to write
|
277
|
-
</td>
|
278
|
-
</tr>
|
279
|
-
<tr>
|
280
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
281
|
-
<td> the status code of the write operation
|
282
|
-
</td>
|
283
|
-
</tr>
|
284
|
-
</tbody>
|
285
|
-
</table></div>
|
286
|
-
</div>
|
287
|
-
<hr>
|
288
|
-
<div class="refsect2" title="cairo_surface_write_to_png_stream ()">
|
289
|
-
<a name="cairo-surface-write-to-png-stream"></a><h3>cairo_surface_write_to_png_stream ()</h3>
|
290
|
-
<pre class="programlisting"><a class="link" href="cairo-error-status.html#cairo-status-t" title="enum cairo_status_t">cairo_status_t</a> cairo_surface_write_to_png_stream (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface,
|
291
|
-
<a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()">cairo_write_func_t</a> write_func,
|
292
|
-
void *closure);</pre>
|
293
|
-
<p>
|
294
|
-
Writes the image surface to the write function.</p>
|
295
|
-
<p>
|
296
|
-
</p>
|
297
|
-
<div class="variablelist"><table border="0">
|
298
|
-
<col align="left" valign="top">
|
299
|
-
<tbody>
|
300
|
-
<tr>
|
301
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
302
|
-
<td> a <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> with pixel contents
|
303
|
-
</td>
|
304
|
-
</tr>
|
305
|
-
<tr>
|
306
|
-
<td><p><span class="term"><em class="parameter"><code>write_func</code></em> :</span></p></td>
|
307
|
-
<td> a <a class="link" href="cairo-png-functions.html#cairo-write-func-t" title="cairo_write_func_t ()"><span class="type">cairo_write_func_t</span></a>
|
308
|
-
</td>
|
309
|
-
</tr>
|
310
|
-
<tr>
|
311
|
-
<td><p><span class="term"><em class="parameter"><code>closure</code></em> :</span></p></td>
|
312
|
-
<td> closure data for the write function
|
313
|
-
</td>
|
314
|
-
</tr>
|
315
|
-
<tr>
|
316
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
317
|
-
<td> <a class="link" href="cairo-error-status.html#CAIRO-STATUS-SUCCESS--CAPS"><code class="literal">CAIRO_STATUS_SUCCESS</code></a> if the PNG file was written
|
318
|
-
successfully. Otherwise, <a class="link" href="cairo-error-status.html#CAIRO-STATUS-NO-MEMORY--CAPS"><code class="literal">CAIRO_STATUS_NO_MEMORY</code></a> is returned if
|
319
|
-
memory could not be allocated for the operation,
|
320
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-SURFACE-TYPE-MISMATCH--CAPS"><code class="literal">CAIRO_STATUS_SURFACE_TYPE_MISMATCH</code></a> if the surface does not have
|
321
|
-
pixel contents.
|
322
|
-
</td>
|
323
|
-
</tr>
|
324
|
-
</tbody>
|
325
|
-
</table></div>
|
326
|
-
</div>
|
327
|
-
</div>
|
328
|
-
<div class="refsect1" title="See Also">
|
329
|
-
<a name="cairo-png-functions.see-also"></a><h2>See Also</h2>
|
330
|
-
<p>
|
331
|
-
</p>
|
332
|
-
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a></li></ul></div>
|
333
|
-
<p>
|
334
|
-
</p>
|
335
|
-
</div>
|
336
|
-
</div>
|
337
|
-
<div class="footer">
|
338
|
-
<hr>
|
339
|
-
Generated by GTK-Doc V1.11</div>
|
340
|
-
</body>
|
341
|
-
</html>
|