~ubuntu-branches/ubuntu/trusty/gimp/trusty

« back to all changes in this revision

Viewing changes to devel-docs/libgimpbase/html/libgimpbase-gimplimits.html

  • Committer: Bazaar Package Importer
  • Author(s): Ari Pollak
  • Date: 2009-08-14 09:57:17 UTC
  • mto: (1.1.21 upstream) (0.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 48.
  • Revision ID: james.westby@ubuntu.com-20090814095717-37dh2xqy5t0rurpk
Import upstream version 2.6.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
<head>
4
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
<title>gimplimits</title>
6
 
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
7
 
<link rel="start" href="index.html" title="GIMP Base Library Reference Manual">
 
6
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
 
7
<link rel="home" href="index.html" title="GIMP Base Library Reference Manual">
8
8
<link rel="up" href="libgimpbase.html" title="Part I. GIMP Base Library">
9
9
<link rel="prev" href="libgimpbase-gimpversion.html" title="gimpversion">
10
10
<link rel="next" href="libgimpbase-gimpparam.html" title="gimpparam">
32
32
                <a href="#libgimpbase-gimplimits.description" class="shortcut">Description</a>
33
33
</td></tr>
34
34
</table>
35
 
<div class="refentry" lang="en">
 
35
<div class="refentry" title="gimplimits">
36
36
<a name="libgimpbase-gimplimits"></a><div class="titlepage"></div>
37
37
<div class="refnamediv"><table width="100%"><tr>
38
38
<td valign="top">
41
41
</td>
42
42
<td valign="top" align="right"></td>
43
43
</tr></table></div>
44
 
<div class="refsynopsisdiv">
 
44
<div class="refsynopsisdiv" title="Synopsis">
45
45
<a name="libgimpbase-gimplimits.synopsis"></a><h2>Synopsis</h2>
46
46
<pre class="synopsis">
47
47
#define             <a class="link" href="libgimpbase-gimplimits.html#GIMP-MIN-IMAGE-SIZE--CAPS" title="GIMP_MIN_IMAGE_SIZE">GIMP_MIN_IMAGE_SIZE</a>
51
51
#define             <a class="link" href="libgimpbase-gimplimits.html#GIMP-MAX-MEMSIZE--CAPS" title="GIMP_MAX_MEMSIZE">GIMP_MAX_MEMSIZE</a>
52
52
</pre>
53
53
</div>
54
 
<div class="refsect1" lang="en">
 
54
<div class="refsect1" title="Description">
55
55
<a name="libgimpbase-gimplimits.description"></a><h2>Description</h2>
56
56
<p>
57
57
Boundaries of some GIMP data types and some global constants.
58
58
</p>
59
59
</div>
60
 
<div class="refsect1" lang="en">
 
60
<div class="refsect1" title="Details">
61
61
<a name="libgimpbase-gimplimits.details"></a><h2>Details</h2>
62
 
<div class="refsect2" lang="en">
 
62
<div class="refsect2" title="GIMP_MIN_IMAGE_SIZE">
63
63
<a name="GIMP-MIN-IMAGE-SIZE--CAPS"></a><h3>GIMP_MIN_IMAGE_SIZE</h3>
64
64
<pre class="programlisting">#define GIMP_MIN_IMAGE_SIZE  1
65
65
</pre>
68
68
</p>
69
69
</div>
70
70
<hr>
71
 
<div class="refsect2" lang="en">
 
71
<div class="refsect2" title="GIMP_MAX_IMAGE_SIZE">
72
72
<a name="GIMP-MAX-IMAGE-SIZE--CAPS"></a><h3>GIMP_MAX_IMAGE_SIZE</h3>
73
73
<pre class="programlisting">#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
74
74
</pre>
79
79
</p>
80
80
</div>
81
81
<hr>
82
 
<div class="refsect2" lang="en">
 
82
<div class="refsect2" title="GIMP_MIN_RESOLUTION">
83
83
<a name="GIMP-MIN-RESOLUTION--CAPS"></a><h3>GIMP_MIN_RESOLUTION</h3>
84
84
<pre class="programlisting">#define GIMP_MIN_RESOLUTION  5e-3      /*  shouldn't display as 0.000  */
85
85
</pre>
91
91
</p>
92
92
</div>
93
93
<hr>
94
 
<div class="refsect2" lang="en">
 
94
<div class="refsect2" title="GIMP_MAX_RESOLUTION">
95
95
<a name="GIMP-MAX-RESOLUTION--CAPS"></a><h3>GIMP_MAX_RESOLUTION</h3>
96
96
<pre class="programlisting">#define GIMP_MAX_RESOLUTION  65536.0
97
97
</pre>
103
103
</p>
104
104
</div>
105
105
<hr>
106
 
<div class="refsect2" lang="en">
 
106
<div class="refsect2" title="GIMP_MAX_MEMSIZE">
107
107
<a name="GIMP-MAX-MEMSIZE--CAPS"></a><h3>GIMP_MAX_MEMSIZE</h3>
108
108
<pre class="programlisting">#define GIMP_MAX_MEMSIZE     ((guint64) 1 &lt;&lt; 42) /*  4 terabyte;
109
109
</pre>