1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
package jogamp.opengl.util.pngj;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;
import java.util.List;
import java.util.zip.Deflater;
import java.util.zip.DeflaterOutputStream;
import jogamp.opengl.util.pngj.chunks.ChunkCopyBehaviour;
import jogamp.opengl.util.pngj.chunks.ChunkHelper;
import jogamp.opengl.util.pngj.chunks.ChunkList;
import jogamp.opengl.util.pngj.chunks.PngChunk;
import jogamp.opengl.util.pngj.chunks.PngChunkIEND;
import jogamp.opengl.util.pngj.chunks.PngChunkIHDR;
import jogamp.opengl.util.pngj.chunks.PngChunkTextVar;
import jogamp.opengl.util.pngj.chunks.PngMetadata;
/**
* Writes a PNG image, line by line.
*/
public class PngWriter {
public final ImageInfo imgInfo;
protected int compLevel = 6; // zip compression level 0 - 9
private int deflaterStrategy = Deflater.FILTERED;
protected FilterWriteStrategy filterStrat;
protected int currentChunkGroup = -1;
protected int rowNum = -1; // current line number
// current line, one (packed) sample per element (layout differnt from rowb!)
protected int[] scanline = null;
protected byte[] rowb = null; // element 0 is filter type!
protected byte[] rowbprev = null; // rowb prev
protected byte[] rowbfilter = null; // current line with filter
protected final OutputStream os;
protected final String filename; // optional, can be a description
private PngIDatChunkOutputStream datStream;
private DeflaterOutputStream datStreamDeflated;
private final ChunkList chunkList;
private final PngMetadata metadata; // high level wrapper over chunkList
public PngWriter(OutputStream outputStream, ImageInfo imgInfo) {
this(outputStream, imgInfo, "[NO FILENAME AVAILABLE]");
}
/**
* Constructs a new PngWriter from a output stream.
* <p>
* See also <code>FileHelper.createPngWriter()</code> if available.
*
* @param outputStream
* Opened stream for binary writing
* @param imgInfo
* Basic image parameters
* @param filenameOrDescription
* Optional, just for error/debug messages
*/
public PngWriter(OutputStream outputStream, ImageInfo imgInfo, String filenameOrDescription) {
this.filename = filenameOrDescription == null ? "" : filenameOrDescription;
this.os = outputStream;
this.imgInfo = imgInfo;
// prealloc
scanline = new int[imgInfo.samplesPerRowP];
rowb = new byte[imgInfo.bytesPerRow + 1];
rowbprev = new byte[rowb.length];
rowbfilter = new byte[rowb.length];
datStream = new PngIDatChunkOutputStream(this.os);
chunkList = new ChunkList(imgInfo);
metadata = new PngMetadata(chunkList, false);
filterStrat = new FilterWriteStrategy(imgInfo, FilterType.FILTER_DEFAULT);
}
/**
* Write id signature and also "IHDR" chunk
*/
private void writeSignatureAndIHDR() {
currentChunkGroup = ChunkList.CHUNK_GROUP_0_IDHR;
if (datStreamDeflated == null) {
Deflater def = new Deflater(compLevel);
def.setStrategy(deflaterStrategy);
datStreamDeflated = new DeflaterOutputStream(datStream, def, 8192);
}
PngHelper.writeBytes(os, PngHelper.pngIdBytes); // signature
PngChunkIHDR ihdr = new PngChunkIHDR(imgInfo);
// http://www.libpng.org/pub/png/spec/1.2/PNG-Chunks.html
ihdr.setCols(imgInfo.cols);
ihdr.setRows(imgInfo.rows);
ihdr.setBitspc(imgInfo.bitDepth);
int colormodel = 0;
if (imgInfo.alpha)
colormodel += 0x04;
if (imgInfo.indexed)
colormodel += 0x01;
if (!imgInfo.greyscale)
colormodel += 0x02;
ihdr.setColormodel(colormodel);
ihdr.setCompmeth(0); // compression method 0=deflate
ihdr.setFilmeth(0); // filter method (0)
ihdr.setInterlaced(0); // we never interlace
ihdr.createChunk().writeChunk(os);
}
private void writeFirstChunks() {
int nw = 0;
currentChunkGroup = ChunkList.CHUNK_GROUP_1_AFTERIDHR;
nw = chunkList.writeChunks(os, currentChunkGroup);
currentChunkGroup = ChunkList.CHUNK_GROUP_2_PLTE;
nw = chunkList.writeChunks(os, currentChunkGroup);
if (nw > 0 && imgInfo.greyscale)
throw new PngjOutputException("cannot write palette for this format");
if (nw == 0 && imgInfo.indexed)
throw new PngjOutputException("missing palette");
currentChunkGroup = ChunkList.CHUNK_GROUP_3_AFTERPLTE;
nw = chunkList.writeChunks(os, currentChunkGroup);
currentChunkGroup = ChunkList.CHUNK_GROUP_4_IDAT;
}
private void writeLastChunks() { // not including end
currentChunkGroup = ChunkList.CHUNK_GROUP_5_AFTERIDAT;
chunkList.writeChunks(os, currentChunkGroup);
// should not be unwriten chunks
List<PngChunk> pending = chunkList.getQueuedChunks();
if (!pending.isEmpty())
throw new PngjOutputException(pending.size() + " chunks were not written! Eg: " + pending.get(0).toString());
currentChunkGroup = ChunkList.CHUNK_GROUP_6_END;
}
private void writeEndChunk() {
PngChunkIEND c = new PngChunkIEND(imgInfo);
c.createChunk().writeChunk(os);
}
/**
* Writes a full image row. This must be called sequentially from n=0 to n=rows-1 One integer per sample , in the
* natural order: R G B R G B ... (or R G B A R G B A... if has alpha) The values should be between 0 and 255 for 8
* bitspc images, and between 0- 65535 form 16 bitspc images (this applies also to the alpha channel if present) The
* array can be reused.
*
* @param newrow
* Array of pixel values
* @param rown
* Row number, from 0 (top) to rows-1 (bottom). This is just used as a check. Pass -1 if you want to
* autocompute it
*/
public void writeRow(int[] newrow, int rown) {
if (rown == 0) {
writeSignatureAndIHDR();
writeFirstChunks();
}
if (rown < -1 || rown > imgInfo.rows)
throw new RuntimeException("invalid value for row " + rown);
rowNum++;
if (rown >= 0 && rowNum != rown)
throw new RuntimeException("rows must be written in strict consecutive order: tried to write row " + rown
+ ", expected=" + rowNum);
scanline = newrow;
// swap
byte[] tmp = rowb;
rowb = rowbprev;
rowbprev = tmp;
convertRowToBytes();
filterRow(rown);
try {
datStreamDeflated.write(rowbfilter, 0, imgInfo.bytesPerRow + 1);
} catch (IOException e) {
throw new PngjOutputException(e);
}
}
/**
* Same as writeRow(int[] newrow, int rown), but does not check row number
*
* @param newrow
*/
public void writeRow(int[] newrow) {
writeRow(newrow, -1);
}
/**
* Writes line. See writeRow(int[] newrow, int rown)
*/
public void writeRow(ImageLine imgline, int rownumber) {
writeRow(imgline.scanline, rownumber);
}
/**
* Writes line, checks that the row number is consistent with that of the ImageLine See writeRow(int[] newrow, int
* rown)
*
* @deprecated Better use writeRow(ImageLine imgline, int rownumber)
*/
public void writeRow(ImageLine imgline) {
writeRow(imgline.scanline, imgline.getRown());
}
/**
* Finalizes the image creation and closes the stream. This MUST be called after writing the lines.
*/
public void end() {
if (rowNum != imgInfo.rows - 1)
throw new PngjOutputException("all rows have not been written");
try {
datStreamDeflated.finish();
datStream.flush();
writeLastChunks();
writeEndChunk();
os.close();
} catch (IOException e) {
throw new PngjOutputException(e);
}
}
private int[] histox = new int[256]; // auxiliar buffer, only used by reportResultsForFilter
private void reportResultsForFilter(int rown, FilterType type, boolean tentative) {
Arrays.fill(histox, 0);
int s = 0, v;
for (int i = 1; i <= imgInfo.bytesPerRow; i++) {
v = rowbfilter[i];
if (v < 0)
s -= (int) v;
else
s += (int) v;
histox[v & 0xFF]++;
}
filterStrat.fillResultsForFilter(rown, type, s, histox, tentative);
}
private void filterRow(int rown) {
// warning: filters operation rely on: "previos row" (rowbprev) is
// initialized to 0 the first time
if (filterStrat.shouldTestAll(rown)) {
filterRowNone();
reportResultsForFilter(rown, FilterType.FILTER_NONE, true);
filterRowSub();
reportResultsForFilter(rown, FilterType.FILTER_SUB, true);
filterRowUp();
reportResultsForFilter(rown, FilterType.FILTER_UP, true);
filterRowAverage();
reportResultsForFilter(rown, FilterType.FILTER_AVERAGE, true);
filterRowPaeth();
reportResultsForFilter(rown, FilterType.FILTER_PAETH, true);
}
FilterType filterType = filterStrat.gimmeFilterType(rown, true);
rowbfilter[0] = (byte) filterType.val;
switch (filterType) {
case FILTER_NONE:
filterRowNone();
break;
case FILTER_SUB:
filterRowSub();
break;
case FILTER_UP:
filterRowUp();
break;
case FILTER_AVERAGE:
filterRowAverage();
break;
case FILTER_PAETH:
filterRowPaeth();
break;
default:
throw new PngjOutputException("Filter type " + filterType + " not implemented");
}
reportResultsForFilter(rown, filterType, false);
}
protected int sumRowbfilter() { // sums absolute value
int s = 0;
for (int i = 1; i <= imgInfo.bytesPerRow; i++)
if (rowbfilter[i] < 0)
s -= (int) rowbfilter[i];
else
s += (int) rowbfilter[i];
return s;
}
protected void filterRowNone() {
for (int i = 1; i <= imgInfo.bytesPerRow; i++) {
rowbfilter[i] = (byte) rowb[i];
}
}
protected void filterRowSub() {
int i, j;
for (i = 1; i <= imgInfo.bytesPixel; i++)
rowbfilter[i] = (byte) rowb[i];
for (j = 1, i = imgInfo.bytesPixel + 1; i <= imgInfo.bytesPerRow; i++, j++) {
rowbfilter[i] = (byte) (rowb[i] - rowb[j]);
}
}
protected void filterRowUp() {
for (int i = 1; i <= imgInfo.bytesPerRow; i++) {
rowbfilter[i] = (byte) (rowb[i] - rowbprev[i]);
}
}
protected void filterRowAverage() {
int i, j;
for (j = 1 - imgInfo.bytesPixel, i = 1; i <= imgInfo.bytesPerRow; i++, j++) {
rowbfilter[i] = (byte) (rowb[i] - ((rowbprev[i] & 0xFF) + (j > 0 ? (rowb[j] & 0xFF) : 0)) / 2);
}
}
protected void filterRowPaeth() {
int i, j;
for (j = 1 - imgInfo.bytesPixel, i = 1; i <= imgInfo.bytesPerRow; i++, j++) {
rowbfilter[i] = (byte) (rowb[i] - FilterType.filterPaethPredictor(j > 0 ? (rowb[j] & 0xFF) : 0,
rowbprev[i] & 0xFF, j > 0 ? (rowbprev[j] & 0xFF) : 0));
}
}
protected void convertRowToBytes() {
// http://www.libpng.org/pub/png/spec/1.2/PNG-DataRep.html
int i, j;
if (imgInfo.bitDepth <= 8) {
for (i = 0, j = 1; i < imgInfo.samplesPerRowP; i++) {
rowb[j++] = (byte) (scanline[i]);
}
} else { // 16 bitspc
for (i = 0, j = 1; i < imgInfo.samplesPerRowP; i++) {
// x = (int) (scanline[i]) & 0xFFFF;
rowb[j++] = (byte) (scanline[i] >> 8);
rowb[j++] = (byte) (scanline[i]);
}
}
}
// /// several getters / setters - all this setters are optional
/**
* Filename or description, from the optional constructor argument.
*/
public String getFilename() {
return filename;
}
/**
* Sets internal prediction filter type, or strategy to choose it.
* <p>
* This must be called just after constructor, before starting writing.
* <p>
* See also setCompLevel()
*
* @param filterType
* One of the five prediction types or strategy to choose it (see <code>PngFilterType</code>) Recommended
* values: DEFAULT (default) or AGGRESIVE
*/
public void setFilterType(FilterType filterType) {
filterStrat = new FilterWriteStrategy(imgInfo, filterType);
}
/**
* Sets compression level of ZIP algorithm.
* <p>
* This must be called just after constructor, before starting writing.
* <p>
* See also setFilterType()
*
* @param compLevel
* between 0 and 9 (default:6 , recommended: 6 or more)
*/
public void setCompLevel(int compLevel) {
if (compLevel < 0 || compLevel > 9)
throw new PngjException("Compression level invalid (" + compLevel + ") Must be 0..9");
this.compLevel = compLevel;
}
/**
* copy chunks from reader - copy_mask : see ChunksToWrite.COPY_XXX
*
* If we are after idat, only considers those chunks after IDAT in PngReader TODO: this should be more customizable
*/
private void copyChunks(PngReader reader, int copy_mask, boolean onlyAfterIdat) {
boolean idatDone = currentChunkGroup >= ChunkList.CHUNK_GROUP_4_IDAT;
for (PngChunk chunk : reader.getChunksList().getChunks()) {
int group = chunk.getChunkGroup();
if (group < ChunkList.CHUNK_GROUP_4_IDAT && idatDone)
continue;
boolean copy = false;
if (chunk.crit) {
if (chunk.id.equals(ChunkHelper.PLTE)) {
if (imgInfo.indexed && ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_PALETTE))
copy = true;
if (!imgInfo.greyscale && ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_ALL))
copy = true;
}
} else { // ancillary
boolean text = (chunk instanceof PngChunkTextVar);
boolean safe = chunk.safe;
// notice that these if are not exclusive
if (ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_ALL))
copy = true;
if (safe && ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_ALL_SAFE))
copy = true;
if (chunk.id.equals(ChunkHelper.tRNS)
&& ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_TRANSPARENCY))
copy = true;
if (chunk.id.equals(ChunkHelper.pHYs) && ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_PHYS))
copy = true;
if (text && ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_TEXTUAL))
copy = true;
if (ChunkHelper.maskMatch(copy_mask, ChunkCopyBehaviour.COPY_ALMOSTALL)
&& !(ChunkHelper.isUnknown(chunk) || text || chunk.id.equals(ChunkHelper.hIST) || chunk.id
.equals(ChunkHelper.tIME)))
copy = true;
}
if (copy) {
chunkList.queueChunk(PngChunk.cloneChunk(chunk, imgInfo), !chunk.allowsMultiple(), false);
}
}
}
/**
* Copies first (pre IDAT) ancillary chunks from a PngReader.
* <p>
* Should be called when creating an image from another, before starting writing lines, to copy relevant chunks.
* <p>
*
* @param reader
* : PngReader object, already opened.
* @param copy_mask
* : Mask bit (OR), see <code>ChunksToWrite.COPY_XXX</code> constants
*/
public void copyChunksFirst(PngReader reader, int copy_mask) {
copyChunks(reader, copy_mask, false);
}
/**
* Copies last (post IDAT) ancillary chunks from a PngReader.
* <p>
* Should be called when creating an image from another, after writing all lines, before closing the writer, to copy
* additional chunks.
* <p>
*
* @param reader
* : PngReader object, already opened and fully read.
* @param copy_mask
* : Mask bit (OR), see <code>ChunksToWrite.COPY_XXX</code> constants
*/
public void copyChunksLast(PngReader reader, int copy_mask) {
copyChunks(reader, copy_mask, true);
}
public ChunkList getChunkList() {
return chunkList;
}
public PngMetadata getMetadata() {
return metadata;
}
}
|