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,319 +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>FreeType Fonts</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-fonts.html" title="Fonts">
|
9
|
-
<link rel="prev" href="cairo-font-options.html" title="cairo_font_options_t">
|
10
|
-
<link rel="next" href="cairo-win32-font.html" title="Win32 Fonts">
|
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-font-options.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
28
|
-
<td><a accesskey="u" href="cairo-fonts.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-win32-font.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-ft-font.synopsis" class="shortcut">Top</a>
|
35
|
-
|
|
36
|
-
<a href="#cairo-ft-font.description" class="shortcut">Description</a>
|
37
|
-
</td></tr>
|
38
|
-
</table>
|
39
|
-
<div class="refentry" title="FreeType Fonts">
|
40
|
-
<a name="cairo-ft-font"></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-ft-font.top_of_page"></a>FreeType Fonts</span></h2>
|
44
|
-
<p>FreeType Fonts — Font support for FreeType</p>
|
45
|
-
</td>
|
46
|
-
<td valign="top" align="right"></td>
|
47
|
-
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv" title="Synopsis">
|
49
|
-
<a name="cairo-ft-font.synopsis"></a><h2>Synopsis</h2>
|
50
|
-
<pre class="synopsis">
|
51
|
-
#define <a class="link" href="cairo-ft-font.html#CAIRO-HAS-FT-FONT--CAPS" title="CAIRO_HAS_FT_FONT">CAIRO_HAS_FT_FONT</a>
|
52
|
-
<a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t">cairo_font_face_t</a> * <a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-ft-face" title="cairo_ft_font_face_create_for_ft_face ()">cairo_ft_font_face_create_for_ft_face</a>
|
53
|
-
(FT_Face face,
|
54
|
-
int load_flags);
|
55
|
-
<a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t">cairo_font_face_t</a> * <a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-pattern" title="cairo_ft_font_face_create_for_pattern ()">cairo_ft_font_face_create_for_pattern</a>
|
56
|
-
(FcPattern *pattern);
|
57
|
-
void <a class="link" href="cairo-ft-font.html#cairo-ft-font-options-substitute" title="cairo_ft_font_options_substitute ()">cairo_ft_font_options_substitute</a> (const <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t">cairo_font_options_t</a> *options,
|
58
|
-
FcPattern *pattern);
|
59
|
-
FT_Face <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()">cairo_ft_scaled_font_lock_face</a> (<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t">cairo_scaled_font_t</a> *scaled_font);
|
60
|
-
void <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-unlock-face" title="cairo_ft_scaled_font_unlock_face ()">cairo_ft_scaled_font_unlock_face</a> (<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t">cairo_scaled_font_t</a> *scaled_font);
|
61
|
-
</pre>
|
62
|
-
</div>
|
63
|
-
<div class="refsect1" title="Description">
|
64
|
-
<a name="cairo-ft-font.description"></a><h2>Description</h2>
|
65
|
-
<p>
|
66
|
-
The FreeType font backend is primarily used to render text on GNU/Linux
|
67
|
-
systems, but can be used on other platforms too.
|
68
|
-
</p>
|
69
|
-
</div>
|
70
|
-
<div class="refsect1" title="Details">
|
71
|
-
<a name="cairo-ft-font.details"></a><h2>Details</h2>
|
72
|
-
<div class="refsect2" title="CAIRO_HAS_FT_FONT">
|
73
|
-
<a name="CAIRO-HAS-FT-FONT--CAPS"></a><h3>CAIRO_HAS_FT_FONT</h3>
|
74
|
-
<pre class="programlisting">#define CAIRO_HAS_FT_FONT 1
|
75
|
-
</pre>
|
76
|
-
<p>
|
77
|
-
Defined if the FreeType font backend is available.
|
78
|
-
This macro can be used to conditionally compile backend-specific code.
|
79
|
-
</p>
|
80
|
-
</div>
|
81
|
-
<hr>
|
82
|
-
<div class="refsect2" title="cairo_ft_font_face_create_for_ft_face ()">
|
83
|
-
<a name="cairo-ft-font-face-create-for-ft-face"></a><h3>cairo_ft_font_face_create_for_ft_face ()</h3>
|
84
|
-
<pre class="programlisting"><a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t">cairo_font_face_t</a> * cairo_ft_font_face_create_for_ft_face
|
85
|
-
(FT_Face face,
|
86
|
-
int load_flags);</pre>
|
87
|
-
<p>
|
88
|
-
Creates a new font face for the FreeType font backend from a
|
89
|
-
pre-opened FreeType face. This font can then be used with
|
90
|
-
<a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a> or <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>. The
|
91
|
-
<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> returned from <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> is
|
92
|
-
also for the FreeType backend and can be used with functions such
|
93
|
-
as <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a>. Note that Cairo may keep a reference
|
94
|
-
to the FT_Face alive in a font-cache and the exact lifetime of the reference
|
95
|
-
depends highly upon the exact usage pattern and is subject to external
|
96
|
-
factors. You must not call <code class="function">FT_Done_Face()</code> before the last reference to the
|
97
|
-
<a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a> has been dropped.
|
98
|
-
</p>
|
99
|
-
<p>
|
100
|
-
As an example, below is how one might correctly couple the lifetime of
|
101
|
-
the FreeType face object to the <a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>.
|
102
|
-
</p>
|
103
|
-
<p>
|
104
|
-
</p>
|
105
|
-
<div class="informalexample"><pre class="programlisting">
|
106
|
-
static const cairo_user_data_key_t key;
|
107
|
-
|
108
|
-
font_face = cairo_ft_font_face_create_for_ft_face (ft_face, 0);
|
109
|
-
status = cairo_font_face_set_user_data (font_face, &key,
|
110
|
-
ft_face, (cairo_destroy_func_t) FT_Done_Face);
|
111
|
-
if (status) {
|
112
|
-
cairo_font_face_destroy (font_face);
|
113
|
-
FT_Done_Face (ft_face);
|
114
|
-
return ERROR;
|
115
|
-
}
|
116
|
-
</pre></div>
|
117
|
-
<p>
|
118
|
-
</p>
|
119
|
-
<div class="variablelist"><table border="0">
|
120
|
-
<col align="left" valign="top">
|
121
|
-
<tbody>
|
122
|
-
<tr>
|
123
|
-
<td><p><span class="term"><em class="parameter"><code>face</code></em> :</span></p></td>
|
124
|
-
<td> A FreeType face object, already opened. This must
|
125
|
-
be kept around until the face's ref_count drops to
|
126
|
-
zero and it is freed. Since the face may be referenced
|
127
|
-
internally to Cairo, the best way to determine when it
|
128
|
-
is safe to free the face is to pass a
|
129
|
-
<a class="link" href="cairo-types.html#cairo-destroy-func-t" title="cairo_destroy_func_t ()"><span class="type">cairo_destroy_func_t</span></a> to <a class="link" href="cairo-font-face.html#cairo-font-face-set-user-data" title="cairo_font_face_set_user_data ()"><code class="function">cairo_font_face_set_user_data()</code></a>
|
130
|
-
</td>
|
131
|
-
</tr>
|
132
|
-
<tr>
|
133
|
-
<td><p><span class="term"><em class="parameter"><code>load_flags</code></em> :</span></p></td>
|
134
|
-
<td> flags to pass to FT_Load_Glyph when loading
|
135
|
-
glyphs from the font. These flags are OR'ed together with
|
136
|
-
the flags derived from the <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t"><span class="type">cairo_font_options_t</span></a> passed
|
137
|
-
to <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>, so only a few values such
|
138
|
-
as <code class="literal">FT_LOAD_VERTICAL_LAYOUT</code>, and <code class="literal">FT_LOAD_FORCE_AUTOHINT</code>
|
139
|
-
are useful. You should not pass any of the flags affecting
|
140
|
-
the load target, such as <code class="literal">FT_LOAD_TARGET_LIGHT</code>.
|
141
|
-
</td>
|
142
|
-
</tr>
|
143
|
-
<tr>
|
144
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
145
|
-
<td> a newly created <a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
|
146
|
-
<a class="link" href="cairo-font-face.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.
|
147
|
-
</td>
|
148
|
-
</tr>
|
149
|
-
</tbody>
|
150
|
-
</table></div>
|
151
|
-
</div>
|
152
|
-
<hr>
|
153
|
-
<div class="refsect2" title="cairo_ft_font_face_create_for_pattern ()">
|
154
|
-
<a name="cairo-ft-font-face-create-for-pattern"></a><h3>cairo_ft_font_face_create_for_pattern ()</h3>
|
155
|
-
<pre class="programlisting"><a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t">cairo_font_face_t</a> * cairo_ft_font_face_create_for_pattern
|
156
|
-
(FcPattern *pattern);</pre>
|
157
|
-
<p>
|
158
|
-
Creates a new font face for the FreeType font backend based on a
|
159
|
-
fontconfig pattern. This font can then be used with
|
160
|
-
<a class="link" href="cairo-text.html#cairo-set-font-face" title="cairo_set_font_face ()"><code class="function">cairo_set_font_face()</code></a> or <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>. The
|
161
|
-
<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> returned from <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> is
|
162
|
-
also for the FreeType backend and can be used with functions such
|
163
|
-
as <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a>.
|
164
|
-
</p>
|
165
|
-
<p>
|
166
|
-
Font rendering options are represented both here and when you
|
167
|
-
call <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a>. Font options that have a representation
|
168
|
-
in a <span class="type">FcPattern</span> must be passed in here; to modify <span class="type">FcPattern</span>
|
169
|
-
appropriately to reflect the options in a <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t"><span class="type">cairo_font_options_t</span></a>, call
|
170
|
-
<a class="link" href="cairo-ft-font.html#cairo-ft-font-options-substitute" title="cairo_ft_font_options_substitute ()"><code class="function">cairo_ft_font_options_substitute()</code></a>.
|
171
|
-
</p>
|
172
|
-
<p>
|
173
|
-
The pattern's FC_FT_FACE element is inspected first and if that is set,
|
174
|
-
that will be the FreeType font face associated with the returned cairo
|
175
|
-
font face. Otherwise the FC_FILE and FC_INDEX elements of <em class="parameter"><code>pattern</code></em> are
|
176
|
-
used to load a font face from file.
|
177
|
-
</p>
|
178
|
-
<p>
|
179
|
-
If the FC_FT_FACE element of <em class="parameter"><code>pattern</code></em> is set, the user is responsible
|
180
|
-
for making sure that the referenced FT_Face remains valid for the life
|
181
|
-
time of the returned <a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. See
|
182
|
-
<a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-ft-face" title="cairo_ft_font_face_create_for_ft_face ()"><code class="function">cairo_ft_font_face_create_for_ft_face()</code></a> for an exmaple of how to couple
|
183
|
-
the life time of the FT_Face to that of the cairo font-face.</p>
|
184
|
-
<p>
|
185
|
-
</p>
|
186
|
-
<div class="variablelist"><table border="0">
|
187
|
-
<col align="left" valign="top">
|
188
|
-
<tbody>
|
189
|
-
<tr>
|
190
|
-
<td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
|
191
|
-
<td> A fully resolved fontconfig
|
192
|
-
pattern. A pattern can be resolved, by, among other things, calling
|
193
|
-
<code class="function">FcConfigSubstitute()</code>, <code class="function">FcDefaultSubstitute()</code>, then
|
194
|
-
<code class="function">FcFontMatch()</code>. Cairo will call <code class="function">FcPatternReference()</code> on this
|
195
|
-
pattern, so you should not further modify the pattern, but you can
|
196
|
-
release your reference to the pattern with <code class="function">FcPatternDestroy()</code> if
|
197
|
-
you no longer need to access it.
|
198
|
-
</td>
|
199
|
-
</tr>
|
200
|
-
<tr>
|
201
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
202
|
-
<td> a newly created <a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a>. Free with
|
203
|
-
<a class="link" href="cairo-font-face.html#cairo-font-face-destroy" title="cairo_font_face_destroy ()"><code class="function">cairo_font_face_destroy()</code></a> when you are done using it.
|
204
|
-
</td>
|
205
|
-
</tr>
|
206
|
-
</tbody>
|
207
|
-
</table></div>
|
208
|
-
</div>
|
209
|
-
<hr>
|
210
|
-
<div class="refsect2" title="cairo_ft_font_options_substitute ()">
|
211
|
-
<a name="cairo-ft-font-options-substitute"></a><h3>cairo_ft_font_options_substitute ()</h3>
|
212
|
-
<pre class="programlisting">void cairo_ft_font_options_substitute (const <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t">cairo_font_options_t</a> *options,
|
213
|
-
FcPattern *pattern);</pre>
|
214
|
-
<p>
|
215
|
-
Add options to a <span class="type">FcPattern</span> based on a <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t"><span class="type">cairo_font_options_t</span></a> font
|
216
|
-
options object. Options that are already in the pattern, are not overridden,
|
217
|
-
so you should call this function after calling <code class="function">FcConfigSubstitute()</code> (the
|
218
|
-
user's settings should override options based on the surface type), but
|
219
|
-
before calling <code class="function">FcDefaultSubstitute()</code>.</p>
|
220
|
-
<p>
|
221
|
-
</p>
|
222
|
-
<div class="variablelist"><table border="0">
|
223
|
-
<col align="left" valign="top">
|
224
|
-
<tbody>
|
225
|
-
<tr>
|
226
|
-
<td><p><span class="term"><em class="parameter"><code>options</code></em> :</span></p></td>
|
227
|
-
<td> a <a class="link" href="cairo-font-options.html#cairo-font-options-t" title="cairo_font_options_t"><span class="type">cairo_font_options_t</span></a> object
|
228
|
-
</td>
|
229
|
-
</tr>
|
230
|
-
<tr>
|
231
|
-
<td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
|
232
|
-
<td> an existing <span class="type">FcPattern</span>
|
233
|
-
</td>
|
234
|
-
</tr>
|
235
|
-
</tbody>
|
236
|
-
</table></div>
|
237
|
-
</div>
|
238
|
-
<hr>
|
239
|
-
<div class="refsect2" title="cairo_ft_scaled_font_lock_face ()">
|
240
|
-
<a name="cairo-ft-scaled-font-lock-face"></a><h3>cairo_ft_scaled_font_lock_face ()</h3>
|
241
|
-
<pre class="programlisting">FT_Face cairo_ft_scaled_font_lock_face (<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t">cairo_scaled_font_t</a> *scaled_font);</pre>
|
242
|
-
<p>
|
243
|
-
<a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a> gets the <span class="type">FT_Face</span> object from a FreeType
|
244
|
-
backend font and scales it appropriately for the font. You must
|
245
|
-
release the face with <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-unlock-face" title="cairo_ft_scaled_font_unlock_face ()"><code class="function">cairo_ft_scaled_font_unlock_face()</code></a>
|
246
|
-
when you are done using it. Since the <span class="type">FT_Face</span> object can be
|
247
|
-
shared between multiple <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> objects, you must not
|
248
|
-
lock any other font objects until you unlock this one. A count is
|
249
|
-
kept of the number of times <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a> is
|
250
|
-
called. <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-unlock-face" title="cairo_ft_scaled_font_unlock_face ()"><code class="function">cairo_ft_scaled_font_unlock_face()</code></a> must be called the same number
|
251
|
-
of times.
|
252
|
-
</p>
|
253
|
-
<p>
|
254
|
-
You must be careful when using this function in a library or in a
|
255
|
-
threaded application, because freetype's design makes it unsafe to
|
256
|
-
call freetype functions simultaneously from multiple threads, (even
|
257
|
-
if using distinct FT_Face objects). Because of this, application
|
258
|
-
code that acquires an FT_Face object with this call must add it's
|
259
|
-
own locking to protect any use of that object, (and which also must
|
260
|
-
protect any other calls into cairo as almost any cairo function
|
261
|
-
might result in a call into the freetype library).</p>
|
262
|
-
<p>
|
263
|
-
</p>
|
264
|
-
<div class="variablelist"><table border="0">
|
265
|
-
<col align="left" valign="top">
|
266
|
-
<tbody>
|
267
|
-
<tr>
|
268
|
-
<td><p><span class="term"><em class="parameter"><code>scaled_font</code></em> :</span></p></td>
|
269
|
-
<td> A <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> from the FreeType font backend. Such an
|
270
|
-
object can be created by calling <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> on a
|
271
|
-
FreeType backend font face (see <a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-pattern" title="cairo_ft_font_face_create_for_pattern ()"><code class="function">cairo_ft_font_face_create_for_pattern()</code></a>,
|
272
|
-
<a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-ft-face" title="cairo_ft_font_face_create_for_ft_face ()"><code class="function">cairo_ft_font_face_create_for_ft_face()</code></a>).
|
273
|
-
</td>
|
274
|
-
</tr>
|
275
|
-
<tr>
|
276
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
277
|
-
<td> The <span class="type">FT_Face</span> object for <em class="parameter"><code>font</code></em>, scaled appropriately,
|
278
|
-
or <code class="literal">NULL</code> if <em class="parameter"><code>scaled_font</code></em> is in an error state (see
|
279
|
-
<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-status" title="cairo_scaled_font_status ()"><code class="function">cairo_scaled_font_status()</code></a>) or there is insufficient memory.
|
280
|
-
</td>
|
281
|
-
</tr>
|
282
|
-
</tbody>
|
283
|
-
</table></div>
|
284
|
-
</div>
|
285
|
-
<hr>
|
286
|
-
<div class="refsect2" title="cairo_ft_scaled_font_unlock_face ()">
|
287
|
-
<a name="cairo-ft-scaled-font-unlock-face"></a><h3>cairo_ft_scaled_font_unlock_face ()</h3>
|
288
|
-
<pre class="programlisting">void cairo_ft_scaled_font_unlock_face (<a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t">cairo_scaled_font_t</a> *scaled_font);</pre>
|
289
|
-
<p>
|
290
|
-
Releases a face obtained with <a class="link" href="cairo-ft-font.html#cairo-ft-scaled-font-lock-face" title="cairo_ft_scaled_font_lock_face ()"><code class="function">cairo_ft_scaled_font_lock_face()</code></a>.</p>
|
291
|
-
<p>
|
292
|
-
</p>
|
293
|
-
<div class="variablelist"><table border="0">
|
294
|
-
<col align="left" valign="top">
|
295
|
-
<tbody><tr>
|
296
|
-
<td><p><span class="term"><em class="parameter"><code>scaled_font</code></em> :</span></p></td>
|
297
|
-
<td> A <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-t" title="cairo_scaled_font_t"><span class="type">cairo_scaled_font_t</span></a> from the FreeType font backend. Such an
|
298
|
-
object can be created by calling <a class="link" href="cairo-scaled-font.html#cairo-scaled-font-create" title="cairo_scaled_font_create ()"><code class="function">cairo_scaled_font_create()</code></a> on a
|
299
|
-
FreeType backend font face (see <a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-pattern" title="cairo_ft_font_face_create_for_pattern ()"><code class="function">cairo_ft_font_face_create_for_pattern()</code></a>,
|
300
|
-
<a class="link" href="cairo-ft-font.html#cairo-ft-font-face-create-for-ft-face" title="cairo_ft_font_face_create_for_ft_face ()"><code class="function">cairo_ft_font_face_create_for_ft_face()</code></a>).
|
301
|
-
</td>
|
302
|
-
</tr></tbody>
|
303
|
-
</table></div>
|
304
|
-
</div>
|
305
|
-
</div>
|
306
|
-
<div class="refsect1" title="See Also">
|
307
|
-
<a name="cairo-ft-font.see-also"></a><h2>See Also</h2>
|
308
|
-
<p>
|
309
|
-
</p>
|
310
|
-
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><a class="link" href="cairo-font-face.html#cairo-font-face-t" title="cairo_font_face_t"><span class="type">cairo_font_face_t</span></a></li></ul></div>
|
311
|
-
<p>
|
312
|
-
</p>
|
313
|
-
</div>
|
314
|
-
</div>
|
315
|
-
<div class="footer">
|
316
|
-
<hr>
|
317
|
-
Generated by GTK-Doc V1.11</div>
|
318
|
-
</body>
|
319
|
-
</html>
|
@@ -1,473 +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>Image 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-surface.html" title="cairo_surface_t">
|
10
|
-
<link rel="next" href="cairo-pdf-surface.html" title="PDF 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-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-pdf-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-image-surface.synopsis" class="shortcut">Top</a>
|
35
|
-
|
|
36
|
-
<a href="#cairo-image-surface.description" class="shortcut">Description</a>
|
37
|
-
</td></tr>
|
38
|
-
</table>
|
39
|
-
<div class="refentry" title="Image Surfaces">
|
40
|
-
<a name="cairo-image-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-image-surface.top_of_page"></a>Image Surfaces</span></h2>
|
44
|
-
<p>Image Surfaces — Rendering to memory buffers</p>
|
45
|
-
</td>
|
46
|
-
<td valign="top" align="right"></td>
|
47
|
-
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv" title="Synopsis">
|
49
|
-
<a name="cairo-image-surface.synopsis"></a><h2>Synopsis</h2>
|
50
|
-
<pre class="synopsis">
|
51
|
-
#define <a class="link" href="cairo-image-surface.html#CAIRO-HAS-IMAGE-SURFACE--CAPS" title="CAIRO_HAS_IMAGE_SURFACE">CAIRO_HAS_IMAGE_SURFACE</a>
|
52
|
-
enum <a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a>;
|
53
|
-
int <a class="link" href="cairo-image-surface.html#cairo-format-stride-for-width" title="cairo_format_stride_for_width ()">cairo_format_stride_for_width</a> (<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
54
|
-
int width);
|
55
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-image-surface.html#cairo-image-surface-create" title="cairo_image_surface_create ()">cairo_image_surface_create</a> (<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
56
|
-
int width,
|
57
|
-
int height);
|
58
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> * <a class="link" href="cairo-image-surface.html#cairo-image-surface-create-for-data" title="cairo_image_surface_create_for_data ()">cairo_image_surface_create_for_data</a> (unsigned char *data,
|
59
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
60
|
-
int width,
|
61
|
-
int height,
|
62
|
-
int stride);
|
63
|
-
unsigned char * <a class="link" href="cairo-image-surface.html#cairo-image-surface-get-data" title="cairo_image_surface_get_data ()">cairo_image_surface_get_data</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);
|
64
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> <a class="link" href="cairo-image-surface.html#cairo-image-surface-get-format" title="cairo_image_surface_get_format ()">cairo_image_surface_get_format</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);
|
65
|
-
int <a class="link" href="cairo-image-surface.html#cairo-image-surface-get-width" title="cairo_image_surface_get_width ()">cairo_image_surface_get_width</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);
|
66
|
-
int <a class="link" href="cairo-image-surface.html#cairo-image-surface-get-height" title="cairo_image_surface_get_height ()">cairo_image_surface_get_height</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);
|
67
|
-
int <a class="link" href="cairo-image-surface.html#cairo-image-surface-get-stride" title="cairo_image_surface_get_stride ()">cairo_image_surface_get_stride</a> (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);
|
68
|
-
</pre>
|
69
|
-
</div>
|
70
|
-
<div class="refsect1" title="Description">
|
71
|
-
<a name="cairo-image-surface.description"></a><h2>Description</h2>
|
72
|
-
<p>
|
73
|
-
Image surfaces provide the ability to render to memory buffers
|
74
|
-
either allocated by cairo or by the calling code. The supported
|
75
|
-
image formats are those defined in <a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a>.
|
76
|
-
</p>
|
77
|
-
</div>
|
78
|
-
<div class="refsect1" title="Details">
|
79
|
-
<a name="cairo-image-surface.details"></a><h2>Details</h2>
|
80
|
-
<div class="refsect2" title="CAIRO_HAS_IMAGE_SURFACE">
|
81
|
-
<a name="CAIRO-HAS-IMAGE-SURFACE--CAPS"></a><h3>CAIRO_HAS_IMAGE_SURFACE</h3>
|
82
|
-
<pre class="programlisting">#define CAIRO_HAS_IMAGE_SURFACE 1
|
83
|
-
</pre>
|
84
|
-
<p>
|
85
|
-
Defined if the image surface backend is available.
|
86
|
-
The image surface backend is always built in.
|
87
|
-
This macro was added for completeness in cairo 1.8.
|
88
|
-
</p>
|
89
|
-
<p class="since">Since 1.8</p>
|
90
|
-
</div>
|
91
|
-
<hr>
|
92
|
-
<div class="refsect2" title="enum cairo_format_t">
|
93
|
-
<a name="cairo-format-t"></a><h3>enum cairo_format_t</h3>
|
94
|
-
<pre class="programlisting">typedef enum _cairo_format {
|
95
|
-
CAIRO_FORMAT_ARGB32,
|
96
|
-
CAIRO_FORMAT_RGB24,
|
97
|
-
CAIRO_FORMAT_A8,
|
98
|
-
CAIRO_FORMAT_A1
|
99
|
-
/* The value of 4 is reserved by a deprecated enum value.
|
100
|
-
* The next format added must have an explicit value of 5.
|
101
|
-
CAIRO_FORMAT_RGB16_565 = 4,
|
102
|
-
*/
|
103
|
-
} cairo_format_t;
|
104
|
-
</pre>
|
105
|
-
<p>
|
106
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> is used to identify the memory format of
|
107
|
-
image data.
|
108
|
-
</p>
|
109
|
-
<p>
|
110
|
-
New entries may be added in future versions.</p>
|
111
|
-
<p>
|
112
|
-
</p>
|
113
|
-
<div class="variablelist"><table border="0">
|
114
|
-
<col align="left" valign="top">
|
115
|
-
<tbody>
|
116
|
-
<tr>
|
117
|
-
<td><p><a name="CAIRO-FORMAT-ARGB32--CAPS"></a><span class="term"><code class="literal">CAIRO_FORMAT_ARGB32</code></span></p></td>
|
118
|
-
<td> each pixel is a 32-bit quantity, with
|
119
|
-
alpha in the upper 8 bits, then red, then green, then blue.
|
120
|
-
The 32-bit quantities are stored native-endian. Pre-multiplied
|
121
|
-
alpha is used. (That is, 50% transparent red is 0x80800000,
|
122
|
-
not 0x80ff0000.)
|
123
|
-
</td>
|
124
|
-
</tr>
|
125
|
-
<tr>
|
126
|
-
<td><p><a name="CAIRO-FORMAT-RGB24--CAPS"></a><span class="term"><code class="literal">CAIRO_FORMAT_RGB24</code></span></p></td>
|
127
|
-
<td> each pixel is a 32-bit quantity, with
|
128
|
-
the upper 8 bits unused. Red, Green, and Blue are stored
|
129
|
-
in the remaining 24 bits in that order.
|
130
|
-
</td>
|
131
|
-
</tr>
|
132
|
-
<tr>
|
133
|
-
<td><p><a name="CAIRO-FORMAT-A8--CAPS"></a><span class="term"><code class="literal">CAIRO_FORMAT_A8</code></span></p></td>
|
134
|
-
<td> each pixel is a 8-bit quantity holding
|
135
|
-
an alpha value.
|
136
|
-
</td>
|
137
|
-
</tr>
|
138
|
-
<tr>
|
139
|
-
<td><p><a name="CAIRO-FORMAT-A1--CAPS"></a><span class="term"><code class="literal">CAIRO_FORMAT_A1</code></span></p></td>
|
140
|
-
<td> each pixel is a 1-bit quantity holding
|
141
|
-
an alpha value. Pixels are packed together into 32-bit
|
142
|
-
quantities. The ordering of the bits matches the
|
143
|
-
endianess of the platform. On a big-endian machine, the
|
144
|
-
first pixel is in the uppermost bit, on a little-endian
|
145
|
-
machine the first pixel is in the least-significant bit.
|
146
|
-
</td>
|
147
|
-
</tr>
|
148
|
-
</tbody>
|
149
|
-
</table></div>
|
150
|
-
</div>
|
151
|
-
<hr>
|
152
|
-
<div class="refsect2" title="cairo_format_stride_for_width ()">
|
153
|
-
<a name="cairo-format-stride-for-width"></a><h3>cairo_format_stride_for_width ()</h3>
|
154
|
-
<pre class="programlisting">int cairo_format_stride_for_width (<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
155
|
-
int width);</pre>
|
156
|
-
<p>
|
157
|
-
This function provides a stride value that will respect all
|
158
|
-
alignment requirements of the accelerated image-rendering code
|
159
|
-
within cairo. Typical usage will be of the form:
|
160
|
-
</p>
|
161
|
-
<p>
|
162
|
-
</p>
|
163
|
-
<div class="informalexample"><pre class="programlisting">
|
164
|
-
int stride;
|
165
|
-
unsigned char *data;
|
166
|
-
<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface;
|
167
|
-
|
168
|
-
stride = cairo_format_stride_for_width (format, width);
|
169
|
-
data = malloc (stride * height);
|
170
|
-
surface = cairo_image_surface_create_for_data (data, format,
|
171
|
-
width, height,
|
172
|
-
stride);
|
173
|
-
</pre></div>
|
174
|
-
<p>
|
175
|
-
</p>
|
176
|
-
<div class="variablelist"><table border="0">
|
177
|
-
<col align="left" valign="top">
|
178
|
-
<tbody>
|
179
|
-
<tr>
|
180
|
-
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
181
|
-
<td> A <a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t"><span class="type">cairo_format_t</span></a> value
|
182
|
-
</td>
|
183
|
-
</tr>
|
184
|
-
<tr>
|
185
|
-
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
186
|
-
<td> The desired width of an image surface to be created.
|
187
|
-
</td>
|
188
|
-
</tr>
|
189
|
-
<tr>
|
190
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
191
|
-
<td> the appropriate stride to use given the desired
|
192
|
-
format and width, or -1 if either the format is invalid or the width
|
193
|
-
too large.
|
194
|
-
|
195
|
-
</td>
|
196
|
-
</tr>
|
197
|
-
</tbody>
|
198
|
-
</table></div>
|
199
|
-
<p class="since">Since 1.6</p>
|
200
|
-
</div>
|
201
|
-
<hr>
|
202
|
-
<div class="refsect2" title="cairo_image_surface_create ()">
|
203
|
-
<a name="cairo-image-surface-create"></a><h3>cairo_image_surface_create ()</h3>
|
204
|
-
<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 (<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
205
|
-
int width,
|
206
|
-
int height);</pre>
|
207
|
-
<p>
|
208
|
-
Creates an image surface of the specified format and
|
209
|
-
dimensions. Initially the surface contents are all
|
210
|
-
0. (Specifically, within each pixel, each color or alpha channel
|
211
|
-
belonging to format will be 0. The contents of bits within a pixel,
|
212
|
-
but not belonging to the given format are undefined).</p>
|
213
|
-
<p>
|
214
|
-
</p>
|
215
|
-
<div class="variablelist"><table border="0">
|
216
|
-
<col align="left" valign="top">
|
217
|
-
<tbody>
|
218
|
-
<tr>
|
219
|
-
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
220
|
-
<td> format of pixels in the surface to create
|
221
|
-
</td>
|
222
|
-
</tr>
|
223
|
-
<tr>
|
224
|
-
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
225
|
-
<td> width of the surface, in pixels
|
226
|
-
</td>
|
227
|
-
</tr>
|
228
|
-
<tr>
|
229
|
-
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
230
|
-
<td> height of the surface, in pixels
|
231
|
-
</td>
|
232
|
-
</tr>
|
233
|
-
<tr>
|
234
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
235
|
-
<td> a pointer to the newly created surface. The caller
|
236
|
-
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
|
237
|
-
with it.
|
238
|
-
|
239
|
-
This function always returns a valid pointer, but it will return a
|
240
|
-
pointer to a "nil" surface if an error such as out of memory
|
241
|
-
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.
|
242
|
-
</td>
|
243
|
-
</tr>
|
244
|
-
</tbody>
|
245
|
-
</table></div>
|
246
|
-
</div>
|
247
|
-
<hr>
|
248
|
-
<div class="refsect2" title="cairo_image_surface_create_for_data ()">
|
249
|
-
<a name="cairo-image-surface-create-for-data"></a><h3>cairo_image_surface_create_for_data ()</h3>
|
250
|
-
<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_for_data (unsigned char *data,
|
251
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> format,
|
252
|
-
int width,
|
253
|
-
int height,
|
254
|
-
int stride);</pre>
|
255
|
-
<p>
|
256
|
-
Creates an image surface for the provided pixel data. The output
|
257
|
-
buffer must be kept around until the <a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t"><span class="type">cairo_surface_t</span></a> is destroyed
|
258
|
-
or <a class="link" href="cairo-surface.html#cairo-surface-finish" title="cairo_surface_finish ()"><code class="function">cairo_surface_finish()</code></a> is called on the surface. The initial
|
259
|
-
contents of <em class="parameter"><code>data</code></em> will be used as the initial image contents; you
|
260
|
-
must explicitly clear the buffer, using, for example,
|
261
|
-
<a class="link" href="cairo-paths.html#cairo-rectangle" title="cairo_rectangle ()"><code class="function">cairo_rectangle()</code></a> and <a class="link" href="cairo-context.html#cairo-fill" title="cairo_fill ()"><code class="function">cairo_fill()</code></a> if you want it cleared.
|
262
|
-
</p>
|
263
|
-
<p>
|
264
|
-
Note that the stride may be larger than
|
265
|
-
width*bytes_per_pixel to provide proper alignment for each pixel
|
266
|
-
and row. This alignment is required to allow high-performance rendering
|
267
|
-
within cairo. The correct way to obtain a legal stride value is to
|
268
|
-
call <a class="link" href="cairo-image-surface.html#cairo-format-stride-for-width" title="cairo_format_stride_for_width ()"><code class="function">cairo_format_stride_for_width()</code></a> with the desired format and
|
269
|
-
maximum image width value, and the use the resulting stride value
|
270
|
-
to allocate the data and to create the image surface. See
|
271
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-stride-for-width" title="cairo_format_stride_for_width ()"><code class="function">cairo_format_stride_for_width()</code></a> for example code.</p>
|
272
|
-
<p>
|
273
|
-
</p>
|
274
|
-
<div class="variablelist"><table border="0">
|
275
|
-
<col align="left" valign="top">
|
276
|
-
<tbody>
|
277
|
-
<tr>
|
278
|
-
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
279
|
-
<td> a pointer to a buffer supplied by the application in which
|
280
|
-
to write contents. This pointer must be suitably aligned for any
|
281
|
-
kind of variable, (for example, a pointer returned by malloc).
|
282
|
-
</td>
|
283
|
-
</tr>
|
284
|
-
<tr>
|
285
|
-
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
286
|
-
<td> the format of pixels in the buffer
|
287
|
-
</td>
|
288
|
-
</tr>
|
289
|
-
<tr>
|
290
|
-
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
291
|
-
<td> the width of the image to be stored in the buffer
|
292
|
-
</td>
|
293
|
-
</tr>
|
294
|
-
<tr>
|
295
|
-
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
296
|
-
<td> the height of the image to be stored in the buffer
|
297
|
-
</td>
|
298
|
-
</tr>
|
299
|
-
<tr>
|
300
|
-
<td><p><span class="term"><em class="parameter"><code>stride</code></em> :</span></p></td>
|
301
|
-
<td> the number of bytes between the start of rows in the
|
302
|
-
buffer as allocated. This value should always be computed by
|
303
|
-
<a class="link" href="cairo-image-surface.html#cairo-format-stride-for-width" title="cairo_format_stride_for_width ()"><code class="function">cairo_format_stride_for_width()</code></a> before allocating the data
|
304
|
-
buffer.
|
305
|
-
</td>
|
306
|
-
</tr>
|
307
|
-
<tr>
|
308
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
309
|
-
<td> a pointer to the newly created surface. The caller
|
310
|
-
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
|
311
|
-
with it.
|
312
|
-
|
313
|
-
This function always returns a valid pointer, but it will return a
|
314
|
-
pointer to a "nil" surface in the case of an error such as out of
|
315
|
-
memory or an invalid stride value. In case of invalid stride value
|
316
|
-
the error status of the returned surface will be
|
317
|
-
<a class="link" href="cairo-error-status.html#CAIRO-STATUS-INVALID-STRIDE--CAPS"><code class="literal">CAIRO_STATUS_INVALID_STRIDE</code></a>. You can use
|
318
|
-
<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.
|
319
|
-
|
320
|
-
See <a class="link" href="cairo-surface.html#cairo-surface-set-user-data" title="cairo_surface_set_user_data ()"><code class="function">cairo_surface_set_user_data()</code></a> for a means of attaching a
|
321
|
-
destroy-notification fallback to the surface if necessary.
|
322
|
-
</td>
|
323
|
-
</tr>
|
324
|
-
</tbody>
|
325
|
-
</table></div>
|
326
|
-
</div>
|
327
|
-
<hr>
|
328
|
-
<div class="refsect2" title="cairo_image_surface_get_data ()">
|
329
|
-
<a name="cairo-image-surface-get-data"></a><h3>cairo_image_surface_get_data ()</h3>
|
330
|
-
<pre class="programlisting">unsigned char * cairo_image_surface_get_data (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);</pre>
|
331
|
-
<p>
|
332
|
-
Get a pointer to the data of the image surface, for direct
|
333
|
-
inspection or modification.</p>
|
334
|
-
<p>
|
335
|
-
</p>
|
336
|
-
<div class="variablelist"><table border="0">
|
337
|
-
<col align="left" valign="top">
|
338
|
-
<tbody>
|
339
|
-
<tr>
|
340
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
341
|
-
<td> a <span class="type">cairo_image_surface_t</span>
|
342
|
-
</td>
|
343
|
-
</tr>
|
344
|
-
<tr>
|
345
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
346
|
-
<td> a pointer to the image data of this surface or <code class="literal">NULL</code>
|
347
|
-
if <em class="parameter"><code>surface</code></em> is not an image surface, or if <a class="link" href="cairo-surface.html#cairo-surface-finish" title="cairo_surface_finish ()"><code class="function">cairo_surface_finish()</code></a>
|
348
|
-
has been called.
|
349
|
-
|
350
|
-
</td>
|
351
|
-
</tr>
|
352
|
-
</tbody>
|
353
|
-
</table></div>
|
354
|
-
<p class="since">Since 1.2</p>
|
355
|
-
</div>
|
356
|
-
<hr>
|
357
|
-
<div class="refsect2" title="cairo_image_surface_get_format ()">
|
358
|
-
<a name="cairo-image-surface-get-format"></a><h3>cairo_image_surface_get_format ()</h3>
|
359
|
-
<pre class="programlisting"><a class="link" href="cairo-image-surface.html#cairo-format-t" title="enum cairo_format_t">cairo_format_t</a> cairo_image_surface_get_format (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);</pre>
|
360
|
-
<p>
|
361
|
-
Get the format of the surface.</p>
|
362
|
-
<p>
|
363
|
-
</p>
|
364
|
-
<div class="variablelist"><table border="0">
|
365
|
-
<col align="left" valign="top">
|
366
|
-
<tbody>
|
367
|
-
<tr>
|
368
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
369
|
-
<td> a <span class="type">cairo_image_surface_t</span>
|
370
|
-
</td>
|
371
|
-
</tr>
|
372
|
-
<tr>
|
373
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
374
|
-
<td> the format of the surface
|
375
|
-
|
376
|
-
</td>
|
377
|
-
</tr>
|
378
|
-
</tbody>
|
379
|
-
</table></div>
|
380
|
-
<p class="since">Since 1.2</p>
|
381
|
-
</div>
|
382
|
-
<hr>
|
383
|
-
<div class="refsect2" title="cairo_image_surface_get_width ()">
|
384
|
-
<a name="cairo-image-surface-get-width"></a><h3>cairo_image_surface_get_width ()</h3>
|
385
|
-
<pre class="programlisting">int cairo_image_surface_get_width (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);</pre>
|
386
|
-
<p>
|
387
|
-
Get the width of the image surface in pixels.</p>
|
388
|
-
<p>
|
389
|
-
</p>
|
390
|
-
<div class="variablelist"><table border="0">
|
391
|
-
<col align="left" valign="top">
|
392
|
-
<tbody>
|
393
|
-
<tr>
|
394
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
395
|
-
<td> a <span class="type">cairo_image_surface_t</span>
|
396
|
-
</td>
|
397
|
-
</tr>
|
398
|
-
<tr>
|
399
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
400
|
-
<td> the width of the surface in pixels.
|
401
|
-
</td>
|
402
|
-
</tr>
|
403
|
-
</tbody>
|
404
|
-
</table></div>
|
405
|
-
</div>
|
406
|
-
<hr>
|
407
|
-
<div class="refsect2" title="cairo_image_surface_get_height ()">
|
408
|
-
<a name="cairo-image-surface-get-height"></a><h3>cairo_image_surface_get_height ()</h3>
|
409
|
-
<pre class="programlisting">int cairo_image_surface_get_height (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);</pre>
|
410
|
-
<p>
|
411
|
-
Get the height of the image surface in pixels.</p>
|
412
|
-
<p>
|
413
|
-
</p>
|
414
|
-
<div class="variablelist"><table border="0">
|
415
|
-
<col align="left" valign="top">
|
416
|
-
<tbody>
|
417
|
-
<tr>
|
418
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
419
|
-
<td> a <span class="type">cairo_image_surface_t</span>
|
420
|
-
</td>
|
421
|
-
</tr>
|
422
|
-
<tr>
|
423
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
424
|
-
<td> the height of the surface in pixels.
|
425
|
-
</td>
|
426
|
-
</tr>
|
427
|
-
</tbody>
|
428
|
-
</table></div>
|
429
|
-
</div>
|
430
|
-
<hr>
|
431
|
-
<div class="refsect2" title="cairo_image_surface_get_stride ()">
|
432
|
-
<a name="cairo-image-surface-get-stride"></a><h3>cairo_image_surface_get_stride ()</h3>
|
433
|
-
<pre class="programlisting">int cairo_image_surface_get_stride (<a class="link" href="cairo-surface.html#cairo-surface-t" title="cairo_surface_t">cairo_surface_t</a> *surface);</pre>
|
434
|
-
<p>
|
435
|
-
Get the stride of the image surface in bytes</p>
|
436
|
-
<p>
|
437
|
-
</p>
|
438
|
-
<div class="variablelist"><table border="0">
|
439
|
-
<col align="left" valign="top">
|
440
|
-
<tbody>
|
441
|
-
<tr>
|
442
|
-
<td><p><span class="term"><em class="parameter"><code>surface</code></em> :</span></p></td>
|
443
|
-
<td> a <span class="type">cairo_image_surface_t</span>
|
444
|
-
</td>
|
445
|
-
</tr>
|
446
|
-
<tr>
|
447
|
-
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
448
|
-
<td> the stride of the image surface in bytes (or 0 if
|
449
|
-
<em class="parameter"><code>surface</code></em> is not an image surface). The stride is the distance in
|
450
|
-
bytes from the beginning of one row of the image data to the
|
451
|
-
beginning of the next row.
|
452
|
-
|
453
|
-
</td>
|
454
|
-
</tr>
|
455
|
-
</tbody>
|
456
|
-
</table></div>
|
457
|
-
<p class="since">Since 1.2</p>
|
458
|
-
</div>
|
459
|
-
</div>
|
460
|
-
<div class="refsect1" title="See Also">
|
461
|
-
<a name="cairo-image-surface.see-also"></a><h2>See Also</h2>
|
462
|
-
<p>
|
463
|
-
</p>
|
464
|
-
<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>
|
465
|
-
<p>
|
466
|
-
</p>
|
467
|
-
</div>
|
468
|
-
</div>
|
469
|
-
<div class="footer">
|
470
|
-
<hr>
|
471
|
-
Generated by GTK-Doc V1.11</div>
|
472
|
-
</body>
|
473
|
-
</html>
|