Skip to content

Commit 2c747a1

Browse files
committed
rel 2024
1 parent c218638 commit 2c747a1

File tree

8 files changed

+70
-2
lines changed

8 files changed

+70
-2
lines changed

documentation/reference/gimpformats/GimpChannel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ class GimpChannel(GimpIOBase):
2929
) -> None: ...
3030
```
3131

32+
#### See also
33+
34+
- [GimpIOBase](./GimpIOBase.md#gimpiobase)
35+
3236
### GimpChannel().__repr__
3337

3438
[Show source in GimpChannel.py:99](../../../gimpformats/GimpChannel.py#L99)

documentation/reference/gimpformats/GimpIOBase.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,10 @@ Decode a list of properties.
216216
def _propertiesDecode(self, ioBuf: IO) -> int: ...
217217
```
218218

219+
#### See also
220+
221+
- [IO](./binaryiotools.md#io)
222+
219223
### GimpIOBase()._propertiesEncode
220224

221225
[Show source in GimpIOBase.py:700](../../../gimpformats/GimpIOBase.py#L700)
@@ -313,6 +317,10 @@ Get the vector that is currently active.
313317
def activeVector(self) -> GimpVector: ...
314318
```
315319

320+
#### See also
321+
322+
- [GimpVector](./GimpVectors.md#gimpvector)
323+
316324
### GimpIOBase().doc
317325

318326
[Show source in GimpIOBase.py:250](../../../gimpformats/GimpIOBase.py#L250)

documentation/reference/gimpformats/GimpImageHierarchy.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ class GimpImageHierarchy(GimpIOBase):
2929
def __init__(self, parent, image: Image.Image | None = None) -> None: ...
3030
```
3131

32+
#### See also
33+
34+
- [GimpIOBase](./GimpIOBase.md#gimpiobase)
35+
3236
### GimpImageHierarchy().__repr__
3337

3438
[Show source in GimpImageHierarchy.py:113](../../../gimpformats/GimpImageHierarchy.py#L113)
@@ -117,4 +121,8 @@ so this returns an array of one item
117121
```python
118122
@property
119123
def levels(self) -> list[GimpImageLevel]: ...
120-
```
124+
```
125+
126+
#### See also
127+
128+
- [GimpImageLevel](./GimpImageLevel.md#gimpimagelevel)

documentation/reference/gimpformats/GimpImageLevel.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ class GimpImageLevel(GimpIOBase):
3333
def __init__(self, parent) -> None: ...
3434
```
3535

36+
#### See also
37+
38+
- [GimpIOBase](./GimpIOBase.md#gimpiobase)
39+
3640
### GimpImageLevel().__repr__
3741

3842
[Show source in GimpImageLevel.py:284](../../../gimpformats/GimpImageLevel.py#L284)

documentation/reference/gimpformats/GimpLayer.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ class GimpLayer(GimpIOBase):
3232
) -> None: ...
3333
```
3434

35+
#### See also
36+
37+
- [GimpIOBase](./GimpIOBase.md#gimpiobase)
38+
3539
### GimpLayer().__repr__
3640

3741
[Show source in GimpLayer.py:191](../../../gimpformats/GimpLayer.py#L191)
@@ -165,6 +169,10 @@ NOTE: can return None if it has been fully read into an image
165169
def imageHierarchy(self) -> GimpImageHierarchy: ...
166170
```
167171

172+
#### See also
173+
174+
- [GimpImageHierarchy](./GimpImageHierarchy.md#gimpimagehierarchy)
175+
168176
### GimpLayer().imageHierarchy
169177

170178
[Show source in GimpLayer.py:174](../../../gimpformats/GimpLayer.py#L174)

documentation/reference/gimpformats/GimpPrecision.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Decode the precision code from the file.
6161
def decode(self, gimpVersion: int, ioBuf: IO) -> None: ...
6262
```
6363

64+
#### See also
65+
66+
- [IO](./binaryiotools.md#io)
67+
6468
### Precision().encode
6569

6670
[Show source in GimpPrecision.py:41](../../../gimpformats/GimpPrecision.py#L41)
@@ -75,6 +79,10 @@ NOTE: will not mess with development versions 5 or 6
7579
def encode(self, gimpVersion: int, ioBuf: IO) -> None: ...
7680
```
7781

82+
#### See also
83+
84+
- [IO](./binaryiotools.md#io)
85+
7886
### Precision().requiredGimpVersion
7987

8088
[Show source in GimpPrecision.py:77](../../../gimpformats/GimpPrecision.py#L77)

documentation/reference/gimpformats/gimpXcfDocument.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ class GimpDocument(GimpIOBase):
7676
def __init__(self, fileName=None) -> None: ...
7777
```
7878

79+
#### See also
80+
81+
- [GimpIOBase](./GimpIOBase.md#gimpiobase)
82+
7983
### GimpDocument().__delitem__
8084

8185
[Show source in gimpXcfDocument.py:343](../../../gimpformats/gimpXcfDocument.py#L343)
@@ -104,6 +108,10 @@ Get the layer at an index.
104108
def __getitem__(self, index: int) -> GimpLayer: ...
105109
```
106110

111+
#### See also
112+
113+
- [GimpLayer](./GimpLayer.md#gimplayer)
114+
107115
### GimpDocument().__len__
108116

109117
[Show source in gimpXcfDocument.py:322](../../../gimpformats/gimpXcfDocument.py#L322)
@@ -172,6 +180,10 @@ Append a layer object to the document.
172180
def addLayer(self, layer: GimpLayer) -> None: ...
173181
```
174182

183+
#### See also
184+
185+
- [GimpLayer](./GimpLayer.md#gimplayer)
186+
175187
### GimpDocument().appendLayer
176188

177189
[Show source in gimpXcfDocument.py:302](../../../gimpformats/gimpXcfDocument.py#L302)
@@ -188,6 +200,10 @@ Append a layer object to the document.
188200
def appendLayer(self, layer: GimpLayer) -> None: ...
189201
```
190202

203+
#### See also
204+
205+
- [GimpLayer](./GimpLayer.md#gimplayer)
206+
191207
### GimpDocument().decode
192208

193209
[Show source in gimpXcfDocument.py:94](../../../gimpformats/gimpXcfDocument.py#L94)
@@ -316,6 +332,10 @@ Insert a layer object at a specific position.
316332
def insertLayer(self, layer: GimpLayer, index: int = -1) -> None: ...
317333
```
318334

335+
#### See also
336+
337+
- [GimpLayer](./GimpLayer.md#gimplayer)
338+
319339
### GimpDocument().layers
320340

321341
[Show source in gimpXcfDocument.py:224](../../../gimpformats/gimpXcfDocument.py#L224)
@@ -371,6 +391,10 @@ Create a new layer based on a PIL image.
371391
def newLayer(self, name: str, image: Image.Image, index: int = -1) -> GimpLayer: ...
372392
```
373393

394+
#### See also
395+
396+
- [GimpLayer](./GimpLayer.md#gimplayer)
397+
374398
### GimpDocument().newLayerFromClipboard
375399

376400
[Show source in gimpXcfDocument.py:274](../../../gimpformats/gimpXcfDocument.py#L274)
@@ -483,6 +507,10 @@ def flattenAll(
483507
) -> Image.Image: ...
484508
```
485509

510+
#### See also
511+
512+
- [GimpLayer](./GimpLayer.md#gimplayer)
513+
486514

487515

488516
## flattenLayerOrGroup

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "gimpformats"
3-
version = "2023.1"
3+
version = "2024"
44
license = "lgpl-3.0-only"
55
description = "Pure python implementation of the gimp file format(s)"
66
authors = ["FredHappyface"]

0 commit comments

Comments
 (0)