about summary refs log tree commit diff stats
path: root/src/img/png.nim
Commit message (Expand)AuthorAgeFilesLines
* png: fix check in readU8bptato2024-04-271-1/+1
* png: fix indexed color with tRNSbptato2024-04-271-5/+7
* color: RGBAColor -> ARGBColorbptato2024-04-261-5/+5
* Remove unnecessary unsigned castsbptato2024-04-261-16/+16
* png: fix off by onebptato2024-04-251-3/+1
* Initial image supportbptato2024-04-251-18/+49
* Update code stylebptato2024-04-171-49/+49
* Remove unnecessary std/math importsbptato2024-04-081-5/+3
* Allow non-RGB colors in CSSbptato2024-02-241-1/+1
* Use std/* imports everywherebptato2024-01-071-1/+1
* Compile with styleCheck:usagesbptato2023-12-281-2/+2
* warn on eprint in release modebptato2023-10-211-1/+2
* png: print zstream errorsbptato2023-07-041-1/+5
* png: fix grayscale regressionbptato2023-06-291-1/+1
* png: fix 4 bit grayscale & <8 bit indexed colorbptato2023-06-251-6/+17
* Make Result.text, json return promisebptato2023-06-131-1/+0
* Fix various layout bugs, prepare for image supportbptato2023-06-121-3/+3
* Add indexed color, other png improvementsbptato2023-06-091-22/+71
* Refactor bitmap, add png color modesbptato2023-06-061-0/+413
ef='#n111'>111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255