~ubuntu-branches/ubuntu/oneiric/gimp/oneiric

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-08-31 10:24:10 UTC
  • mfrom: (1.1.21 upstream) (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090831102410-eqawgw6fhdyi91ee
Tags: 2.6.7-1ubuntu1
* Merge with Debian unstable (LP: #419593), remaining changes:
  - debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch:
    + updated some strings for ubuntu
  - debian/rules:
    + updated translation templates
  - debian/control:
    + Drop webkit build dependency. gimp is the only thing pulling in webkit
      for the desktop CDs, and makes them explode. Without the webkit help
      browser plugin, help will just be displayed in the default browser.
* debian/patches/01_debian-gimprc.patch:
  - Updated
* debian/control:
  - Added a BZR link

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>