~ubuntu-branches/ubuntu/trusty/guile-gnome-platform/trusty-proposed

« back to all changes in this revision

Viewing changes to gtk/doc/gdk/defuns-file-saving.xml.texi

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Rottmann
  • Date: 2009-03-01 22:51:48 UTC
  • mfrom: (1.1.2 upstream) (3.2.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090301225148-5cubt342wiv8jpmf
Tags: 2.16.1-1
* New upstream release.
* Upstream bumped API, hence all package names changed from
  guile-gnome0-* to guile-gnome2-*.
* Standards-Version 3.8.0 (no changes).
* Remove unused guile-gnome2-cairo.install file.
* Added ${misc:Depends} to all packages.
* Do not build-depend on a -1 revision of the g-wrap packages.
* Add a proper "Copyright YEARS AUTHORS" line to debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
@c %start of fragment
3
 
 
4
 
@deffn Function gdk-pixbuf-savev  (self@tie{}@code{<gdk-pixbuf>}) (filename@tie{}@code{mchars}) (type@tie{}@code{mchars}) (option_keys@tie{}@code{<char**>}) (option_values@tie{}@code{<char**>}) @result{}@tie{} (ret@tie{}@code{bool})
5
 
@deffnx Method savev
6
 
Saves pixbuf to a file in @var{type}, which is currently "jpeg", "png", "tiff",
7
 
"ico" or "bmp". If @var{error} is set, @samp{@code{#f}} will be returned. See
8
 
@code{gdk-pixbuf-save} for more details.
9
 
 
10
 
@table @var
11
 
@item pixbuf
12
 
a @code{<gdk-pixbuf>}.
13
 
 
14
 
@item filename
15
 
name of file to save.
16
 
 
17
 
@item type
18
 
name of file format.
19
 
 
20
 
@item option-keys
21
 
name of options to set, @samp{@code{#f}}-terminated
22
 
 
23
 
@item option-values
24
 
values for named options
25
 
 
26
 
@item error
27
 
return location for error, or @samp{@code{#f}}
28
 
 
29
 
@item ret
30
 
whether an error was set
31
 
 
32
 
@end table
33
 
 
34
 
@end deffn
35
 
 
36
 
@deffn Function gdk-pixbuf-save-to-callbackv  (self@tie{}@code{<gdk-pixbuf>}) (save_func@tie{}@code{<gdk-pixbuf-save-func>}) (user_data@tie{}@code{<gpointer>}) (type@tie{}@code{mchars}) (option_keys@tie{}@code{<char**>}) (option_values@tie{}@code{<char**>}) @result{}@tie{} (ret@tie{}@code{bool})
37
 
@deffnx Method save-to-callbackv
38
 
Saves pixbuf to a callback in format @var{type}, which is currently "jpeg",
39
 
"png", "tiff", "ico" or "bmp". If @var{error} is set, @samp{@code{#f}} will be
40
 
returned. See @code{gdk-pixbuf-save-to-callback} for more details.
41
 
 
42
 
@table @var
43
 
@item pixbuf
44
 
a @code{<gdk-pixbuf>}.
45
 
 
46
 
@item save-func
47
 
a function that is called to save each block of data that the save routine
48
 
generates.
49
 
 
50
 
@item user-data
51
 
user data to pass to the save function.
52
 
 
53
 
@item type
54
 
name of file format.
55
 
 
56
 
@item option-keys
57
 
name of options to set, @samp{@code{#f}}-terminated
58
 
 
59
 
@item option-values
60
 
values for named options
61
 
 
62
 
@item error
63
 
return location for error, or @samp{@code{#f}}
64
 
 
65
 
@item ret
66
 
whether an error was set
67
 
 
68
 
@end table
69
 
 
70
 
Since 2.4
71
 
 
72
 
@end deffn
73
 
 
74
 
@deffn Function gdk-pixbuf-save-to-bufferv  (self@tie{}@code{<gdk-pixbuf>}) (type@tie{}@code{mchars}) (option_keys@tie{}@code{<char**>}) (option_values@tie{}@code{<char**>}) @result{}@tie{} (ret@tie{}@code{bool}) (buffer@tie{}@code{mchars}) (buffer_size@tie{}@code{size_t})
75
 
@deffnx Method save-to-bufferv
76
 
Saves pixbuf to a new buffer in format @var{type}, which is currently "jpeg",
77
 
"tiff", "png", "ico" or "bmp". See @code{gdk-pixbuf-save-to-buffer} for more
78
 
details.
79
 
 
80
 
@table @var
81
 
@item pixbuf
82
 
a @code{<gdk-pixbuf>}.
83
 
 
84
 
@item buffer
85
 
location to receive a pointer to the new buffer.
86
 
 
87
 
@item buffer-size
88
 
location to receive the size of the new buffer.
89
 
 
90
 
@item type
91
 
name of file format.
92
 
 
93
 
@item option-keys
94
 
name of options to set, @samp{@code{#f}}-terminated
95
 
 
96
 
@item option-values
97
 
values for named options
98
 
 
99
 
@item error
100
 
return location for error, or @samp{@code{#f}}
101
 
 
102
 
@item ret
103
 
whether an error was set
104
 
 
105
 
@end table
106
 
 
107
 
Since 2.4
108
 
 
109
 
@end deffn
110
 
 
111
 
 
112
 
@c %end of fragment