6
6
7
7
- [ Gimpggrgradient] ( #gimpggrgradient )
8
8
- [ GimpGgrGradient] ( #gimpggrgradient )
9
- - [ GimpGgrGradient().__ repr__ ] ( #gimpggrgradient()__repr__ )
10
9
- [ GimpGgrGradient().__ str__ ] ( #gimpggrgradient()__str__ )
11
10
- [ GimpGgrGradient().decode] ( #gimpggrgradient()decode )
12
11
- [ GimpGgrGradient().encode] ( #gimpggrgradient()encode )
12
+ - [ GimpGgrGradient().full_repr] ( #gimpggrgradient()full_repr )
13
13
- [ GimpGgrGradient().getColor] ( #gimpggrgradient()getcolor )
14
14
- [ GimpGgrGradient().load] ( #gimpggrgradient()load )
15
15
- [ GimpGgrGradient().save] ( #gimpggrgradient()save )
16
16
- [ GradientSegment] ( #gradientsegment )
17
- - [ GradientSegment().__ repr__ ] ( #gradientsegment()__repr__ )
18
17
- [ GradientSegment().__ str__ ] ( #gradientsegment()__str__ )
19
18
- [ GradientSegment().decode] ( #gradientsegment()decode )
20
19
- [ GradientSegment().encode] ( #gradientsegment()encode )
20
+ - [ GradientSegment().full_repr] ( #gradientsegment()full_repr )
21
21
- [ GradientSegment().getColor] ( #gradientsegment()getcolor )
22
22
23
23
## GimpGgrGradient
24
24
25
- [ Show source in GimpGgrGradient.py:124 ] ( ../../../gimpformats/GimpGgrGradient.py#L124 )
25
+ [ Show source in GimpGgrGradient.py:122 ] ( ../../../gimpformats/GimpGgrGradient.py#L122 )
26
26
27
27
Gimp color gradient.
28
28
@@ -36,21 +36,9 @@ class GimpGgrGradient:
36
36
def __init__ (self , fileName : str | None = None ) -> None : ...
37
37
```
38
38
39
- ### GimpGgrGradient().__ repr__
40
-
41
- [ Show source in GimpGgrGradient.py:201] ( ../../../gimpformats/GimpGgrGradient.py#L201 )
42
-
43
- Get a textual representation of this object.
44
-
45
- #### Signature
46
-
47
- ``` python
48
- def __repr__ (self , indent : int = 0 ) -> str : ...
49
- ```
50
-
51
39
### GimpGgrGradient().__ str__
52
40
53
- [ Show source in GimpGgrGradient.py:197 ] ( ../../../gimpformats/GimpGgrGradient.py#L197 )
41
+ [ Show source in GimpGgrGradient.py:194 ] ( ../../../gimpformats/GimpGgrGradient.py#L194 )
54
42
55
43
Get a textual representation of this object.
56
44
@@ -62,7 +50,7 @@ def __str__(self) -> str: ...
62
50
63
51
### GimpGgrGradient().decode
64
52
65
- [ Show source in GimpGgrGradient.py:153 ] ( ../../../gimpformats/GimpGgrGradient.py#L153 )
53
+ [ Show source in GimpGgrGradient.py:151 ] ( ../../../gimpformats/GimpGgrGradient.py#L151 )
66
54
67
55
Decode a byte buffer.
68
56
@@ -84,7 +72,7 @@ def decode(self, dataIn: bytes) -> None: ...
84
72
85
73
### GimpGgrGradient().encode
86
74
87
- [ Show source in GimpGgrGradient.py:177 ] ( ../../../gimpformats/GimpGgrGradient.py#L177 )
75
+ [ Show source in GimpGgrGradient.py:175 ] ( ../../../gimpformats/GimpGgrGradient.py#L175 )
88
76
89
77
Encode this to bytes.
90
78
@@ -94,9 +82,21 @@ Encode this to bytes.
94
82
def encode (self ) -> bytes : ...
95
83
```
96
84
85
+ ### GimpGgrGradient().full_repr
86
+
87
+ [ Show source in GimpGgrGradient.py:198] ( ../../../gimpformats/GimpGgrGradient.py#L198 )
88
+
89
+ Get a textual representation of this object.
90
+
91
+ #### Signature
92
+
93
+ ``` python
94
+ def full_repr (self , indent : int = 0 ) -> str : ...
95
+ ```
96
+
97
97
### GimpGgrGradient().getColor
98
98
99
- [ Show source in GimpGgrGradient.py:190 ] ( ../../../gimpformats/GimpGgrGradient.py#L190 )
99
+ [ Show source in GimpGgrGradient.py:187 ] ( ../../../gimpformats/GimpGgrGradient.py#L187 )
100
100
101
101
Given a decimal percent (1.0 = 100%) retrieve...
102
102
@@ -110,7 +110,7 @@ def getColor(self, percent: float) -> NoReturn: ...
110
110
111
111
### GimpGgrGradient().load
112
112
113
- [ Show source in GimpGgrGradient.py:145 ] ( ../../../gimpformats/GimpGgrGradient.py#L145 )
113
+ [ Show source in GimpGgrGradient.py:143 ] ( ../../../gimpformats/GimpGgrGradient.py#L143 )
114
114
115
115
Load a gimp file.
116
116
@@ -126,14 +126,14 @@ def load(self, fileName: BytesIO | str) -> None: ...
126
126
127
127
### GimpGgrGradient().save
128
128
129
- [ Show source in GimpGgrGradient.py:186 ] ( ../../../gimpformats/GimpGgrGradient.py#L186 )
129
+ [ Show source in GimpGgrGradient.py:183 ] ( ../../../gimpformats/GimpGgrGradient.py#L183 )
130
130
131
131
Save this gimp image to a file.
132
132
133
133
#### Signature
134
134
135
135
``` python
136
- def save (self , tofileName : str | BytesIO | None = None ) -> None : ...
136
+ def save (self , tofileName : str | BytesIO) -> None : ...
137
137
```
138
138
139
139
@@ -151,21 +151,9 @@ class GradientSegment:
151
151
def __init__ (self ) -> None : ...
152
152
```
153
153
154
- ### GradientSegment().__ repr__
155
-
156
- [ Show source in GimpGgrGradient.py:105] ( ../../../gimpformats/GimpGgrGradient.py#L105 )
157
-
158
- Get a textual representation of this object.
159
-
160
- #### Signature
161
-
162
- ``` python
163
- def __repr__ (self , indent : int = 0 ) -> str : ...
164
- ```
165
-
166
154
### GradientSegment().__ str__
167
155
168
- [ Show source in GimpGgrGradient.py:101 ] ( ../../../gimpformats/GimpGgrGradient.py#L101 )
156
+ [ Show source in GimpGgrGradient.py:99 ] ( ../../../gimpformats/GimpGgrGradient.py#L99 )
169
157
170
158
Get a textual representation of this object.
171
159
@@ -209,6 +197,18 @@ Encode this to a string.
209
197
def encode (self ) -> str : ...
210
198
```
211
199
200
+ ### GradientSegment().full_repr
201
+
202
+ [ Show source in GimpGgrGradient.py:103] ( ../../../gimpformats/GimpGgrGradient.py#L103 )
203
+
204
+ Get a textual representation of this object.
205
+
206
+ #### Signature
207
+
208
+ ``` python
209
+ def full_repr (self , indent : int = 0 ) -> str : ...
210
+ ```
211
+
212
212
### GradientSegment().getColor
213
213
214
214
[ Show source in GimpGgrGradient.py:44] ( ../../../gimpformats/GimpGgrGradient.py#L44 )
0 commit comments