Line | Count | Source (jump to first uncovered line) |
1 | | /* pngwrite.c - general routines to write a PNG file |
2 | | * |
3 | | * Copyright (c) 2018-2025 Cosmin Truta |
4 | | * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson |
5 | | * Copyright (c) 1996-1997 Andreas Dilger |
6 | | * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. |
7 | | * |
8 | | * This code is released under the libpng license. |
9 | | * For conditions of distribution and use, see the disclaimer |
10 | | * and license in png.h |
11 | | */ |
12 | | |
13 | | #include "pngpriv.h" |
14 | | #ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED |
15 | | # include <errno.h> |
16 | | #endif /* SIMPLIFIED_WRITE_STDIO */ |
17 | | |
18 | | #ifdef PNG_WRITE_SUPPORTED |
19 | | |
20 | | #ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED |
21 | | /* Write out all the unknown chunks for the current given location */ |
22 | | static void |
23 | | write_unknown_chunks(png_structrp png_ptr, png_const_inforp info_ptr, |
24 | | unsigned int where) |
25 | 6.83k | { |
26 | 6.83k | if (info_ptr->unknown_chunks_num != 0) |
27 | 0 | { |
28 | 0 | png_const_unknown_chunkp up; |
29 | |
|
30 | 0 | png_debug(5, "writing extra chunks"); |
31 | |
|
32 | 0 | for (up = info_ptr->unknown_chunks; |
33 | 0 | up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num; |
34 | 0 | ++up) |
35 | 0 | if ((up->location & where) != 0) |
36 | 0 | { |
37 | | /* If per-chunk unknown chunk handling is enabled use it, otherwise |
38 | | * just write the chunks the application has set. |
39 | | */ |
40 | 0 | #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED |
41 | 0 | int keep = png_handle_as_unknown(png_ptr, up->name); |
42 | | |
43 | | /* NOTE: this code is radically different from the read side in the |
44 | | * matter of handling an ancillary unknown chunk. In the read side |
45 | | * the default behavior is to discard it, in the code below the default |
46 | | * behavior is to write it. Critical chunks are, however, only |
47 | | * written if explicitly listed or if the default is set to write all |
48 | | * unknown chunks. |
49 | | * |
50 | | * The default handling is also slightly weird - it is not possible to |
51 | | * stop the writing of all unsafe-to-copy chunks! |
52 | | * |
53 | | * TODO: REVIEW: this would seem to be a bug. |
54 | | */ |
55 | 0 | if (keep != PNG_HANDLE_CHUNK_NEVER && |
56 | 0 | ((up->name[3] & 0x20) /* safe-to-copy overrides everything */ || |
57 | 0 | keep == PNG_HANDLE_CHUNK_ALWAYS || |
58 | 0 | (keep == PNG_HANDLE_CHUNK_AS_DEFAULT && |
59 | 0 | png_ptr->unknown_default == PNG_HANDLE_CHUNK_ALWAYS))) |
60 | 0 | #endif |
61 | 0 | { |
62 | | /* TODO: review, what is wrong with a zero length unknown chunk? */ |
63 | 0 | if (up->size == 0) |
64 | 0 | png_warning(png_ptr, "Writing zero-length unknown chunk"); |
65 | |
|
66 | 0 | png_write_chunk(png_ptr, up->name, up->data, up->size); |
67 | 0 | } |
68 | 0 | } |
69 | 0 | } |
70 | 6.83k | } |
71 | | #endif /* WRITE_UNKNOWN_CHUNKS */ |
72 | | |
73 | | /* Writes all the PNG information. This is the suggested way to use the |
74 | | * library. If you have a new chunk to add, make a function to write it, |
75 | | * and put it in the correct location here. If you want the chunk written |
76 | | * after the image data, put it in png_write_end(). I strongly encourage |
77 | | * you to supply a PNG_INFO_<chunk> flag, and check info_ptr->valid before |
78 | | * writing the chunk, as that will keep the code from breaking if you want |
79 | | * to just write a plain PNG file. If you have long comments, I suggest |
80 | | * writing them in png_write_end(), and compressing them. |
81 | | */ |
82 | | void PNGAPI |
83 | | png_write_info_before_PLTE(png_structrp png_ptr, png_const_inforp info_ptr) |
84 | 4.55k | { |
85 | 4.55k | png_debug(1, "in png_write_info_before_PLTE"); |
86 | | |
87 | 4.55k | if (png_ptr == NULL || info_ptr == NULL) |
88 | 0 | return; |
89 | | |
90 | 4.55k | if ((png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE) == 0) |
91 | 2.27k | { |
92 | | /* Write PNG signature */ |
93 | 2.27k | png_write_sig(png_ptr); |
94 | | |
95 | 2.27k | #ifdef PNG_MNG_FEATURES_SUPPORTED |
96 | 2.27k | if ((png_ptr->mode & PNG_HAVE_PNG_SIGNATURE) != 0 && \ |
97 | 2.27k | png_ptr->mng_features_permitted != 0) |
98 | 0 | { |
99 | 0 | png_warning(png_ptr, |
100 | 0 | "MNG features are not allowed in a PNG datastream"); |
101 | 0 | png_ptr->mng_features_permitted = 0; |
102 | 0 | } |
103 | 2.27k | #endif |
104 | | |
105 | | /* Write IHDR information. */ |
106 | 2.27k | png_write_IHDR(png_ptr, info_ptr->width, info_ptr->height, |
107 | 2.27k | info_ptr->bit_depth, info_ptr->color_type, info_ptr->compression_type, |
108 | 2.27k | info_ptr->filter_type, |
109 | 2.27k | #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
110 | 2.27k | info_ptr->interlace_type |
111 | | #else |
112 | | 0 |
113 | | #endif |
114 | 2.27k | ); |
115 | | |
116 | | /* The rest of these check to see if the valid field has the appropriate |
117 | | * flag set, and if it does, writes the chunk. |
118 | | * |
119 | | * 1.6.0: COLORSPACE support controls the writing of these chunks too, and |
120 | | * the chunks will be written if the WRITE routine is there and |
121 | | * information * is available in the COLORSPACE. (See |
122 | | * png_colorspace_sync_info in png.c for where the valid flags get set.) |
123 | | * |
124 | | * Under certain circumstances the colorspace can be invalidated without |
125 | | * syncing the info_struct 'valid' flags; this happens if libpng detects |
126 | | * an error and calls png_error while the color space is being set, yet |
127 | | * the application continues writing the PNG. So check the 'invalid' |
128 | | * flag here too. |
129 | | */ |
130 | 2.27k | #ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED |
131 | | /* Write unknown chunks first; PNG v3 establishes a precedence order |
132 | | * for colourspace chunks. It is certain therefore that new |
133 | | * colourspace chunks will have a precedence and very likely it will be |
134 | | * higher than all known so far. Writing the unknown chunks here is |
135 | | * most likely to present the chunks in the most convenient order. |
136 | | * |
137 | | * FUTURE: maybe write chunks in the order the app calls png_set_chnk |
138 | | * to give the app control. |
139 | | */ |
140 | 2.27k | write_unknown_chunks(png_ptr, info_ptr, PNG_HAVE_IHDR); |
141 | 2.27k | #endif |
142 | | |
143 | 2.27k | #ifdef PNG_WRITE_sBIT_SUPPORTED |
144 | | /* PNG v3: a streaming app will need to see this before cICP because |
145 | | * the information is helpful in handling HLG encoding (which is |
146 | | * natively 10 bits but gets expanded to 16 in PNG.) |
147 | | * |
148 | | * The app shouldn't care about the order ideally, but it might have |
149 | | * no choice. In PNG v3, apps are allowed to reject PNGs where the |
150 | | * APNG chunks are out of order so it behooves libpng to be nice here. |
151 | | */ |
152 | 2.27k | if ((info_ptr->valid & PNG_INFO_sBIT) != 0) |
153 | 0 | png_write_sBIT(png_ptr, &(info_ptr->sig_bit), info_ptr->color_type); |
154 | 2.27k | #endif |
155 | | |
156 | | /* PNG v3: the July 2004 version of the TR introduced the concept of colour |
157 | | * space priority. As above it therefore behooves libpng to write the colour |
158 | | * space chunks in the priority order so that a streaming app need not buffer |
159 | | * them. |
160 | | * |
161 | | * PNG v3: Chunks mDCV and cLLI provide ancillary information for the |
162 | | * interpretation of the colourspace chunkgs but do not require support for |
163 | | * those chunks so are outside the "COLORSPACE" check but before the write of |
164 | | * the colourspace chunks themselves. |
165 | | */ |
166 | 2.27k | #ifdef PNG_WRITE_cLLI_SUPPORTED |
167 | 2.27k | if ((info_ptr->valid & PNG_INFO_cLLI) != 0) |
168 | 0 | { |
169 | 0 | png_write_cLLI_fixed(png_ptr, info_ptr->maxCLL, info_ptr->maxFALL); |
170 | 0 | } |
171 | 2.27k | #endif |
172 | 2.27k | #ifdef PNG_WRITE_mDCV_SUPPORTED |
173 | 2.27k | if ((info_ptr->valid & PNG_INFO_mDCV) != 0) |
174 | 0 | { |
175 | 0 | png_write_mDCV_fixed(png_ptr, |
176 | 0 | info_ptr->mastering_red_x, info_ptr->mastering_red_y, |
177 | 0 | info_ptr->mastering_green_x, info_ptr->mastering_green_y, |
178 | 0 | info_ptr->mastering_blue_x, info_ptr->mastering_blue_y, |
179 | 0 | info_ptr->mastering_white_x, info_ptr->mastering_white_y, |
180 | 0 | info_ptr->mastering_maxDL, info_ptr->mastering_minDL); |
181 | 0 | } |
182 | 2.27k | #endif |
183 | | |
184 | 2.27k | # ifdef PNG_WRITE_cICP_SUPPORTED /* Priority 4 */ |
185 | 2.27k | if ((info_ptr->valid & PNG_INFO_cICP) != 0) |
186 | 0 | { |
187 | 0 | png_write_cICP(png_ptr, |
188 | 0 | info_ptr->cicp_colour_primaries, |
189 | 0 | info_ptr->cicp_transfer_function, |
190 | 0 | info_ptr->cicp_matrix_coefficients, |
191 | 0 | info_ptr->cicp_video_full_range_flag); |
192 | 0 | } |
193 | 2.27k | # endif |
194 | | |
195 | 2.27k | # ifdef PNG_WRITE_iCCP_SUPPORTED /* Priority 3 */ |
196 | 2.27k | if ((info_ptr->valid & PNG_INFO_iCCP) != 0) |
197 | 15 | { |
198 | 15 | png_write_iCCP(png_ptr, info_ptr->iccp_name, |
199 | 15 | info_ptr->iccp_profile, info_ptr->iccp_proflen); |
200 | 15 | } |
201 | 2.27k | # endif |
202 | | |
203 | 2.27k | # ifdef PNG_WRITE_sRGB_SUPPORTED /* Priority 2 */ |
204 | 2.27k | if ((info_ptr->valid & PNG_INFO_sRGB) != 0) |
205 | 0 | png_write_sRGB(png_ptr, info_ptr->rendering_intent); |
206 | 2.27k | # endif /* WRITE_sRGB */ |
207 | | |
208 | 2.27k | # ifdef PNG_WRITE_gAMA_SUPPORTED /* Priority 1 */ |
209 | 2.27k | if ((info_ptr->valid & PNG_INFO_gAMA) != 0) |
210 | 0 | png_write_gAMA_fixed(png_ptr, info_ptr->gamma); |
211 | 2.27k | # endif |
212 | | |
213 | 2.27k | # ifdef PNG_WRITE_cHRM_SUPPORTED /* Also priority 1 */ |
214 | 2.27k | if ((info_ptr->valid & PNG_INFO_cHRM) != 0) |
215 | 740 | png_write_cHRM_fixed(png_ptr, &info_ptr->cHRM); |
216 | 2.27k | # endif |
217 | | |
218 | 2.27k | png_ptr->mode |= PNG_WROTE_INFO_BEFORE_PLTE; |
219 | 2.27k | } |
220 | 4.55k | } |
221 | | |
222 | | void PNGAPI |
223 | | png_write_info(png_structrp png_ptr, png_const_inforp info_ptr) |
224 | 2.27k | { |
225 | 2.27k | #if defined(PNG_WRITE_TEXT_SUPPORTED) || defined(PNG_WRITE_sPLT_SUPPORTED) |
226 | 2.27k | int i; |
227 | 2.27k | #endif |
228 | | |
229 | 2.27k | png_debug(1, "in png_write_info"); |
230 | | |
231 | 2.27k | if (png_ptr == NULL || info_ptr == NULL) |
232 | 0 | return; |
233 | | |
234 | 2.27k | png_write_info_before_PLTE(png_ptr, info_ptr); |
235 | | |
236 | 2.27k | if ((info_ptr->valid & PNG_INFO_PLTE) != 0) |
237 | 444 | png_write_PLTE(png_ptr, info_ptr->palette, |
238 | 444 | (png_uint_32)info_ptr->num_palette); |
239 | | |
240 | 1.83k | else if (info_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
241 | 0 | png_error(png_ptr, "Valid palette required for paletted images"); |
242 | | |
243 | 2.27k | #ifdef PNG_WRITE_tRNS_SUPPORTED |
244 | 2.27k | if ((info_ptr->valid & PNG_INFO_tRNS) !=0) |
245 | 149 | { |
246 | 149 | #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED |
247 | | /* Invert the alpha channel (in tRNS) */ |
248 | 149 | if ((png_ptr->transformations & PNG_INVERT_ALPHA) != 0 && |
249 | 149 | info_ptr->color_type == PNG_COLOR_TYPE_PALETTE) |
250 | 0 | { |
251 | 0 | int j, jend; |
252 | |
|
253 | 0 | jend = info_ptr->num_trans; |
254 | 0 | if (jend > PNG_MAX_PALETTE_LENGTH) |
255 | 0 | jend = PNG_MAX_PALETTE_LENGTH; |
256 | |
|
257 | 0 | for (j = 0; j<jend; ++j) |
258 | 0 | info_ptr->trans_alpha[j] = |
259 | 0 | (png_byte)(255 - info_ptr->trans_alpha[j]); |
260 | 0 | } |
261 | 149 | #endif |
262 | 149 | png_write_tRNS(png_ptr, info_ptr->trans_alpha, &(info_ptr->trans_color), |
263 | 149 | info_ptr->num_trans, info_ptr->color_type); |
264 | 149 | } |
265 | 2.27k | #endif |
266 | 2.27k | #ifdef PNG_WRITE_bKGD_SUPPORTED |
267 | 2.27k | if ((info_ptr->valid & PNG_INFO_bKGD) != 0) |
268 | 1.64k | png_write_bKGD(png_ptr, &(info_ptr->background), info_ptr->color_type); |
269 | 2.27k | #endif |
270 | | |
271 | 2.27k | #ifdef PNG_WRITE_eXIf_SUPPORTED |
272 | 2.27k | if ((info_ptr->valid & PNG_INFO_eXIf) != 0) |
273 | 0 | { |
274 | 0 | png_write_eXIf(png_ptr, info_ptr->exif, info_ptr->num_exif); |
275 | 0 | png_ptr->mode |= PNG_WROTE_eXIf; |
276 | 0 | } |
277 | 2.27k | #endif |
278 | | |
279 | 2.27k | #ifdef PNG_WRITE_hIST_SUPPORTED |
280 | 2.27k | if ((info_ptr->valid & PNG_INFO_hIST) != 0) |
281 | 0 | png_write_hIST(png_ptr, info_ptr->hist, info_ptr->num_palette); |
282 | 2.27k | #endif |
283 | | |
284 | 2.27k | #ifdef PNG_WRITE_oFFs_SUPPORTED |
285 | 2.27k | if ((info_ptr->valid & PNG_INFO_oFFs) != 0) |
286 | 0 | png_write_oFFs(png_ptr, info_ptr->x_offset, info_ptr->y_offset, |
287 | 0 | info_ptr->offset_unit_type); |
288 | 2.27k | #endif |
289 | | |
290 | 2.27k | #ifdef PNG_WRITE_pCAL_SUPPORTED |
291 | 2.27k | if ((info_ptr->valid & PNG_INFO_pCAL) != 0) |
292 | 0 | png_write_pCAL(png_ptr, info_ptr->pcal_purpose, info_ptr->pcal_X0, |
293 | 0 | info_ptr->pcal_X1, info_ptr->pcal_type, info_ptr->pcal_nparams, |
294 | 0 | info_ptr->pcal_units, info_ptr->pcal_params); |
295 | 2.27k | #endif |
296 | | |
297 | 2.27k | #ifdef PNG_WRITE_sCAL_SUPPORTED |
298 | 2.27k | if ((info_ptr->valid & PNG_INFO_sCAL) != 0) |
299 | 0 | png_write_sCAL_s(png_ptr, (int)info_ptr->scal_unit, |
300 | 0 | info_ptr->scal_s_width, info_ptr->scal_s_height); |
301 | 2.27k | #endif /* sCAL */ |
302 | | |
303 | 2.27k | #ifdef PNG_WRITE_pHYs_SUPPORTED |
304 | 2.27k | if ((info_ptr->valid & PNG_INFO_pHYs) != 0) |
305 | 66 | png_write_pHYs(png_ptr, info_ptr->x_pixels_per_unit, |
306 | 66 | info_ptr->y_pixels_per_unit, info_ptr->phys_unit_type); |
307 | 2.27k | #endif /* pHYs */ |
308 | | |
309 | 2.27k | #ifdef PNG_WRITE_tIME_SUPPORTED |
310 | 2.27k | if ((info_ptr->valid & PNG_INFO_tIME) != 0) |
311 | 1.74k | { |
312 | 1.74k | png_write_tIME(png_ptr, &(info_ptr->mod_time)); |
313 | 1.74k | png_ptr->mode |= PNG_WROTE_tIME; |
314 | 1.74k | } |
315 | 2.27k | #endif /* tIME */ |
316 | | |
317 | 2.27k | #ifdef PNG_WRITE_sPLT_SUPPORTED |
318 | 2.27k | if ((info_ptr->valid & PNG_INFO_sPLT) != 0) |
319 | 0 | for (i = 0; i < (int)info_ptr->splt_palettes_num; i++) |
320 | 0 | png_write_sPLT(png_ptr, info_ptr->splt_palettes + i); |
321 | 2.27k | #endif /* sPLT */ |
322 | | |
323 | 2.27k | #ifdef PNG_WRITE_TEXT_SUPPORTED |
324 | | /* Check to see if we need to write text chunks */ |
325 | 2.29k | for (i = 0; i < info_ptr->num_text; i++) |
326 | 15 | { |
327 | 15 | png_debug2(2, "Writing header text chunk %d, type %d", i, |
328 | 15 | info_ptr->text[i].compression); |
329 | | /* An internationalized chunk? */ |
330 | 15 | if (info_ptr->text[i].compression > 0) |
331 | 0 | { |
332 | 0 | #ifdef PNG_WRITE_iTXt_SUPPORTED |
333 | | /* Write international chunk */ |
334 | 0 | png_write_iTXt(png_ptr, |
335 | 0 | info_ptr->text[i].compression, |
336 | 0 | info_ptr->text[i].key, |
337 | 0 | info_ptr->text[i].lang, |
338 | 0 | info_ptr->text[i].lang_key, |
339 | 0 | info_ptr->text[i].text); |
340 | | /* Mark this chunk as written */ |
341 | 0 | if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE) |
342 | 0 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR; |
343 | 0 | else |
344 | 0 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR; |
345 | | #else |
346 | | png_warning(png_ptr, "Unable to write international text"); |
347 | | #endif |
348 | 0 | } |
349 | | |
350 | | /* If we want a compressed text chunk */ |
351 | 15 | else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_zTXt) |
352 | 15 | { |
353 | 15 | #ifdef PNG_WRITE_zTXt_SUPPORTED |
354 | | /* Write compressed chunk */ |
355 | 15 | png_write_zTXt(png_ptr, info_ptr->text[i].key, |
356 | 15 | info_ptr->text[i].text, info_ptr->text[i].compression); |
357 | | /* Mark this chunk as written */ |
358 | 15 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR; |
359 | | #else |
360 | | png_warning(png_ptr, "Unable to write compressed text"); |
361 | | #endif |
362 | 15 | } |
363 | | |
364 | 0 | else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE) |
365 | 0 | { |
366 | 0 | #ifdef PNG_WRITE_tEXt_SUPPORTED |
367 | | /* Write uncompressed chunk */ |
368 | 0 | png_write_tEXt(png_ptr, info_ptr->text[i].key, |
369 | 0 | info_ptr->text[i].text, |
370 | 0 | 0); |
371 | | /* Mark this chunk as written */ |
372 | 0 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR; |
373 | | #else |
374 | | /* Can't get here */ |
375 | | png_warning(png_ptr, "Unable to write uncompressed text"); |
376 | | #endif |
377 | 0 | } |
378 | 15 | } |
379 | 2.27k | #endif /* tEXt */ |
380 | | |
381 | 2.27k | #ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED |
382 | 2.27k | write_unknown_chunks(png_ptr, info_ptr, PNG_HAVE_PLTE); |
383 | 2.27k | #endif |
384 | 2.27k | } |
385 | | |
386 | | /* Writes the end of the PNG file. If you don't want to write comments or |
387 | | * time information, you can pass NULL for info. If you already wrote these |
388 | | * in png_write_info(), do not write them again here. If you have long |
389 | | * comments, I suggest writing them here, and compressing them. |
390 | | */ |
391 | | void PNGAPI |
392 | | png_write_end(png_structrp png_ptr, png_inforp info_ptr) |
393 | 2.27k | { |
394 | 2.27k | png_debug(1, "in png_write_end"); |
395 | | |
396 | 2.27k | if (png_ptr == NULL) |
397 | 0 | return; |
398 | | |
399 | 2.27k | if ((png_ptr->mode & PNG_HAVE_IDAT) == 0) |
400 | 0 | png_error(png_ptr, "No IDATs written into file"); |
401 | | |
402 | 2.27k | #ifdef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED |
403 | 2.27k | if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE && |
404 | 2.27k | png_ptr->num_palette_max >= png_ptr->num_palette) |
405 | 0 | png_benign_error(png_ptr, "Wrote palette index exceeding num_palette"); |
406 | 2.27k | #endif |
407 | | |
408 | | /* See if user wants us to write information chunks */ |
409 | 2.27k | if (info_ptr != NULL) |
410 | 2.27k | { |
411 | 2.27k | #ifdef PNG_WRITE_TEXT_SUPPORTED |
412 | 2.27k | int i; /* local index variable */ |
413 | 2.27k | #endif |
414 | 2.27k | #ifdef PNG_WRITE_tIME_SUPPORTED |
415 | | /* Check to see if user has supplied a time chunk */ |
416 | 2.27k | if ((info_ptr->valid & PNG_INFO_tIME) != 0 && |
417 | 2.27k | (png_ptr->mode & PNG_WROTE_tIME) == 0) |
418 | 0 | png_write_tIME(png_ptr, &(info_ptr->mod_time)); |
419 | | |
420 | 2.27k | #endif |
421 | 2.27k | #ifdef PNG_WRITE_TEXT_SUPPORTED |
422 | | /* Loop through comment chunks */ |
423 | 8.41k | for (i = 0; i < info_ptr->num_text; i++) |
424 | 6.13k | { |
425 | 6.13k | png_debug2(2, "Writing trailer text chunk %d, type %d", i, |
426 | 6.13k | info_ptr->text[i].compression); |
427 | | /* An internationalized chunk? */ |
428 | 6.13k | if (info_ptr->text[i].compression > 0) |
429 | 61 | { |
430 | 61 | #ifdef PNG_WRITE_iTXt_SUPPORTED |
431 | | /* Write international chunk */ |
432 | 61 | png_write_iTXt(png_ptr, |
433 | 61 | info_ptr->text[i].compression, |
434 | 61 | info_ptr->text[i].key, |
435 | 61 | info_ptr->text[i].lang, |
436 | 61 | info_ptr->text[i].lang_key, |
437 | 61 | info_ptr->text[i].text); |
438 | | /* Mark this chunk as written */ |
439 | 61 | if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE) |
440 | 0 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR; |
441 | 61 | else |
442 | 61 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR; |
443 | | #else |
444 | | png_warning(png_ptr, "Unable to write international text"); |
445 | | #endif |
446 | 61 | } |
447 | | |
448 | 6.07k | else if (info_ptr->text[i].compression >= PNG_TEXT_COMPRESSION_zTXt) |
449 | 36 | { |
450 | 36 | #ifdef PNG_WRITE_zTXt_SUPPORTED |
451 | | /* Write compressed chunk */ |
452 | 36 | png_write_zTXt(png_ptr, info_ptr->text[i].key, |
453 | 36 | info_ptr->text[i].text, info_ptr->text[i].compression); |
454 | | /* Mark this chunk as written */ |
455 | 36 | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_zTXt_WR; |
456 | | #else |
457 | | png_warning(png_ptr, "Unable to write compressed text"); |
458 | | #endif |
459 | 36 | } |
460 | | |
461 | 6.03k | else if (info_ptr->text[i].compression == PNG_TEXT_COMPRESSION_NONE) |
462 | 6.02k | { |
463 | 6.02k | #ifdef PNG_WRITE_tEXt_SUPPORTED |
464 | | /* Write uncompressed chunk */ |
465 | 6.02k | png_write_tEXt(png_ptr, info_ptr->text[i].key, |
466 | 6.02k | info_ptr->text[i].text, 0); |
467 | | /* Mark this chunk as written */ |
468 | 6.02k | info_ptr->text[i].compression = PNG_TEXT_COMPRESSION_NONE_WR; |
469 | | #else |
470 | | png_warning(png_ptr, "Unable to write uncompressed text"); |
471 | | #endif |
472 | 6.02k | } |
473 | 6.13k | } |
474 | 2.27k | #endif |
475 | | |
476 | 2.27k | #ifdef PNG_WRITE_eXIf_SUPPORTED |
477 | 2.27k | if ((info_ptr->valid & PNG_INFO_eXIf) != 0 && |
478 | 2.27k | (png_ptr->mode & PNG_WROTE_eXIf) == 0) |
479 | 0 | png_write_eXIf(png_ptr, info_ptr->exif, info_ptr->num_exif); |
480 | 2.27k | #endif |
481 | | |
482 | 2.27k | #ifdef PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED |
483 | 2.27k | write_unknown_chunks(png_ptr, info_ptr, PNG_AFTER_IDAT); |
484 | 2.27k | #endif |
485 | 2.27k | } |
486 | | |
487 | 2.27k | png_ptr->mode |= PNG_AFTER_IDAT; |
488 | | |
489 | | /* Write end of PNG file */ |
490 | 2.27k | png_write_IEND(png_ptr); |
491 | | |
492 | | /* This flush, added in libpng-1.0.8, removed from libpng-1.0.9beta03, |
493 | | * and restored again in libpng-1.2.30, may cause some applications that |
494 | | * do not set png_ptr->output_flush_fn to crash. If your application |
495 | | * experiences a problem, please try building libpng with |
496 | | * PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED defined, and report the event to |
497 | | * png-mng-implement at lists.sf.net . |
498 | | */ |
499 | 2.27k | #ifdef PNG_WRITE_FLUSH_SUPPORTED |
500 | | # ifdef PNG_WRITE_FLUSH_AFTER_IEND_SUPPORTED |
501 | | png_flush(png_ptr); |
502 | | # endif |
503 | 2.27k | #endif |
504 | 2.27k | } |
505 | | |
506 | | #ifdef PNG_CONVERT_tIME_SUPPORTED |
507 | | void PNGAPI |
508 | | png_convert_from_struct_tm(png_timep ptime, const struct tm * ttime) |
509 | 1.74k | { |
510 | 1.74k | png_debug(1, "in png_convert_from_struct_tm"); |
511 | | |
512 | 1.74k | ptime->year = (png_uint_16)(1900 + ttime->tm_year); |
513 | 1.74k | ptime->month = (png_byte)(ttime->tm_mon + 1); |
514 | 1.74k | ptime->day = (png_byte)ttime->tm_mday; |
515 | 1.74k | ptime->hour = (png_byte)ttime->tm_hour; |
516 | 1.74k | ptime->minute = (png_byte)ttime->tm_min; |
517 | 1.74k | ptime->second = (png_byte)ttime->tm_sec; |
518 | 1.74k | } |
519 | | |
520 | | void PNGAPI |
521 | | png_convert_from_time_t(png_timep ptime, time_t ttime) |
522 | 1.74k | { |
523 | 1.74k | struct tm *tbuf; |
524 | | |
525 | 1.74k | png_debug(1, "in png_convert_from_time_t"); |
526 | | |
527 | 1.74k | tbuf = gmtime(&ttime); |
528 | 1.74k | if (tbuf == NULL) |
529 | 0 | { |
530 | | /* TODO: add a safe function which takes a png_ptr argument and raises |
531 | | * a png_error if the ttime argument is invalid and the call to gmtime |
532 | | * fails as a consequence. |
533 | | */ |
534 | 0 | memset(ptime, 0, sizeof(*ptime)); |
535 | 0 | return; |
536 | 0 | } |
537 | | |
538 | 1.74k | png_convert_from_struct_tm(ptime, tbuf); |
539 | 1.74k | } |
540 | | #endif |
541 | | |
542 | | /* Initialize png_ptr structure, and allocate any memory needed */ |
543 | | PNG_FUNCTION(png_structp,PNGAPI |
544 | | png_create_write_struct,(png_const_charp user_png_ver, png_voidp error_ptr, |
545 | | png_error_ptr error_fn, png_error_ptr warn_fn),PNG_ALLOCATED) |
546 | 0 | { |
547 | | #ifndef PNG_USER_MEM_SUPPORTED |
548 | | png_structrp png_ptr = png_create_png_struct(user_png_ver, error_ptr, |
549 | | error_fn, warn_fn, NULL, NULL, NULL); |
550 | | #else |
551 | 0 | return png_create_write_struct_2(user_png_ver, error_ptr, error_fn, |
552 | 0 | warn_fn, NULL, NULL, NULL); |
553 | 0 | } |
554 | | |
555 | | /* Alternate initialize png_ptr structure, and allocate any memory needed */ |
556 | | PNG_FUNCTION(png_structp,PNGAPI |
557 | | png_create_write_struct_2,(png_const_charp user_png_ver, png_voidp error_ptr, |
558 | | png_error_ptr error_fn, png_error_ptr warn_fn, png_voidp mem_ptr, |
559 | | png_malloc_ptr malloc_fn, png_free_ptr free_fn),PNG_ALLOCATED) |
560 | 2.27k | { |
561 | 2.27k | png_structrp png_ptr = png_create_png_struct(user_png_ver, error_ptr, |
562 | 2.27k | error_fn, warn_fn, mem_ptr, malloc_fn, free_fn); |
563 | 2.27k | #endif /* USER_MEM */ |
564 | 2.27k | if (png_ptr != NULL) |
565 | 2.27k | { |
566 | | /* Set the zlib control values to defaults; they can be overridden by the |
567 | | * application after the struct has been created. |
568 | | */ |
569 | 2.27k | png_ptr->zbuffer_size = PNG_ZBUF_SIZE; |
570 | | |
571 | | /* The 'zlib_strategy' setting is irrelevant because png_default_claim in |
572 | | * pngwutil.c defaults it according to whether or not filters will be |
573 | | * used, and ignores this setting. |
574 | | */ |
575 | 2.27k | png_ptr->zlib_strategy = PNG_Z_DEFAULT_STRATEGY; |
576 | 2.27k | png_ptr->zlib_level = PNG_Z_DEFAULT_COMPRESSION; |
577 | 2.27k | png_ptr->zlib_mem_level = 8; |
578 | 2.27k | png_ptr->zlib_window_bits = 15; |
579 | 2.27k | png_ptr->zlib_method = 8; |
580 | | |
581 | 2.27k | #ifdef PNG_WRITE_COMPRESSED_TEXT_SUPPORTED |
582 | 2.27k | png_ptr->zlib_text_strategy = PNG_TEXT_Z_DEFAULT_STRATEGY; |
583 | 2.27k | png_ptr->zlib_text_level = PNG_TEXT_Z_DEFAULT_COMPRESSION; |
584 | 2.27k | png_ptr->zlib_text_mem_level = 8; |
585 | 2.27k | png_ptr->zlib_text_window_bits = 15; |
586 | 2.27k | png_ptr->zlib_text_method = 8; |
587 | 2.27k | #endif /* WRITE_COMPRESSED_TEXT */ |
588 | | |
589 | | /* This is a highly dubious configuration option; by default it is off, |
590 | | * but it may be appropriate for private builds that are testing |
591 | | * extensions not conformant to the current specification, or of |
592 | | * applications that must not fail to write at all costs! |
593 | | */ |
594 | | #ifdef PNG_BENIGN_WRITE_ERRORS_SUPPORTED |
595 | | /* In stable builds only warn if an application error can be completely |
596 | | * handled. |
597 | | */ |
598 | | png_ptr->flags |= PNG_FLAG_BENIGN_ERRORS_WARN; |
599 | | #endif |
600 | | |
601 | | /* App warnings are warnings in release (or release candidate) builds but |
602 | | * are errors during development. |
603 | | */ |
604 | | #if PNG_RELEASE_BUILD |
605 | | png_ptr->flags |= PNG_FLAG_APP_WARNINGS_WARN; |
606 | | #endif |
607 | | |
608 | | /* TODO: delay this, it can be done in png_init_io() (if the app doesn't |
609 | | * do it itself) avoiding setting the default function if it is not |
610 | | * required. |
611 | | */ |
612 | 2.27k | png_set_write_fn(png_ptr, NULL, NULL, NULL); |
613 | 2.27k | } |
614 | | |
615 | 2.27k | return png_ptr; |
616 | 2.27k | } |
617 | | |
618 | | |
619 | | /* Write a few rows of image data. If the image is interlaced, |
620 | | * either you will have to write the 7 sub images, or, if you |
621 | | * have called png_set_interlace_handling(), you will have to |
622 | | * "write" the image seven times. |
623 | | */ |
624 | | void PNGAPI |
625 | | png_write_rows(png_structrp png_ptr, png_bytepp row, |
626 | | png_uint_32 num_rows) |
627 | 0 | { |
628 | 0 | png_uint_32 i; /* row counter */ |
629 | 0 | png_bytepp rp; /* row pointer */ |
630 | |
|
631 | 0 | png_debug(1, "in png_write_rows"); |
632 | |
|
633 | 0 | if (png_ptr == NULL) |
634 | 0 | return; |
635 | | |
636 | | /* Loop through the rows */ |
637 | 0 | for (i = 0, rp = row; i < num_rows; i++, rp++) |
638 | 0 | { |
639 | 0 | png_write_row(png_ptr, *rp); |
640 | 0 | } |
641 | 0 | } |
642 | | |
643 | | /* Write the image. You only need to call this function once, even |
644 | | * if you are writing an interlaced image. |
645 | | */ |
646 | | void PNGAPI |
647 | | png_write_image(png_structrp png_ptr, png_bytepp image) |
648 | 0 | { |
649 | 0 | png_uint_32 i; /* row index */ |
650 | 0 | int pass, num_pass; /* pass variables */ |
651 | 0 | png_bytepp rp; /* points to current row */ |
652 | |
|
653 | 0 | if (png_ptr == NULL) |
654 | 0 | return; |
655 | | |
656 | 0 | png_debug(1, "in png_write_image"); |
657 | |
|
658 | 0 | #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
659 | | /* Initialize interlace handling. If image is not interlaced, |
660 | | * this will set pass to 1 |
661 | | */ |
662 | 0 | num_pass = png_set_interlace_handling(png_ptr); |
663 | | #else |
664 | | num_pass = 1; |
665 | | #endif |
666 | | /* Loop through passes */ |
667 | 0 | for (pass = 0; pass < num_pass; pass++) |
668 | 0 | { |
669 | | /* Loop through image */ |
670 | 0 | for (i = 0, rp = image; i < png_ptr->height; i++, rp++) |
671 | 0 | { |
672 | 0 | png_write_row(png_ptr, *rp); |
673 | 0 | } |
674 | 0 | } |
675 | 0 | } |
676 | | |
677 | | #ifdef PNG_MNG_FEATURES_SUPPORTED |
678 | | /* Performs intrapixel differencing */ |
679 | | static void |
680 | | png_do_write_intrapixel(png_row_infop row_info, png_bytep row) |
681 | 0 | { |
682 | 0 | png_debug(1, "in png_do_write_intrapixel"); |
683 | |
|
684 | 0 | if ((row_info->color_type & PNG_COLOR_MASK_COLOR) != 0) |
685 | 0 | { |
686 | 0 | int bytes_per_pixel; |
687 | 0 | png_uint_32 row_width = row_info->width; |
688 | 0 | if (row_info->bit_depth == 8) |
689 | 0 | { |
690 | 0 | png_bytep rp; |
691 | 0 | png_uint_32 i; |
692 | |
|
693 | 0 | if (row_info->color_type == PNG_COLOR_TYPE_RGB) |
694 | 0 | bytes_per_pixel = 3; |
695 | | |
696 | 0 | else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) |
697 | 0 | bytes_per_pixel = 4; |
698 | | |
699 | 0 | else |
700 | 0 | return; |
701 | | |
702 | 0 | for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) |
703 | 0 | { |
704 | 0 | *(rp) = (png_byte)(*rp - *(rp + 1)); |
705 | 0 | *(rp + 2) = (png_byte)(*(rp + 2) - *(rp + 1)); |
706 | 0 | } |
707 | 0 | } |
708 | | |
709 | 0 | #ifdef PNG_WRITE_16BIT_SUPPORTED |
710 | 0 | else if (row_info->bit_depth == 16) |
711 | 0 | { |
712 | 0 | png_bytep rp; |
713 | 0 | png_uint_32 i; |
714 | |
|
715 | 0 | if (row_info->color_type == PNG_COLOR_TYPE_RGB) |
716 | 0 | bytes_per_pixel = 6; |
717 | | |
718 | 0 | else if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA) |
719 | 0 | bytes_per_pixel = 8; |
720 | | |
721 | 0 | else |
722 | 0 | return; |
723 | | |
724 | 0 | for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) |
725 | 0 | { |
726 | 0 | png_uint_32 s0 = (png_uint_32)(*(rp ) << 8) | *(rp + 1); |
727 | 0 | png_uint_32 s1 = (png_uint_32)(*(rp + 2) << 8) | *(rp + 3); |
728 | 0 | png_uint_32 s2 = (png_uint_32)(*(rp + 4) << 8) | *(rp + 5); |
729 | 0 | png_uint_32 red = (png_uint_32)((s0 - s1) & 0xffffL); |
730 | 0 | png_uint_32 blue = (png_uint_32)((s2 - s1) & 0xffffL); |
731 | 0 | *(rp ) = (png_byte)(red >> 8); |
732 | 0 | *(rp + 1) = (png_byte)red; |
733 | 0 | *(rp + 4) = (png_byte)(blue >> 8); |
734 | 0 | *(rp + 5) = (png_byte)blue; |
735 | 0 | } |
736 | 0 | } |
737 | 0 | #endif /* WRITE_16BIT */ |
738 | 0 | } |
739 | 0 | } |
740 | | #endif /* MNG_FEATURES */ |
741 | | |
742 | | /* Called by user to write a row of image data */ |
743 | | void PNGAPI |
744 | | png_write_row(png_structrp png_ptr, png_const_bytep row) |
745 | 347k | { |
746 | | /* 1.5.6: moved from png_struct to be a local structure: */ |
747 | 347k | png_row_info row_info; |
748 | | |
749 | 347k | png_debug2(1, "in png_write_row (row %u, pass %d)", |
750 | 347k | png_ptr->row_number, png_ptr->pass); |
751 | | |
752 | 347k | if (png_ptr == NULL) |
753 | 0 | return; |
754 | | |
755 | | /* Initialize transformations and other stuff if first time */ |
756 | 347k | if (png_ptr->row_number == 0 && png_ptr->pass == 0) |
757 | 2.27k | { |
758 | | /* Make sure we wrote the header info */ |
759 | 2.27k | if ((png_ptr->mode & PNG_WROTE_INFO_BEFORE_PLTE) == 0) |
760 | 0 | png_error(png_ptr, |
761 | 0 | "png_write_info was never called before png_write_row"); |
762 | | |
763 | | /* Check for transforms that have been set but were defined out */ |
764 | | #if !defined(PNG_WRITE_INVERT_SUPPORTED) && defined(PNG_READ_INVERT_SUPPORTED) |
765 | | if ((png_ptr->transformations & PNG_INVERT_MONO) != 0) |
766 | | png_warning(png_ptr, "PNG_WRITE_INVERT_SUPPORTED is not defined"); |
767 | | #endif |
768 | | |
769 | | #if !defined(PNG_WRITE_FILLER_SUPPORTED) && defined(PNG_READ_FILLER_SUPPORTED) |
770 | | if ((png_ptr->transformations & PNG_FILLER) != 0) |
771 | | png_warning(png_ptr, "PNG_WRITE_FILLER_SUPPORTED is not defined"); |
772 | | #endif |
773 | | #if !defined(PNG_WRITE_PACKSWAP_SUPPORTED) && \ |
774 | | defined(PNG_READ_PACKSWAP_SUPPORTED) |
775 | | if ((png_ptr->transformations & PNG_PACKSWAP) != 0) |
776 | | png_warning(png_ptr, |
777 | | "PNG_WRITE_PACKSWAP_SUPPORTED is not defined"); |
778 | | #endif |
779 | | |
780 | | #if !defined(PNG_WRITE_PACK_SUPPORTED) && defined(PNG_READ_PACK_SUPPORTED) |
781 | | if ((png_ptr->transformations & PNG_PACK) != 0) |
782 | | png_warning(png_ptr, "PNG_WRITE_PACK_SUPPORTED is not defined"); |
783 | | #endif |
784 | | |
785 | | #if !defined(PNG_WRITE_SHIFT_SUPPORTED) && defined(PNG_READ_SHIFT_SUPPORTED) |
786 | | if ((png_ptr->transformations & PNG_SHIFT) != 0) |
787 | | png_warning(png_ptr, "PNG_WRITE_SHIFT_SUPPORTED is not defined"); |
788 | | #endif |
789 | | |
790 | | #if !defined(PNG_WRITE_BGR_SUPPORTED) && defined(PNG_READ_BGR_SUPPORTED) |
791 | | if ((png_ptr->transformations & PNG_BGR) != 0) |
792 | | png_warning(png_ptr, "PNG_WRITE_BGR_SUPPORTED is not defined"); |
793 | | #endif |
794 | | |
795 | | #if !defined(PNG_WRITE_SWAP_SUPPORTED) && defined(PNG_READ_SWAP_SUPPORTED) |
796 | | if ((png_ptr->transformations & PNG_SWAP_BYTES) != 0) |
797 | | png_warning(png_ptr, "PNG_WRITE_SWAP_SUPPORTED is not defined"); |
798 | | #endif |
799 | | |
800 | 2.27k | png_write_start_row(png_ptr); |
801 | 2.27k | } |
802 | | |
803 | 347k | #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
804 | | /* If interlaced and not interested in row, return */ |
805 | 347k | if (png_ptr->interlaced != 0 && |
806 | 347k | (png_ptr->transformations & PNG_INTERLACE) != 0) |
807 | 0 | { |
808 | 0 | switch (png_ptr->pass) |
809 | 0 | { |
810 | 0 | case 0: |
811 | 0 | if ((png_ptr->row_number & 0x07) != 0) |
812 | 0 | { |
813 | 0 | png_write_finish_row(png_ptr); |
814 | 0 | return; |
815 | 0 | } |
816 | 0 | break; |
817 | | |
818 | 0 | case 1: |
819 | 0 | if ((png_ptr->row_number & 0x07) != 0 || png_ptr->width < 5) |
820 | 0 | { |
821 | 0 | png_write_finish_row(png_ptr); |
822 | 0 | return; |
823 | 0 | } |
824 | 0 | break; |
825 | | |
826 | 0 | case 2: |
827 | 0 | if ((png_ptr->row_number & 0x07) != 4) |
828 | 0 | { |
829 | 0 | png_write_finish_row(png_ptr); |
830 | 0 | return; |
831 | 0 | } |
832 | 0 | break; |
833 | | |
834 | 0 | case 3: |
835 | 0 | if ((png_ptr->row_number & 0x03) != 0 || png_ptr->width < 3) |
836 | 0 | { |
837 | 0 | png_write_finish_row(png_ptr); |
838 | 0 | return; |
839 | 0 | } |
840 | 0 | break; |
841 | | |
842 | 0 | case 4: |
843 | 0 | if ((png_ptr->row_number & 0x03) != 2) |
844 | 0 | { |
845 | 0 | png_write_finish_row(png_ptr); |
846 | 0 | return; |
847 | 0 | } |
848 | 0 | break; |
849 | | |
850 | 0 | case 5: |
851 | 0 | if ((png_ptr->row_number & 0x01) != 0 || png_ptr->width < 2) |
852 | 0 | { |
853 | 0 | png_write_finish_row(png_ptr); |
854 | 0 | return; |
855 | 0 | } |
856 | 0 | break; |
857 | | |
858 | 0 | case 6: |
859 | 0 | if ((png_ptr->row_number & 0x01) == 0) |
860 | 0 | { |
861 | 0 | png_write_finish_row(png_ptr); |
862 | 0 | return; |
863 | 0 | } |
864 | 0 | break; |
865 | | |
866 | 0 | default: /* error: ignore it */ |
867 | 0 | break; |
868 | 0 | } |
869 | 0 | } |
870 | 347k | #endif |
871 | | |
872 | | /* Set up row info for transformations */ |
873 | 347k | row_info.color_type = png_ptr->color_type; |
874 | 347k | row_info.width = png_ptr->usr_width; |
875 | 347k | row_info.channels = png_ptr->usr_channels; |
876 | 347k | row_info.bit_depth = png_ptr->usr_bit_depth; |
877 | 347k | row_info.pixel_depth = (png_byte)(row_info.bit_depth * row_info.channels); |
878 | 347k | row_info.rowbytes = PNG_ROWBYTES(row_info.pixel_depth, row_info.width); |
879 | | |
880 | 347k | png_debug1(3, "row_info->color_type = %d", row_info.color_type); |
881 | 347k | png_debug1(3, "row_info->width = %u", row_info.width); |
882 | 347k | png_debug1(3, "row_info->channels = %d", row_info.channels); |
883 | 347k | png_debug1(3, "row_info->bit_depth = %d", row_info.bit_depth); |
884 | 347k | png_debug1(3, "row_info->pixel_depth = %d", row_info.pixel_depth); |
885 | 347k | png_debug1(3, "row_info->rowbytes = %lu", (unsigned long)row_info.rowbytes); |
886 | | |
887 | | /* Copy user's row into buffer, leaving room for filter byte. */ |
888 | 347k | memcpy(png_ptr->row_buf + 1, row, row_info.rowbytes); |
889 | | |
890 | 347k | #ifdef PNG_WRITE_INTERLACING_SUPPORTED |
891 | | /* Handle interlacing */ |
892 | 347k | if (png_ptr->interlaced && png_ptr->pass < 6 && |
893 | 347k | (png_ptr->transformations & PNG_INTERLACE) != 0) |
894 | 0 | { |
895 | 0 | png_do_write_interlace(&row_info, png_ptr->row_buf + 1, png_ptr->pass); |
896 | | /* This should always get caught above, but still ... */ |
897 | 0 | if (row_info.width == 0) |
898 | 0 | { |
899 | 0 | png_write_finish_row(png_ptr); |
900 | 0 | return; |
901 | 0 | } |
902 | 0 | } |
903 | 347k | #endif |
904 | | |
905 | 347k | #ifdef PNG_WRITE_TRANSFORMS_SUPPORTED |
906 | | /* Handle other transformations */ |
907 | 347k | if (png_ptr->transformations != 0) |
908 | 168k | png_do_write_transformations(png_ptr, &row_info); |
909 | 347k | #endif |
910 | | |
911 | | /* At this point the row_info pixel depth must match the 'transformed' depth, |
912 | | * which is also the output depth. |
913 | | */ |
914 | 347k | if (row_info.pixel_depth != png_ptr->pixel_depth || |
915 | 347k | row_info.pixel_depth != png_ptr->transformed_pixel_depth) |
916 | 0 | png_error(png_ptr, "internal write transform logic error"); |
917 | | |
918 | 347k | #ifdef PNG_MNG_FEATURES_SUPPORTED |
919 | | /* Write filter_method 64 (intrapixel differencing) only if |
920 | | * 1. Libpng was compiled with PNG_MNG_FEATURES_SUPPORTED and |
921 | | * 2. Libpng did not write a PNG signature (this filter_method is only |
922 | | * used in PNG datastreams that are embedded in MNG datastreams) and |
923 | | * 3. The application called png_permit_mng_features with a mask that |
924 | | * included PNG_FLAG_MNG_FILTER_64 and |
925 | | * 4. The filter_method is 64 and |
926 | | * 5. The color_type is RGB or RGBA |
927 | | */ |
928 | 347k | if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) != 0 && |
929 | 347k | (png_ptr->filter_type == PNG_INTRAPIXEL_DIFFERENCING)) |
930 | 0 | { |
931 | | /* Intrapixel differencing */ |
932 | 0 | png_do_write_intrapixel(&row_info, png_ptr->row_buf + 1); |
933 | 0 | } |
934 | 347k | #endif |
935 | | |
936 | | /* Added at libpng-1.5.10 */ |
937 | 347k | #ifdef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED |
938 | | /* Check for out-of-range palette index */ |
939 | 347k | if (row_info.color_type == PNG_COLOR_TYPE_PALETTE && |
940 | 347k | png_ptr->num_palette_max >= 0) |
941 | 16.4k | png_do_check_palette_indexes(png_ptr, &row_info); |
942 | 347k | #endif |
943 | | |
944 | | /* Find a filter if necessary, filter the row and write it out. */ |
945 | 347k | png_write_find_filter(png_ptr, &row_info); |
946 | | |
947 | 347k | if (png_ptr->write_row_fn != NULL) |
948 | 0 | (*(png_ptr->write_row_fn))(png_ptr, png_ptr->row_number, png_ptr->pass); |
949 | 347k | } |
950 | | |
951 | | #ifdef PNG_WRITE_FLUSH_SUPPORTED |
952 | | /* Set the automatic flush interval or 0 to turn flushing off */ |
953 | | void PNGAPI |
954 | | png_set_flush(png_structrp png_ptr, int nrows) |
955 | 0 | { |
956 | 0 | png_debug(1, "in png_set_flush"); |
957 | |
|
958 | 0 | if (png_ptr == NULL) |
959 | 0 | return; |
960 | | |
961 | 0 | png_ptr->flush_dist = (nrows < 0 ? 0 : (png_uint_32)nrows); |
962 | 0 | } |
963 | | |
964 | | /* Flush the current output buffers now */ |
965 | | void PNGAPI |
966 | | png_write_flush(png_structrp png_ptr) |
967 | 0 | { |
968 | 0 | png_debug(1, "in png_write_flush"); |
969 | |
|
970 | 0 | if (png_ptr == NULL) |
971 | 0 | return; |
972 | | |
973 | | /* We have already written out all of the data */ |
974 | 0 | if (png_ptr->row_number >= png_ptr->num_rows) |
975 | 0 | return; |
976 | | |
977 | 0 | png_compress_IDAT(png_ptr, NULL, 0, Z_SYNC_FLUSH); |
978 | 0 | png_ptr->flush_rows = 0; |
979 | 0 | png_flush(png_ptr); |
980 | 0 | } |
981 | | #endif /* WRITE_FLUSH */ |
982 | | |
983 | | /* Free any memory used in png_ptr struct without freeing the struct itself. */ |
984 | | static void |
985 | | png_write_destroy(png_structrp png_ptr) |
986 | 2.27k | { |
987 | 2.27k | png_debug(1, "in png_write_destroy"); |
988 | | |
989 | | /* Free any memory zlib uses */ |
990 | 2.27k | if ((png_ptr->flags & PNG_FLAG_ZSTREAM_INITIALIZED) != 0) |
991 | 2.27k | deflateEnd(&png_ptr->zstream); |
992 | | |
993 | | /* Free our memory. png_free checks NULL for us. */ |
994 | 2.27k | png_free_buffer_list(png_ptr, &png_ptr->zbuffer_list); |
995 | 2.27k | png_free(png_ptr, png_ptr->row_buf); |
996 | 2.27k | png_ptr->row_buf = NULL; |
997 | 2.27k | #ifdef PNG_WRITE_FILTER_SUPPORTED |
998 | 2.27k | png_free(png_ptr, png_ptr->prev_row); |
999 | 2.27k | png_free(png_ptr, png_ptr->try_row); |
1000 | 2.27k | png_free(png_ptr, png_ptr->tst_row); |
1001 | 2.27k | png_ptr->prev_row = NULL; |
1002 | 2.27k | png_ptr->try_row = NULL; |
1003 | 2.27k | png_ptr->tst_row = NULL; |
1004 | 2.27k | #endif |
1005 | | |
1006 | 2.27k | #ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED |
1007 | 2.27k | png_free(png_ptr, png_ptr->chunk_list); |
1008 | 2.27k | png_ptr->chunk_list = NULL; |
1009 | 2.27k | #endif |
1010 | | |
1011 | | /* The error handling and memory handling information is left intact at this |
1012 | | * point: the jmp_buf may still have to be freed. See png_destroy_png_struct |
1013 | | * for how this happens. |
1014 | | */ |
1015 | 2.27k | } |
1016 | | |
1017 | | /* Free all memory used by the write. |
1018 | | * In libpng 1.6.0 this API changed quietly to no longer accept a NULL value for |
1019 | | * *png_ptr_ptr. Prior to 1.6.0 it would accept such a value and it would free |
1020 | | * the passed in info_structs but it would quietly fail to free any of the data |
1021 | | * inside them. In 1.6.0 it quietly does nothing (it has to be quiet because it |
1022 | | * has no png_ptr.) |
1023 | | */ |
1024 | | void PNGAPI |
1025 | | png_destroy_write_struct(png_structpp png_ptr_ptr, png_infopp info_ptr_ptr) |
1026 | 2.27k | { |
1027 | 2.27k | png_debug(1, "in png_destroy_write_struct"); |
1028 | | |
1029 | 2.27k | if (png_ptr_ptr != NULL) |
1030 | 2.27k | { |
1031 | 2.27k | png_structrp png_ptr = *png_ptr_ptr; |
1032 | | |
1033 | 2.27k | if (png_ptr != NULL) /* added in libpng 1.6.0 */ |
1034 | 2.27k | { |
1035 | 2.27k | png_destroy_info_struct(png_ptr, info_ptr_ptr); |
1036 | | |
1037 | 2.27k | *png_ptr_ptr = NULL; |
1038 | 2.27k | png_write_destroy(png_ptr); |
1039 | 2.27k | png_destroy_png_struct(png_ptr); |
1040 | 2.27k | } |
1041 | 2.27k | } |
1042 | 2.27k | } |
1043 | | |
1044 | | /* Allow the application to select one or more row filters to use. */ |
1045 | | void PNGAPI |
1046 | | png_set_filter(png_structrp png_ptr, int method, int filters) |
1047 | 2.27k | { |
1048 | 2.27k | png_debug(1, "in png_set_filter"); |
1049 | | |
1050 | 2.27k | if (png_ptr == NULL) |
1051 | 0 | return; |
1052 | | |
1053 | 2.27k | #ifdef PNG_MNG_FEATURES_SUPPORTED |
1054 | 2.27k | if ((png_ptr->mng_features_permitted & PNG_FLAG_MNG_FILTER_64) != 0 && |
1055 | 2.27k | (method == PNG_INTRAPIXEL_DIFFERENCING)) |
1056 | 0 | method = PNG_FILTER_TYPE_BASE; |
1057 | | |
1058 | 2.27k | #endif |
1059 | 2.27k | if (method == PNG_FILTER_TYPE_BASE) |
1060 | 2.27k | { |
1061 | 2.27k | switch (filters & (PNG_ALL_FILTERS | 0x07)) |
1062 | 2.27k | { |
1063 | 0 | #ifdef PNG_WRITE_FILTER_SUPPORTED |
1064 | 0 | case 5: |
1065 | 0 | case 6: |
1066 | 0 | case 7: png_app_error(png_ptr, "Unknown row filter for method 0"); |
1067 | 0 | #endif /* WRITE_FILTER */ |
1068 | | /* FALLTHROUGH */ |
1069 | 984 | case PNG_FILTER_VALUE_NONE: |
1070 | 984 | png_ptr->do_filter = PNG_FILTER_NONE; break; |
1071 | | |
1072 | 0 | #ifdef PNG_WRITE_FILTER_SUPPORTED |
1073 | 0 | case PNG_FILTER_VALUE_SUB: |
1074 | 0 | png_ptr->do_filter = PNG_FILTER_SUB; break; |
1075 | | |
1076 | 0 | case PNG_FILTER_VALUE_UP: |
1077 | 0 | png_ptr->do_filter = PNG_FILTER_UP; break; |
1078 | | |
1079 | 0 | case PNG_FILTER_VALUE_AVG: |
1080 | 0 | png_ptr->do_filter = PNG_FILTER_AVG; break; |
1081 | | |
1082 | 0 | case PNG_FILTER_VALUE_PAETH: |
1083 | 0 | png_ptr->do_filter = PNG_FILTER_PAETH; break; |
1084 | | |
1085 | 1.29k | default: |
1086 | 1.29k | png_ptr->do_filter = (png_byte)filters; break; |
1087 | | #else |
1088 | | default: |
1089 | | png_app_error(png_ptr, "Unknown row filter for method 0"); |
1090 | | #endif /* WRITE_FILTER */ |
1091 | 2.27k | } |
1092 | | |
1093 | 2.27k | #ifdef PNG_WRITE_FILTER_SUPPORTED |
1094 | | /* If we have allocated the row_buf, this means we have already started |
1095 | | * with the image and we should have allocated all of the filter buffers |
1096 | | * that have been selected. If prev_row isn't already allocated, then |
1097 | | * it is too late to start using the filters that need it, since we |
1098 | | * will be missing the data in the previous row. If an application |
1099 | | * wants to start and stop using particular filters during compression, |
1100 | | * it should start out with all of the filters, and then remove them |
1101 | | * or add them back after the start of compression. |
1102 | | * |
1103 | | * NOTE: this is a nasty constraint on the code, because it means that the |
1104 | | * prev_row buffer must be maintained even if there are currently no |
1105 | | * 'prev_row' requiring filters active. |
1106 | | */ |
1107 | 2.27k | if (png_ptr->row_buf != NULL) |
1108 | 0 | { |
1109 | 0 | int num_filters; |
1110 | 0 | png_alloc_size_t buf_size; |
1111 | | |
1112 | | /* Repeat the checks in png_write_start_row; 1 pixel high or wide |
1113 | | * images cannot benefit from certain filters. If this isn't done here |
1114 | | * the check below will fire on 1 pixel high images. |
1115 | | */ |
1116 | 0 | if (png_ptr->height == 1) |
1117 | 0 | filters &= ~(PNG_FILTER_UP|PNG_FILTER_AVG|PNG_FILTER_PAETH); |
1118 | |
|
1119 | 0 | if (png_ptr->width == 1) |
1120 | 0 | filters &= ~(PNG_FILTER_SUB|PNG_FILTER_AVG|PNG_FILTER_PAETH); |
1121 | |
|
1122 | 0 | if ((filters & (PNG_FILTER_UP|PNG_FILTER_AVG|PNG_FILTER_PAETH)) != 0 |
1123 | 0 | && png_ptr->prev_row == NULL) |
1124 | 0 | { |
1125 | | /* This is the error case, however it is benign - the previous row |
1126 | | * is not available so the filter can't be used. Just warn here. |
1127 | | */ |
1128 | 0 | png_app_warning(png_ptr, |
1129 | 0 | "png_set_filter: UP/AVG/PAETH cannot be added after start"); |
1130 | 0 | filters &= ~(PNG_FILTER_UP|PNG_FILTER_AVG|PNG_FILTER_PAETH); |
1131 | 0 | } |
1132 | |
|
1133 | 0 | num_filters = 0; |
1134 | |
|
1135 | 0 | if (filters & PNG_FILTER_SUB) |
1136 | 0 | num_filters++; |
1137 | |
|
1138 | 0 | if (filters & PNG_FILTER_UP) |
1139 | 0 | num_filters++; |
1140 | |
|
1141 | 0 | if (filters & PNG_FILTER_AVG) |
1142 | 0 | num_filters++; |
1143 | |
|
1144 | 0 | if (filters & PNG_FILTER_PAETH) |
1145 | 0 | num_filters++; |
1146 | | |
1147 | | /* Allocate needed row buffers if they have not already been |
1148 | | * allocated. |
1149 | | */ |
1150 | 0 | buf_size = PNG_ROWBYTES(png_ptr->usr_channels * png_ptr->usr_bit_depth, |
1151 | 0 | png_ptr->width) + 1; |
1152 | |
|
1153 | 0 | if (png_ptr->try_row == NULL) |
1154 | 0 | png_ptr->try_row = png_voidcast(png_bytep, |
1155 | 0 | png_malloc(png_ptr, buf_size)); |
1156 | |
|
1157 | 0 | if (num_filters > 1) |
1158 | 0 | { |
1159 | 0 | if (png_ptr->tst_row == NULL) |
1160 | 0 | png_ptr->tst_row = png_voidcast(png_bytep, |
1161 | 0 | png_malloc(png_ptr, buf_size)); |
1162 | 0 | } |
1163 | 0 | } |
1164 | 2.27k | png_ptr->do_filter = (png_byte)filters; |
1165 | 2.27k | #endif |
1166 | 2.27k | } |
1167 | 0 | else |
1168 | 0 | png_error(png_ptr, "Unknown custom filter method"); |
1169 | 2.27k | } |
1170 | | |
1171 | | #ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* DEPRECATED */ |
1172 | | /* Provide floating and fixed point APIs */ |
1173 | | #ifdef PNG_FLOATING_POINT_SUPPORTED |
1174 | | void PNGAPI |
1175 | | png_set_filter_heuristics(png_structrp png_ptr, int heuristic_method, |
1176 | | int num_weights, png_const_doublep filter_weights, |
1177 | | png_const_doublep filter_costs) |
1178 | 0 | { |
1179 | 0 | PNG_UNUSED(png_ptr) |
1180 | 0 | PNG_UNUSED(heuristic_method) |
1181 | 0 | PNG_UNUSED(num_weights) |
1182 | 0 | PNG_UNUSED(filter_weights) |
1183 | 0 | PNG_UNUSED(filter_costs) |
1184 | 0 | } |
1185 | | #endif /* FLOATING_POINT */ |
1186 | | |
1187 | | #ifdef PNG_FIXED_POINT_SUPPORTED |
1188 | | void PNGAPI |
1189 | | png_set_filter_heuristics_fixed(png_structrp png_ptr, int heuristic_method, |
1190 | | int num_weights, png_const_fixed_point_p filter_weights, |
1191 | | png_const_fixed_point_p filter_costs) |
1192 | 0 | { |
1193 | 0 | PNG_UNUSED(png_ptr) |
1194 | 0 | PNG_UNUSED(heuristic_method) |
1195 | 0 | PNG_UNUSED(num_weights) |
1196 | 0 | PNG_UNUSED(filter_weights) |
1197 | 0 | PNG_UNUSED(filter_costs) |
1198 | 0 | } |
1199 | | #endif /* FIXED_POINT */ |
1200 | | #endif /* WRITE_WEIGHTED_FILTER */ |
1201 | | |
1202 | | #ifdef PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED |
1203 | | void PNGAPI |
1204 | | png_set_compression_level(png_structrp png_ptr, int level) |
1205 | 2.27k | { |
1206 | 2.27k | png_debug(1, "in png_set_compression_level"); |
1207 | | |
1208 | 2.27k | if (png_ptr == NULL) |
1209 | 0 | return; |
1210 | | |
1211 | 2.27k | png_ptr->zlib_level = level; |
1212 | 2.27k | } |
1213 | | |
1214 | | void PNGAPI |
1215 | | png_set_compression_mem_level(png_structrp png_ptr, int mem_level) |
1216 | 2.27k | { |
1217 | 2.27k | png_debug(1, "in png_set_compression_mem_level"); |
1218 | | |
1219 | 2.27k | if (png_ptr == NULL) |
1220 | 0 | return; |
1221 | | |
1222 | 2.27k | png_ptr->zlib_mem_level = mem_level; |
1223 | 2.27k | } |
1224 | | |
1225 | | void PNGAPI |
1226 | | png_set_compression_strategy(png_structrp png_ptr, int strategy) |
1227 | 0 | { |
1228 | 0 | png_debug(1, "in png_set_compression_strategy"); |
1229 | |
|
1230 | 0 | if (png_ptr == NULL) |
1231 | 0 | return; |
1232 | | |
1233 | | /* The flag setting here prevents the libpng dynamic selection of strategy. |
1234 | | */ |
1235 | 0 | png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY; |
1236 | 0 | png_ptr->zlib_strategy = strategy; |
1237 | 0 | } |
1238 | | |
1239 | | /* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a |
1240 | | * smaller value of window_bits if it can do so safely. |
1241 | | */ |
1242 | | void PNGAPI |
1243 | | png_set_compression_window_bits(png_structrp png_ptr, int window_bits) |
1244 | 0 | { |
1245 | 0 | png_debug(1, "in png_set_compression_window_bits"); |
1246 | |
|
1247 | 0 | if (png_ptr == NULL) |
1248 | 0 | return; |
1249 | | |
1250 | | /* Prior to 1.6.0 this would warn but then set the window_bits value. This |
1251 | | * meant that negative window bits values could be selected that would cause |
1252 | | * libpng to write a non-standard PNG file with raw deflate or gzip |
1253 | | * compressed IDAT or ancillary chunks. Such files can be read and there is |
1254 | | * no warning on read, so this seems like a very bad idea. |
1255 | | */ |
1256 | 0 | if (window_bits > 15) |
1257 | 0 | { |
1258 | 0 | png_warning(png_ptr, "Only compression windows <= 32k supported by PNG"); |
1259 | 0 | window_bits = 15; |
1260 | 0 | } |
1261 | | |
1262 | 0 | else if (window_bits < 8) |
1263 | 0 | { |
1264 | 0 | png_warning(png_ptr, "Only compression windows >= 256 supported by PNG"); |
1265 | 0 | window_bits = 8; |
1266 | 0 | } |
1267 | |
|
1268 | 0 | png_ptr->zlib_window_bits = window_bits; |
1269 | 0 | } |
1270 | | |
1271 | | void PNGAPI |
1272 | | png_set_compression_method(png_structrp png_ptr, int method) |
1273 | 0 | { |
1274 | 0 | png_debug(1, "in png_set_compression_method"); |
1275 | |
|
1276 | 0 | if (png_ptr == NULL) |
1277 | 0 | return; |
1278 | | |
1279 | | /* This would produce an invalid PNG file if it worked, but it doesn't and |
1280 | | * deflate will fault it, so it is harmless to just warn here. |
1281 | | */ |
1282 | 0 | if (method != 8) |
1283 | 0 | png_warning(png_ptr, "Only compression method 8 is supported by PNG"); |
1284 | |
|
1285 | 0 | png_ptr->zlib_method = method; |
1286 | 0 | } |
1287 | | #endif /* WRITE_CUSTOMIZE_COMPRESSION */ |
1288 | | |
1289 | | /* The following were added to libpng-1.5.4 */ |
1290 | | #ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED |
1291 | | void PNGAPI |
1292 | | png_set_text_compression_level(png_structrp png_ptr, int level) |
1293 | 0 | { |
1294 | 0 | png_debug(1, "in png_set_text_compression_level"); |
1295 | |
|
1296 | 0 | if (png_ptr == NULL) |
1297 | 0 | return; |
1298 | | |
1299 | 0 | png_ptr->zlib_text_level = level; |
1300 | 0 | } |
1301 | | |
1302 | | void PNGAPI |
1303 | | png_set_text_compression_mem_level(png_structrp png_ptr, int mem_level) |
1304 | 0 | { |
1305 | 0 | png_debug(1, "in png_set_text_compression_mem_level"); |
1306 | |
|
1307 | 0 | if (png_ptr == NULL) |
1308 | 0 | return; |
1309 | | |
1310 | 0 | png_ptr->zlib_text_mem_level = mem_level; |
1311 | 0 | } |
1312 | | |
1313 | | void PNGAPI |
1314 | | png_set_text_compression_strategy(png_structrp png_ptr, int strategy) |
1315 | 0 | { |
1316 | 0 | png_debug(1, "in png_set_text_compression_strategy"); |
1317 | |
|
1318 | 0 | if (png_ptr == NULL) |
1319 | 0 | return; |
1320 | | |
1321 | 0 | png_ptr->zlib_text_strategy = strategy; |
1322 | 0 | } |
1323 | | |
1324 | | /* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a |
1325 | | * smaller value of window_bits if it can do so safely. |
1326 | | */ |
1327 | | void PNGAPI |
1328 | | png_set_text_compression_window_bits(png_structrp png_ptr, int window_bits) |
1329 | 0 | { |
1330 | 0 | png_debug(1, "in png_set_text_compression_window_bits"); |
1331 | |
|
1332 | 0 | if (png_ptr == NULL) |
1333 | 0 | return; |
1334 | | |
1335 | 0 | if (window_bits > 15) |
1336 | 0 | { |
1337 | 0 | png_warning(png_ptr, "Only compression windows <= 32k supported by PNG"); |
1338 | 0 | window_bits = 15; |
1339 | 0 | } |
1340 | | |
1341 | 0 | else if (window_bits < 8) |
1342 | 0 | { |
1343 | 0 | png_warning(png_ptr, "Only compression windows >= 256 supported by PNG"); |
1344 | 0 | window_bits = 8; |
1345 | 0 | } |
1346 | |
|
1347 | 0 | png_ptr->zlib_text_window_bits = window_bits; |
1348 | 0 | } |
1349 | | |
1350 | | void PNGAPI |
1351 | | png_set_text_compression_method(png_structrp png_ptr, int method) |
1352 | 0 | { |
1353 | 0 | png_debug(1, "in png_set_text_compression_method"); |
1354 | |
|
1355 | 0 | if (png_ptr == NULL) |
1356 | 0 | return; |
1357 | | |
1358 | 0 | if (method != 8) |
1359 | 0 | png_warning(png_ptr, "Only compression method 8 is supported by PNG"); |
1360 | |
|
1361 | 0 | png_ptr->zlib_text_method = method; |
1362 | 0 | } |
1363 | | #endif /* WRITE_CUSTOMIZE_ZTXT_COMPRESSION */ |
1364 | | /* end of API added to libpng-1.5.4 */ |
1365 | | |
1366 | | void PNGAPI |
1367 | | png_set_write_status_fn(png_structrp png_ptr, png_write_status_ptr write_row_fn) |
1368 | 0 | { |
1369 | 0 | png_debug(1, "in png_set_write_status_fn"); |
1370 | |
|
1371 | 0 | if (png_ptr == NULL) |
1372 | 0 | return; |
1373 | | |
1374 | 0 | png_ptr->write_row_fn = write_row_fn; |
1375 | 0 | } |
1376 | | |
1377 | | #ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED |
1378 | | void PNGAPI |
1379 | | png_set_write_user_transform_fn(png_structrp png_ptr, png_user_transform_ptr |
1380 | | write_user_transform_fn) |
1381 | 0 | { |
1382 | 0 | png_debug(1, "in png_set_write_user_transform_fn"); |
1383 | |
|
1384 | 0 | if (png_ptr == NULL) |
1385 | 0 | return; |
1386 | | |
1387 | 0 | png_ptr->transformations |= PNG_USER_TRANSFORM; |
1388 | 0 | png_ptr->write_user_transform_fn = write_user_transform_fn; |
1389 | 0 | } |
1390 | | #endif |
1391 | | |
1392 | | |
1393 | | #ifdef PNG_INFO_IMAGE_SUPPORTED |
1394 | | void PNGAPI |
1395 | | png_write_png(png_structrp png_ptr, png_inforp info_ptr, |
1396 | | int transforms, voidp params) |
1397 | 0 | { |
1398 | 0 | png_debug(1, "in png_write_png"); |
1399 | |
|
1400 | 0 | if (png_ptr == NULL || info_ptr == NULL) |
1401 | 0 | return; |
1402 | | |
1403 | 0 | if ((info_ptr->valid & PNG_INFO_IDAT) == 0) |
1404 | 0 | { |
1405 | 0 | png_app_error(png_ptr, "no rows for png_write_image to write"); |
1406 | 0 | return; |
1407 | 0 | } |
1408 | | |
1409 | | /* Write the file header information. */ |
1410 | 0 | png_write_info(png_ptr, info_ptr); |
1411 | | |
1412 | | /* ------ these transformations don't touch the info structure ------- */ |
1413 | | |
1414 | | /* Invert monochrome pixels */ |
1415 | 0 | if ((transforms & PNG_TRANSFORM_INVERT_MONO) != 0) |
1416 | 0 | #ifdef PNG_WRITE_INVERT_SUPPORTED |
1417 | 0 | png_set_invert_mono(png_ptr); |
1418 | | #else |
1419 | | png_app_error(png_ptr, "PNG_TRANSFORM_INVERT_MONO not supported"); |
1420 | | #endif |
1421 | | |
1422 | | /* Shift the pixels up to a legal bit depth and fill in |
1423 | | * as appropriate to correctly scale the image. |
1424 | | */ |
1425 | 0 | if ((transforms & PNG_TRANSFORM_SHIFT) != 0) |
1426 | 0 | #ifdef PNG_WRITE_SHIFT_SUPPORTED |
1427 | 0 | if ((info_ptr->valid & PNG_INFO_sBIT) != 0) |
1428 | 0 | png_set_shift(png_ptr, &info_ptr->sig_bit); |
1429 | | #else |
1430 | | png_app_error(png_ptr, "PNG_TRANSFORM_SHIFT not supported"); |
1431 | | #endif |
1432 | | |
1433 | | /* Pack pixels into bytes */ |
1434 | 0 | if ((transforms & PNG_TRANSFORM_PACKING) != 0) |
1435 | 0 | #ifdef PNG_WRITE_PACK_SUPPORTED |
1436 | 0 | png_set_packing(png_ptr); |
1437 | | #else |
1438 | | png_app_error(png_ptr, "PNG_TRANSFORM_PACKING not supported"); |
1439 | | #endif |
1440 | | |
1441 | | /* Swap location of alpha bytes from ARGB to RGBA */ |
1442 | 0 | if ((transforms & PNG_TRANSFORM_SWAP_ALPHA) != 0) |
1443 | 0 | #ifdef PNG_WRITE_SWAP_ALPHA_SUPPORTED |
1444 | 0 | png_set_swap_alpha(png_ptr); |
1445 | | #else |
1446 | | png_app_error(png_ptr, "PNG_TRANSFORM_SWAP_ALPHA not supported"); |
1447 | | #endif |
1448 | | |
1449 | | /* Remove a filler (X) from XRGB/RGBX/AG/GA into to convert it into |
1450 | | * RGB, note that the code expects the input color type to be G or RGB; no |
1451 | | * alpha channel. |
1452 | | */ |
1453 | 0 | if ((transforms & (PNG_TRANSFORM_STRIP_FILLER_AFTER| |
1454 | 0 | PNG_TRANSFORM_STRIP_FILLER_BEFORE)) != 0) |
1455 | 0 | { |
1456 | 0 | #ifdef PNG_WRITE_FILLER_SUPPORTED |
1457 | 0 | if ((transforms & PNG_TRANSFORM_STRIP_FILLER_AFTER) != 0) |
1458 | 0 | { |
1459 | 0 | if ((transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE) != 0) |
1460 | 0 | png_app_error(png_ptr, |
1461 | 0 | "PNG_TRANSFORM_STRIP_FILLER: BEFORE+AFTER not supported"); |
1462 | | |
1463 | | /* Continue if ignored - this is the pre-1.6.10 behavior */ |
1464 | 0 | png_set_filler(png_ptr, 0, PNG_FILLER_AFTER); |
1465 | 0 | } |
1466 | | |
1467 | 0 | else if ((transforms & PNG_TRANSFORM_STRIP_FILLER_BEFORE) != 0) |
1468 | 0 | png_set_filler(png_ptr, 0, PNG_FILLER_BEFORE); |
1469 | | #else |
1470 | | png_app_error(png_ptr, "PNG_TRANSFORM_STRIP_FILLER not supported"); |
1471 | | #endif |
1472 | 0 | } |
1473 | | |
1474 | | /* Flip BGR pixels to RGB */ |
1475 | 0 | if ((transforms & PNG_TRANSFORM_BGR) != 0) |
1476 | 0 | #ifdef PNG_WRITE_BGR_SUPPORTED |
1477 | 0 | png_set_bgr(png_ptr); |
1478 | | #else |
1479 | | png_app_error(png_ptr, "PNG_TRANSFORM_BGR not supported"); |
1480 | | #endif |
1481 | | |
1482 | | /* Swap bytes of 16-bit files to most significant byte first */ |
1483 | 0 | if ((transforms & PNG_TRANSFORM_SWAP_ENDIAN) != 0) |
1484 | 0 | #ifdef PNG_WRITE_SWAP_SUPPORTED |
1485 | 0 | png_set_swap(png_ptr); |
1486 | | #else |
1487 | | png_app_error(png_ptr, "PNG_TRANSFORM_SWAP_ENDIAN not supported"); |
1488 | | #endif |
1489 | | |
1490 | | /* Swap bits of 1-bit, 2-bit, 4-bit packed pixel formats */ |
1491 | 0 | if ((transforms & PNG_TRANSFORM_PACKSWAP) != 0) |
1492 | 0 | #ifdef PNG_WRITE_PACKSWAP_SUPPORTED |
1493 | 0 | png_set_packswap(png_ptr); |
1494 | | #else |
1495 | | png_app_error(png_ptr, "PNG_TRANSFORM_PACKSWAP not supported"); |
1496 | | #endif |
1497 | | |
1498 | | /* Invert the alpha channel from opacity to transparency */ |
1499 | 0 | if ((transforms & PNG_TRANSFORM_INVERT_ALPHA) != 0) |
1500 | 0 | #ifdef PNG_WRITE_INVERT_ALPHA_SUPPORTED |
1501 | 0 | png_set_invert_alpha(png_ptr); |
1502 | | #else |
1503 | | png_app_error(png_ptr, "PNG_TRANSFORM_INVERT_ALPHA not supported"); |
1504 | | #endif |
1505 | | |
1506 | | /* ----------------------- end of transformations ------------------- */ |
1507 | | |
1508 | | /* Write the bits */ |
1509 | 0 | png_write_image(png_ptr, info_ptr->row_pointers); |
1510 | | |
1511 | | /* It is REQUIRED to call this to finish writing the rest of the file */ |
1512 | 0 | png_write_end(png_ptr, info_ptr); |
1513 | |
|
1514 | 0 | PNG_UNUSED(params) |
1515 | 0 | } |
1516 | | #endif |
1517 | | |
1518 | | |
1519 | | #ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED |
1520 | | /* Initialize the write structure - general purpose utility. */ |
1521 | | static int |
1522 | | png_image_write_init(png_imagep image) |
1523 | 0 | { |
1524 | 0 | png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, image, |
1525 | 0 | png_safe_error, png_safe_warning); |
1526 | |
|
1527 | 0 | if (png_ptr != NULL) |
1528 | 0 | { |
1529 | 0 | png_infop info_ptr = png_create_info_struct(png_ptr); |
1530 | |
|
1531 | 0 | if (info_ptr != NULL) |
1532 | 0 | { |
1533 | 0 | png_controlp control = png_voidcast(png_controlp, |
1534 | 0 | png_malloc_warn(png_ptr, (sizeof *control))); |
1535 | |
|
1536 | 0 | if (control != NULL) |
1537 | 0 | { |
1538 | 0 | memset(control, 0, (sizeof *control)); |
1539 | |
|
1540 | 0 | control->png_ptr = png_ptr; |
1541 | 0 | control->info_ptr = info_ptr; |
1542 | 0 | control->for_write = 1; |
1543 | |
|
1544 | 0 | image->opaque = control; |
1545 | 0 | return 1; |
1546 | 0 | } |
1547 | | |
1548 | | /* Error clean up */ |
1549 | 0 | png_destroy_info_struct(png_ptr, &info_ptr); |
1550 | 0 | } |
1551 | | |
1552 | 0 | png_destroy_write_struct(&png_ptr, NULL); |
1553 | 0 | } |
1554 | | |
1555 | 0 | return png_image_error(image, "png_image_write_: out of memory"); |
1556 | 0 | } |
1557 | | |
1558 | | /* Arguments to png_image_write_main: */ |
1559 | | typedef struct |
1560 | | { |
1561 | | /* Arguments: */ |
1562 | | png_imagep image; |
1563 | | png_const_voidp buffer; |
1564 | | png_int_32 row_stride; |
1565 | | png_const_voidp colormap; |
1566 | | int convert_to_8bit; |
1567 | | /* Local variables: */ |
1568 | | png_const_voidp first_row; |
1569 | | ptrdiff_t row_bytes; |
1570 | | png_voidp local_row; |
1571 | | /* Byte count for memory writing */ |
1572 | | png_bytep memory; |
1573 | | png_alloc_size_t memory_bytes; /* not used for STDIO */ |
1574 | | png_alloc_size_t output_bytes; /* running total */ |
1575 | | } png_image_write_control; |
1576 | | |
1577 | | /* Write png_uint_16 input to a 16-bit PNG; the png_ptr has already been set to |
1578 | | * do any necessary byte swapping. The component order is defined by the |
1579 | | * png_image format value. |
1580 | | */ |
1581 | | static int |
1582 | | png_write_image_16bit(png_voidp argument) |
1583 | 0 | { |
1584 | 0 | png_image_write_control *display = png_voidcast(png_image_write_control*, |
1585 | 0 | argument); |
1586 | 0 | png_imagep image = display->image; |
1587 | 0 | png_structrp png_ptr = image->opaque->png_ptr; |
1588 | |
|
1589 | 0 | png_const_uint_16p input_row = png_voidcast(png_const_uint_16p, |
1590 | 0 | display->first_row); |
1591 | 0 | png_uint_16p output_row = png_voidcast(png_uint_16p, display->local_row); |
1592 | 0 | png_uint_16p row_end; |
1593 | 0 | unsigned int channels = (image->format & PNG_FORMAT_FLAG_COLOR) != 0 ? |
1594 | 0 | 3 : 1; |
1595 | 0 | int aindex = 0; |
1596 | 0 | png_uint_32 y = image->height; |
1597 | |
|
1598 | 0 | if ((image->format & PNG_FORMAT_FLAG_ALPHA) != 0) |
1599 | 0 | { |
1600 | 0 | # ifdef PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED |
1601 | 0 | if ((image->format & PNG_FORMAT_FLAG_AFIRST) != 0) |
1602 | 0 | { |
1603 | 0 | aindex = -1; |
1604 | 0 | ++input_row; /* To point to the first component */ |
1605 | 0 | ++output_row; |
1606 | 0 | } |
1607 | 0 | else |
1608 | 0 | aindex = (int)channels; |
1609 | | # else |
1610 | | aindex = (int)channels; |
1611 | | # endif |
1612 | 0 | } |
1613 | | |
1614 | 0 | else |
1615 | 0 | png_error(png_ptr, "png_write_image: internal call error"); |
1616 | | |
1617 | | /* Work out the output row end and count over this, note that the increment |
1618 | | * above to 'row' means that row_end can actually be beyond the end of the |
1619 | | * row; this is correct. |
1620 | | */ |
1621 | 0 | row_end = output_row + image->width * (channels+1); |
1622 | |
|
1623 | 0 | for (; y > 0; --y) |
1624 | 0 | { |
1625 | 0 | png_const_uint_16p in_ptr = input_row; |
1626 | 0 | png_uint_16p out_ptr = output_row; |
1627 | |
|
1628 | 0 | while (out_ptr < row_end) |
1629 | 0 | { |
1630 | 0 | png_uint_16 alpha = in_ptr[aindex]; |
1631 | 0 | png_uint_32 reciprocal = 0; |
1632 | 0 | int c; |
1633 | |
|
1634 | 0 | out_ptr[aindex] = alpha; |
1635 | | |
1636 | | /* Calculate a reciprocal. The correct calculation is simply |
1637 | | * component/alpha*65535 << 15. (I.e. 15 bits of precision); this |
1638 | | * allows correct rounding by adding .5 before the shift. 'reciprocal' |
1639 | | * is only initialized when required. |
1640 | | */ |
1641 | 0 | if (alpha > 0 && alpha < 65535) |
1642 | 0 | reciprocal = ((0xffff<<15)+(alpha>>1))/alpha; |
1643 | |
|
1644 | 0 | c = (int)channels; |
1645 | 0 | do /* always at least one channel */ |
1646 | 0 | { |
1647 | 0 | png_uint_16 component = *in_ptr++; |
1648 | | |
1649 | | /* The following gives 65535 for an alpha of 0, which is fine, |
1650 | | * otherwise if 0/0 is represented as some other value there is more |
1651 | | * likely to be a discontinuity which will probably damage |
1652 | | * compression when moving from a fully transparent area to a |
1653 | | * nearly transparent one. (The assumption here is that opaque |
1654 | | * areas tend not to be 0 intensity.) |
1655 | | */ |
1656 | 0 | if (component >= alpha) |
1657 | 0 | component = 65535; |
1658 | | |
1659 | | /* component<alpha, so component/alpha is less than one and |
1660 | | * component*reciprocal is less than 2^31. |
1661 | | */ |
1662 | 0 | else if (component > 0 && alpha < 65535) |
1663 | 0 | { |
1664 | 0 | png_uint_32 calc = component * reciprocal; |
1665 | 0 | calc += 16384; /* round to nearest */ |
1666 | 0 | component = (png_uint_16)(calc >> 15); |
1667 | 0 | } |
1668 | |
|
1669 | 0 | *out_ptr++ = component; |
1670 | 0 | } |
1671 | 0 | while (--c > 0); |
1672 | | |
1673 | | /* Skip to next component (skip the intervening alpha channel) */ |
1674 | 0 | ++in_ptr; |
1675 | 0 | ++out_ptr; |
1676 | 0 | } |
1677 | |
|
1678 | 0 | png_write_row(png_ptr, png_voidcast(png_const_bytep, display->local_row)); |
1679 | 0 | input_row += (png_uint_16)display->row_bytes/(sizeof (png_uint_16)); |
1680 | 0 | } |
1681 | |
|
1682 | 0 | return 1; |
1683 | 0 | } |
1684 | | |
1685 | | /* Given 16-bit input (1 to 4 channels) write 8-bit output. If an alpha channel |
1686 | | * is present it must be removed from the components, the components are then |
1687 | | * written in sRGB encoding. No components are added or removed. |
1688 | | * |
1689 | | * Calculate an alpha reciprocal to reverse pre-multiplication. As above the |
1690 | | * calculation can be done to 15 bits of accuracy; however, the output needs to |
1691 | | * be scaled in the range 0..255*65535, so include that scaling here. |
1692 | | */ |
1693 | 0 | # define UNP_RECIPROCAL(alpha) ((((0xffff*0xff)<<7)+((alpha)>>1))/(alpha)) |
1694 | | |
1695 | | static png_byte |
1696 | | png_unpremultiply(png_uint_32 component, png_uint_32 alpha, |
1697 | | png_uint_32 reciprocal/*from the above macro*/) |
1698 | 0 | { |
1699 | | /* The following gives 1.0 for an alpha of 0, which is fine, otherwise if 0/0 |
1700 | | * is represented as some other value there is more likely to be a |
1701 | | * discontinuity which will probably damage compression when moving from a |
1702 | | * fully transparent area to a nearly transparent one. (The assumption here |
1703 | | * is that opaque areas tend not to be 0 intensity.) |
1704 | | * |
1705 | | * There is a rounding problem here; if alpha is less than 128 it will end up |
1706 | | * as 0 when scaled to 8 bits. To avoid introducing spurious colors into the |
1707 | | * output change for this too. |
1708 | | */ |
1709 | 0 | if (component >= alpha || alpha < 128) |
1710 | 0 | return 255; |
1711 | | |
1712 | | /* component<alpha, so component/alpha is less than one and |
1713 | | * component*reciprocal is less than 2^31. |
1714 | | */ |
1715 | 0 | else if (component > 0) |
1716 | 0 | { |
1717 | | /* The test is that alpha/257 (rounded) is less than 255, the first value |
1718 | | * that becomes 255 is 65407. |
1719 | | * NOTE: this must agree with the PNG_DIV257 macro (which must, therefore, |
1720 | | * be exact!) [Could also test reciprocal != 0] |
1721 | | */ |
1722 | 0 | if (alpha < 65407) |
1723 | 0 | { |
1724 | 0 | component *= reciprocal; |
1725 | 0 | component += 64; /* round to nearest */ |
1726 | 0 | component >>= 7; |
1727 | 0 | } |
1728 | | |
1729 | 0 | else |
1730 | 0 | component *= 255; |
1731 | | |
1732 | | /* Convert the component to sRGB. */ |
1733 | 0 | return (png_byte)PNG_sRGB_FROM_LINEAR(component); |
1734 | 0 | } |
1735 | | |
1736 | 0 | else |
1737 | 0 | return 0; |
1738 | 0 | } |
1739 | | |
1740 | | static int |
1741 | | png_write_image_8bit(png_voidp argument) |
1742 | 0 | { |
1743 | 0 | png_image_write_control *display = png_voidcast(png_image_write_control*, |
1744 | 0 | argument); |
1745 | 0 | png_imagep image = display->image; |
1746 | 0 | png_structrp png_ptr = image->opaque->png_ptr; |
1747 | |
|
1748 | 0 | png_const_uint_16p input_row = png_voidcast(png_const_uint_16p, |
1749 | 0 | display->first_row); |
1750 | 0 | png_bytep output_row = png_voidcast(png_bytep, display->local_row); |
1751 | 0 | png_uint_32 y = image->height; |
1752 | 0 | unsigned int channels = (image->format & PNG_FORMAT_FLAG_COLOR) != 0 ? |
1753 | 0 | 3 : 1; |
1754 | |
|
1755 | 0 | if ((image->format & PNG_FORMAT_FLAG_ALPHA) != 0) |
1756 | 0 | { |
1757 | 0 | png_bytep row_end; |
1758 | 0 | int aindex; |
1759 | |
|
1760 | 0 | # ifdef PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED |
1761 | 0 | if ((image->format & PNG_FORMAT_FLAG_AFIRST) != 0) |
1762 | 0 | { |
1763 | 0 | aindex = -1; |
1764 | 0 | ++input_row; /* To point to the first component */ |
1765 | 0 | ++output_row; |
1766 | 0 | } |
1767 | | |
1768 | 0 | else |
1769 | 0 | # endif |
1770 | 0 | aindex = (int)channels; |
1771 | | |
1772 | | /* Use row_end in place of a loop counter: */ |
1773 | 0 | row_end = output_row + image->width * (channels+1); |
1774 | |
|
1775 | 0 | for (; y > 0; --y) |
1776 | 0 | { |
1777 | 0 | png_const_uint_16p in_ptr = input_row; |
1778 | 0 | png_bytep out_ptr = output_row; |
1779 | |
|
1780 | 0 | while (out_ptr < row_end) |
1781 | 0 | { |
1782 | 0 | png_uint_16 alpha = in_ptr[aindex]; |
1783 | 0 | png_byte alphabyte = (png_byte)PNG_DIV257(alpha); |
1784 | 0 | png_uint_32 reciprocal = 0; |
1785 | 0 | int c; |
1786 | | |
1787 | | /* Scale and write the alpha channel. */ |
1788 | 0 | out_ptr[aindex] = alphabyte; |
1789 | |
|
1790 | 0 | if (alphabyte > 0 && alphabyte < 255) |
1791 | 0 | reciprocal = UNP_RECIPROCAL(alpha); |
1792 | |
|
1793 | 0 | c = (int)channels; |
1794 | 0 | do /* always at least one channel */ |
1795 | 0 | *out_ptr++ = png_unpremultiply(*in_ptr++, alpha, reciprocal); |
1796 | 0 | while (--c > 0); |
1797 | | |
1798 | | /* Skip to next component (skip the intervening alpha channel) */ |
1799 | 0 | ++in_ptr; |
1800 | 0 | ++out_ptr; |
1801 | 0 | } /* while out_ptr < row_end */ |
1802 | |
|
1803 | 0 | png_write_row(png_ptr, png_voidcast(png_const_bytep, |
1804 | 0 | display->local_row)); |
1805 | 0 | input_row += (png_uint_16)display->row_bytes/(sizeof (png_uint_16)); |
1806 | 0 | } /* while y */ |
1807 | 0 | } |
1808 | | |
1809 | 0 | else |
1810 | 0 | { |
1811 | | /* No alpha channel, so the row_end really is the end of the row and it |
1812 | | * is sufficient to loop over the components one by one. |
1813 | | */ |
1814 | 0 | png_bytep row_end = output_row + image->width * channels; |
1815 | |
|
1816 | 0 | for (; y > 0; --y) |
1817 | 0 | { |
1818 | 0 | png_const_uint_16p in_ptr = input_row; |
1819 | 0 | png_bytep out_ptr = output_row; |
1820 | |
|
1821 | 0 | while (out_ptr < row_end) |
1822 | 0 | { |
1823 | 0 | png_uint_32 component = *in_ptr++; |
1824 | |
|
1825 | 0 | component *= 255; |
1826 | 0 | *out_ptr++ = (png_byte)PNG_sRGB_FROM_LINEAR(component); |
1827 | 0 | } |
1828 | |
|
1829 | 0 | png_write_row(png_ptr, output_row); |
1830 | 0 | input_row += (png_uint_16)display->row_bytes/(sizeof (png_uint_16)); |
1831 | 0 | } |
1832 | 0 | } |
1833 | |
|
1834 | 0 | return 1; |
1835 | 0 | } |
1836 | | |
1837 | | static void |
1838 | | png_image_set_PLTE(png_image_write_control *display) |
1839 | 0 | { |
1840 | 0 | png_imagep image = display->image; |
1841 | 0 | const void *cmap = display->colormap; |
1842 | 0 | int entries = image->colormap_entries > 256 ? 256 : |
1843 | 0 | (int)image->colormap_entries; |
1844 | | |
1845 | | /* NOTE: the caller must check for cmap != NULL and entries != 0 */ |
1846 | 0 | png_uint_32 format = image->format; |
1847 | 0 | unsigned int channels = PNG_IMAGE_SAMPLE_CHANNELS(format); |
1848 | |
|
1849 | 0 | # if defined(PNG_FORMAT_BGR_SUPPORTED) &&\ |
1850 | 0 | defined(PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED) |
1851 | 0 | int afirst = (format & PNG_FORMAT_FLAG_AFIRST) != 0 && |
1852 | 0 | (format & PNG_FORMAT_FLAG_ALPHA) != 0; |
1853 | | # else |
1854 | | # define afirst 0 |
1855 | | # endif |
1856 | |
|
1857 | 0 | # ifdef PNG_FORMAT_BGR_SUPPORTED |
1858 | 0 | int bgr = (format & PNG_FORMAT_FLAG_BGR) != 0 ? 2 : 0; |
1859 | | # else |
1860 | | # define bgr 0 |
1861 | | # endif |
1862 | |
|
1863 | 0 | int i, num_trans; |
1864 | 0 | png_color palette[256]; |
1865 | 0 | png_byte tRNS[256]; |
1866 | |
|
1867 | 0 | memset(tRNS, 255, (sizeof tRNS)); |
1868 | 0 | memset(palette, 0, (sizeof palette)); |
1869 | |
|
1870 | 0 | for (i=num_trans=0; i<entries; ++i) |
1871 | 0 | { |
1872 | | /* This gets automatically converted to sRGB with reversal of the |
1873 | | * pre-multiplication if the color-map has an alpha channel. |
1874 | | */ |
1875 | 0 | if ((format & PNG_FORMAT_FLAG_LINEAR) != 0) |
1876 | 0 | { |
1877 | 0 | png_const_uint_16p entry = png_voidcast(png_const_uint_16p, cmap); |
1878 | |
|
1879 | 0 | entry += (unsigned int)i * channels; |
1880 | |
|
1881 | 0 | if ((channels & 1) != 0) /* no alpha */ |
1882 | 0 | { |
1883 | 0 | if (channels >= 3) /* RGB */ |
1884 | 0 | { |
1885 | 0 | palette[i].blue = (png_byte)PNG_sRGB_FROM_LINEAR(255 * |
1886 | 0 | entry[(2 ^ bgr)]); |
1887 | 0 | palette[i].green = (png_byte)PNG_sRGB_FROM_LINEAR(255 * |
1888 | 0 | entry[1]); |
1889 | 0 | palette[i].red = (png_byte)PNG_sRGB_FROM_LINEAR(255 * |
1890 | 0 | entry[bgr]); |
1891 | 0 | } |
1892 | | |
1893 | 0 | else /* Gray */ |
1894 | 0 | palette[i].blue = palette[i].red = palette[i].green = |
1895 | 0 | (png_byte)PNG_sRGB_FROM_LINEAR(255 * *entry); |
1896 | 0 | } |
1897 | | |
1898 | 0 | else /* alpha */ |
1899 | 0 | { |
1900 | 0 | png_uint_16 alpha = entry[afirst ? 0 : channels-1]; |
1901 | 0 | png_byte alphabyte = (png_byte)PNG_DIV257(alpha); |
1902 | 0 | png_uint_32 reciprocal = 0; |
1903 | | |
1904 | | /* Calculate a reciprocal, as in the png_write_image_8bit code above |
1905 | | * this is designed to produce a value scaled to 255*65535 when |
1906 | | * divided by 128 (i.e. asr 7). |
1907 | | */ |
1908 | 0 | if (alphabyte > 0 && alphabyte < 255) |
1909 | 0 | reciprocal = (((0xffff*0xff)<<7)+(alpha>>1))/alpha; |
1910 | |
|
1911 | 0 | tRNS[i] = alphabyte; |
1912 | 0 | if (alphabyte < 255) |
1913 | 0 | num_trans = i+1; |
1914 | |
|
1915 | 0 | if (channels >= 3) /* RGB */ |
1916 | 0 | { |
1917 | 0 | palette[i].blue = png_unpremultiply(entry[afirst + (2 ^ bgr)], |
1918 | 0 | alpha, reciprocal); |
1919 | 0 | palette[i].green = png_unpremultiply(entry[afirst + 1], alpha, |
1920 | 0 | reciprocal); |
1921 | 0 | palette[i].red = png_unpremultiply(entry[afirst + bgr], alpha, |
1922 | 0 | reciprocal); |
1923 | 0 | } |
1924 | | |
1925 | 0 | else /* gray */ |
1926 | 0 | palette[i].blue = palette[i].red = palette[i].green = |
1927 | 0 | png_unpremultiply(entry[afirst], alpha, reciprocal); |
1928 | 0 | } |
1929 | 0 | } |
1930 | | |
1931 | 0 | else /* Color-map has sRGB values */ |
1932 | 0 | { |
1933 | 0 | png_const_bytep entry = png_voidcast(png_const_bytep, cmap); |
1934 | |
|
1935 | 0 | entry += (unsigned int)i * channels; |
1936 | |
|
1937 | 0 | switch (channels) |
1938 | 0 | { |
1939 | 0 | case 4: |
1940 | 0 | tRNS[i] = entry[afirst ? 0 : 3]; |
1941 | 0 | if (tRNS[i] < 255) |
1942 | 0 | num_trans = i+1; |
1943 | | /* FALLTHROUGH */ |
1944 | 0 | case 3: |
1945 | 0 | palette[i].blue = entry[afirst + (2 ^ bgr)]; |
1946 | 0 | palette[i].green = entry[afirst + 1]; |
1947 | 0 | palette[i].red = entry[afirst + bgr]; |
1948 | 0 | break; |
1949 | | |
1950 | 0 | case 2: |
1951 | 0 | tRNS[i] = entry[1 ^ afirst]; |
1952 | 0 | if (tRNS[i] < 255) |
1953 | 0 | num_trans = i+1; |
1954 | | /* FALLTHROUGH */ |
1955 | 0 | case 1: |
1956 | 0 | palette[i].blue = palette[i].red = palette[i].green = |
1957 | 0 | entry[afirst]; |
1958 | 0 | break; |
1959 | | |
1960 | 0 | default: |
1961 | 0 | break; |
1962 | 0 | } |
1963 | 0 | } |
1964 | 0 | } |
1965 | | |
1966 | | # ifdef afirst |
1967 | | # undef afirst |
1968 | | # endif |
1969 | | # ifdef bgr |
1970 | | # undef bgr |
1971 | | # endif |
1972 | | |
1973 | 0 | png_set_PLTE(image->opaque->png_ptr, image->opaque->info_ptr, palette, |
1974 | 0 | entries); |
1975 | |
|
1976 | 0 | if (num_trans > 0) |
1977 | 0 | png_set_tRNS(image->opaque->png_ptr, image->opaque->info_ptr, tRNS, |
1978 | 0 | num_trans, NULL); |
1979 | |
|
1980 | 0 | image->colormap_entries = (png_uint_32)entries; |
1981 | 0 | } |
1982 | | |
1983 | | static int |
1984 | | png_image_write_main(png_voidp argument) |
1985 | 0 | { |
1986 | 0 | png_image_write_control *display = png_voidcast(png_image_write_control*, |
1987 | 0 | argument); |
1988 | 0 | png_imagep image = display->image; |
1989 | 0 | png_structrp png_ptr = image->opaque->png_ptr; |
1990 | 0 | png_inforp info_ptr = image->opaque->info_ptr; |
1991 | 0 | png_uint_32 format = image->format; |
1992 | | |
1993 | | /* The following four ints are actually booleans */ |
1994 | 0 | int colormap = (format & PNG_FORMAT_FLAG_COLORMAP); |
1995 | 0 | int linear = !colormap && (format & PNG_FORMAT_FLAG_LINEAR); /* input */ |
1996 | 0 | int alpha = !colormap && (format & PNG_FORMAT_FLAG_ALPHA); |
1997 | 0 | int write_16bit = linear && (display->convert_to_8bit == 0); |
1998 | |
|
1999 | 0 | # ifdef PNG_BENIGN_ERRORS_SUPPORTED |
2000 | | /* Make sure we error out on any bad situation */ |
2001 | 0 | png_set_benign_errors(png_ptr, 0/*error*/); |
2002 | 0 | # endif |
2003 | | |
2004 | | /* Default the 'row_stride' parameter if required, also check the row stride |
2005 | | * and total image size to ensure that they are within the system limits. |
2006 | | */ |
2007 | 0 | { |
2008 | 0 | unsigned int channels = PNG_IMAGE_PIXEL_CHANNELS(image->format); |
2009 | |
|
2010 | 0 | if (image->width <= 0x7fffffffU/channels) /* no overflow */ |
2011 | 0 | { |
2012 | 0 | png_uint_32 check; |
2013 | 0 | png_uint_32 png_row_stride = image->width * channels; |
2014 | |
|
2015 | 0 | if (display->row_stride == 0) |
2016 | 0 | display->row_stride = (png_int_32)/*SAFE*/png_row_stride; |
2017 | |
|
2018 | 0 | if (display->row_stride < 0) |
2019 | 0 | check = (png_uint_32)(-display->row_stride); |
2020 | | |
2021 | 0 | else |
2022 | 0 | check = (png_uint_32)display->row_stride; |
2023 | |
|
2024 | 0 | if (check >= png_row_stride) |
2025 | 0 | { |
2026 | | /* Now check for overflow of the image buffer calculation; this |
2027 | | * limits the whole image size to 32 bits for API compatibility with |
2028 | | * the current, 32-bit, PNG_IMAGE_BUFFER_SIZE macro. |
2029 | | */ |
2030 | 0 | if (image->height > 0xffffffffU/png_row_stride) |
2031 | 0 | png_error(image->opaque->png_ptr, "memory image too large"); |
2032 | 0 | } |
2033 | | |
2034 | 0 | else |
2035 | 0 | png_error(image->opaque->png_ptr, "supplied row stride too small"); |
2036 | 0 | } |
2037 | | |
2038 | 0 | else |
2039 | 0 | png_error(image->opaque->png_ptr, "image row stride too large"); |
2040 | 0 | } |
2041 | | |
2042 | | /* Set the required transforms then write the rows in the correct order. */ |
2043 | 0 | if ((format & PNG_FORMAT_FLAG_COLORMAP) != 0) |
2044 | 0 | { |
2045 | 0 | if (display->colormap != NULL && image->colormap_entries > 0) |
2046 | 0 | { |
2047 | 0 | png_uint_32 entries = image->colormap_entries; |
2048 | |
|
2049 | 0 | png_set_IHDR(png_ptr, info_ptr, image->width, image->height, |
2050 | 0 | entries > 16 ? 8 : (entries > 4 ? 4 : (entries > 2 ? 2 : 1)), |
2051 | 0 | PNG_COLOR_TYPE_PALETTE, PNG_INTERLACE_NONE, |
2052 | 0 | PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); |
2053 | |
|
2054 | 0 | png_image_set_PLTE(display); |
2055 | 0 | } |
2056 | | |
2057 | 0 | else |
2058 | 0 | png_error(image->opaque->png_ptr, |
2059 | 0 | "no color-map for color-mapped image"); |
2060 | 0 | } |
2061 | | |
2062 | 0 | else |
2063 | 0 | png_set_IHDR(png_ptr, info_ptr, image->width, image->height, |
2064 | 0 | write_16bit ? 16 : 8, |
2065 | 0 | ((format & PNG_FORMAT_FLAG_COLOR) ? PNG_COLOR_MASK_COLOR : 0) + |
2066 | 0 | ((format & PNG_FORMAT_FLAG_ALPHA) ? PNG_COLOR_MASK_ALPHA : 0), |
2067 | 0 | PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); |
2068 | | |
2069 | | /* Counter-intuitively the data transformations must be called *after* |
2070 | | * png_write_info, not before as in the read code, but the 'set' functions |
2071 | | * must still be called before. Just set the color space information, never |
2072 | | * write an interlaced image. |
2073 | | */ |
2074 | | |
2075 | 0 | if (write_16bit != 0) |
2076 | 0 | { |
2077 | | /* The gamma here is 1.0 (linear) and the cHRM chunk matches sRGB. */ |
2078 | 0 | png_set_gAMA_fixed(png_ptr, info_ptr, PNG_GAMMA_LINEAR); |
2079 | |
|
2080 | 0 | if ((image->flags & PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB) == 0) |
2081 | 0 | png_set_cHRM_fixed(png_ptr, info_ptr, |
2082 | | /* color x y */ |
2083 | 0 | /* white */ 31270, 32900, |
2084 | 0 | /* red */ 64000, 33000, |
2085 | 0 | /* green */ 30000, 60000, |
2086 | 0 | /* blue */ 15000, 6000 |
2087 | 0 | ); |
2088 | 0 | } |
2089 | | |
2090 | 0 | else if ((image->flags & PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB) == 0) |
2091 | 0 | png_set_sRGB(png_ptr, info_ptr, PNG_sRGB_INTENT_PERCEPTUAL); |
2092 | | |
2093 | | /* Else writing an 8-bit file and the *colors* aren't sRGB, but the 8-bit |
2094 | | * space must still be gamma encoded. |
2095 | | */ |
2096 | 0 | else |
2097 | 0 | png_set_gAMA_fixed(png_ptr, info_ptr, PNG_GAMMA_sRGB_INVERSE); |
2098 | | |
2099 | | /* Write the file header. */ |
2100 | 0 | png_write_info(png_ptr, info_ptr); |
2101 | | |
2102 | | /* Now set up the data transformations (*after* the header is written), |
2103 | | * remove the handled transformations from the 'format' flags for checking. |
2104 | | * |
2105 | | * First check for a little endian system if writing 16-bit files. |
2106 | | */ |
2107 | 0 | if (write_16bit != 0) |
2108 | 0 | { |
2109 | 0 | png_uint_16 le = 0x0001; |
2110 | |
|
2111 | 0 | if ((*(png_const_bytep) & le) != 0) |
2112 | 0 | png_set_swap(png_ptr); |
2113 | 0 | } |
2114 | |
|
2115 | 0 | # ifdef PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED |
2116 | 0 | if ((format & PNG_FORMAT_FLAG_BGR) != 0) |
2117 | 0 | { |
2118 | 0 | if (colormap == 0 && (format & PNG_FORMAT_FLAG_COLOR) != 0) |
2119 | 0 | png_set_bgr(png_ptr); |
2120 | 0 | format &= ~PNG_FORMAT_FLAG_BGR; |
2121 | 0 | } |
2122 | 0 | # endif |
2123 | |
|
2124 | 0 | # ifdef PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED |
2125 | 0 | if ((format & PNG_FORMAT_FLAG_AFIRST) != 0) |
2126 | 0 | { |
2127 | 0 | if (colormap == 0 && (format & PNG_FORMAT_FLAG_ALPHA) != 0) |
2128 | 0 | png_set_swap_alpha(png_ptr); |
2129 | 0 | format &= ~PNG_FORMAT_FLAG_AFIRST; |
2130 | 0 | } |
2131 | 0 | # endif |
2132 | | |
2133 | | /* If there are 16 or fewer color-map entries we wrote a lower bit depth |
2134 | | * above, but the application data is still byte packed. |
2135 | | */ |
2136 | 0 | if (colormap != 0 && image->colormap_entries <= 16) |
2137 | 0 | png_set_packing(png_ptr); |
2138 | | |
2139 | | /* That should have handled all (both) the transforms. */ |
2140 | 0 | if ((format & ~(png_uint_32)(PNG_FORMAT_FLAG_COLOR | PNG_FORMAT_FLAG_LINEAR | |
2141 | 0 | PNG_FORMAT_FLAG_ALPHA | PNG_FORMAT_FLAG_COLORMAP)) != 0) |
2142 | 0 | png_error(png_ptr, "png_write_image: unsupported transformation"); |
2143 | | |
2144 | 0 | { |
2145 | 0 | png_const_bytep row = png_voidcast(png_const_bytep, display->buffer); |
2146 | 0 | ptrdiff_t row_bytes = display->row_stride; |
2147 | |
|
2148 | 0 | if (linear != 0) |
2149 | 0 | row_bytes *= (sizeof (png_uint_16)); |
2150 | |
|
2151 | 0 | if (row_bytes < 0) |
2152 | 0 | row += (image->height-1) * (-row_bytes); |
2153 | |
|
2154 | 0 | display->first_row = row; |
2155 | 0 | display->row_bytes = row_bytes; |
2156 | 0 | } |
2157 | | |
2158 | | /* Apply 'fast' options if the flag is set. */ |
2159 | 0 | if ((image->flags & PNG_IMAGE_FLAG_FAST) != 0) |
2160 | 0 | { |
2161 | 0 | png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE, PNG_NO_FILTERS); |
2162 | | /* NOTE: determined by experiment using pngstest, this reflects some |
2163 | | * balance between the time to write the image once and the time to read |
2164 | | * it about 50 times. The speed-up in pngstest was about 10-20% of the |
2165 | | * total (user) time on a heavily loaded system. |
2166 | | */ |
2167 | 0 | # ifdef PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED |
2168 | 0 | png_set_compression_level(png_ptr, 3); |
2169 | 0 | # endif |
2170 | 0 | } |
2171 | | |
2172 | | /* Check for the cases that currently require a pre-transform on the row |
2173 | | * before it is written. This only applies when the input is 16-bit and |
2174 | | * either there is an alpha channel or it is converted to 8-bit. |
2175 | | */ |
2176 | 0 | if ((linear != 0 && alpha != 0 ) || |
2177 | 0 | (colormap == 0 && display->convert_to_8bit != 0)) |
2178 | 0 | { |
2179 | 0 | png_bytep row = png_voidcast(png_bytep, png_malloc(png_ptr, |
2180 | 0 | png_get_rowbytes(png_ptr, info_ptr))); |
2181 | 0 | int result; |
2182 | |
|
2183 | 0 | display->local_row = row; |
2184 | 0 | if (write_16bit != 0) |
2185 | 0 | result = png_safe_execute(image, png_write_image_16bit, display); |
2186 | 0 | else |
2187 | 0 | result = png_safe_execute(image, png_write_image_8bit, display); |
2188 | 0 | display->local_row = NULL; |
2189 | |
|
2190 | 0 | png_free(png_ptr, row); |
2191 | | |
2192 | | /* Skip the 'write_end' on error: */ |
2193 | 0 | if (result == 0) |
2194 | 0 | return 0; |
2195 | 0 | } |
2196 | | |
2197 | | /* Otherwise this is the case where the input is in a format currently |
2198 | | * supported by the rest of the libpng write code; call it directly. |
2199 | | */ |
2200 | 0 | else |
2201 | 0 | { |
2202 | 0 | png_const_bytep row = png_voidcast(png_const_bytep, display->first_row); |
2203 | 0 | ptrdiff_t row_bytes = display->row_bytes; |
2204 | 0 | png_uint_32 y = image->height; |
2205 | |
|
2206 | 0 | for (; y > 0; --y) |
2207 | 0 | { |
2208 | 0 | png_write_row(png_ptr, row); |
2209 | 0 | row += row_bytes; |
2210 | 0 | } |
2211 | 0 | } |
2212 | | |
2213 | 0 | png_write_end(png_ptr, info_ptr); |
2214 | 0 | return 1; |
2215 | 0 | } |
2216 | | |
2217 | | |
2218 | | static void (PNGCBAPI |
2219 | | image_memory_write)(png_structp png_ptr, png_bytep/*const*/ data, size_t size) |
2220 | 0 | { |
2221 | 0 | png_image_write_control *display = png_voidcast(png_image_write_control*, |
2222 | 0 | png_ptr->io_ptr/*backdoor: png_get_io_ptr(png_ptr)*/); |
2223 | 0 | png_alloc_size_t ob = display->output_bytes; |
2224 | | |
2225 | | /* Check for overflow; this should never happen: */ |
2226 | 0 | if (size <= ((png_alloc_size_t)-1) - ob) |
2227 | 0 | { |
2228 | | /* I don't think libpng ever does this, but just in case: */ |
2229 | 0 | if (size > 0) |
2230 | 0 | { |
2231 | 0 | if (display->memory_bytes >= ob+size) /* writing */ |
2232 | 0 | memcpy(display->memory+ob, data, size); |
2233 | | |
2234 | | /* Always update the size: */ |
2235 | 0 | display->output_bytes = ob+size; |
2236 | 0 | } |
2237 | 0 | } |
2238 | | |
2239 | 0 | else |
2240 | 0 | png_error(png_ptr, "png_image_write_to_memory: PNG too big"); |
2241 | 0 | } |
2242 | | |
2243 | | static void (PNGCBAPI |
2244 | | image_memory_flush)(png_structp png_ptr) |
2245 | 0 | { |
2246 | 0 | PNG_UNUSED(png_ptr) |
2247 | 0 | } |
2248 | | |
2249 | | static int |
2250 | | png_image_write_memory(png_voidp argument) |
2251 | 0 | { |
2252 | 0 | png_image_write_control *display = png_voidcast(png_image_write_control*, |
2253 | 0 | argument); |
2254 | | |
2255 | | /* The rest of the memory-specific init and write_main in an error protected |
2256 | | * environment. This case needs to use callbacks for the write operations |
2257 | | * since libpng has no built in support for writing to memory. |
2258 | | */ |
2259 | 0 | png_set_write_fn(display->image->opaque->png_ptr, display/*io_ptr*/, |
2260 | 0 | image_memory_write, image_memory_flush); |
2261 | |
|
2262 | 0 | return png_image_write_main(display); |
2263 | 0 | } |
2264 | | |
2265 | | int PNGAPI |
2266 | | png_image_write_to_memory(png_imagep image, void *memory, |
2267 | | png_alloc_size_t * PNG_RESTRICT memory_bytes, int convert_to_8bit, |
2268 | | const void *buffer, png_int_32 row_stride, const void *colormap) |
2269 | 0 | { |
2270 | | /* Write the image to the given buffer, or count the bytes if it is NULL */ |
2271 | 0 | if (image != NULL && image->version == PNG_IMAGE_VERSION) |
2272 | 0 | { |
2273 | 0 | if (memory_bytes != NULL && buffer != NULL) |
2274 | 0 | { |
2275 | | /* This is to give the caller an easier error detection in the NULL |
2276 | | * case and guard against uninitialized variable problems: |
2277 | | */ |
2278 | 0 | if (memory == NULL) |
2279 | 0 | *memory_bytes = 0; |
2280 | |
|
2281 | 0 | if (png_image_write_init(image) != 0) |
2282 | 0 | { |
2283 | 0 | png_image_write_control display; |
2284 | 0 | int result; |
2285 | |
|
2286 | 0 | memset(&display, 0, (sizeof display)); |
2287 | 0 | display.image = image; |
2288 | 0 | display.buffer = buffer; |
2289 | 0 | display.row_stride = row_stride; |
2290 | 0 | display.colormap = colormap; |
2291 | 0 | display.convert_to_8bit = convert_to_8bit; |
2292 | 0 | display.memory = png_voidcast(png_bytep, memory); |
2293 | 0 | display.memory_bytes = *memory_bytes; |
2294 | 0 | display.output_bytes = 0; |
2295 | |
|
2296 | 0 | result = png_safe_execute(image, png_image_write_memory, &display); |
2297 | 0 | png_image_free(image); |
2298 | | |
2299 | | /* write_memory returns true even if we ran out of buffer. */ |
2300 | 0 | if (result) |
2301 | 0 | { |
2302 | | /* On out-of-buffer this function returns '0' but still updates |
2303 | | * memory_bytes: |
2304 | | */ |
2305 | 0 | if (memory != NULL && display.output_bytes > *memory_bytes) |
2306 | 0 | result = 0; |
2307 | |
|
2308 | 0 | *memory_bytes = display.output_bytes; |
2309 | 0 | } |
2310 | |
|
2311 | 0 | return result; |
2312 | 0 | } |
2313 | | |
2314 | 0 | else |
2315 | 0 | return 0; |
2316 | 0 | } |
2317 | | |
2318 | 0 | else |
2319 | 0 | return png_image_error(image, |
2320 | 0 | "png_image_write_to_memory: invalid argument"); |
2321 | 0 | } |
2322 | | |
2323 | 0 | else if (image != NULL) |
2324 | 0 | return png_image_error(image, |
2325 | 0 | "png_image_write_to_memory: incorrect PNG_IMAGE_VERSION"); |
2326 | | |
2327 | 0 | else |
2328 | 0 | return 0; |
2329 | 0 | } |
2330 | | |
2331 | | #ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED |
2332 | | int PNGAPI |
2333 | | png_image_write_to_stdio(png_imagep image, FILE *file, int convert_to_8bit, |
2334 | | const void *buffer, png_int_32 row_stride, const void *colormap) |
2335 | 0 | { |
2336 | | /* Write the image to the given FILE object. */ |
2337 | 0 | if (image != NULL && image->version == PNG_IMAGE_VERSION) |
2338 | 0 | { |
2339 | 0 | if (file != NULL && buffer != NULL) |
2340 | 0 | { |
2341 | 0 | if (png_image_write_init(image) != 0) |
2342 | 0 | { |
2343 | 0 | png_image_write_control display; |
2344 | 0 | int result; |
2345 | | |
2346 | | /* This is slightly evil, but png_init_io doesn't do anything other |
2347 | | * than this and we haven't changed the standard IO functions so |
2348 | | * this saves a 'safe' function. |
2349 | | */ |
2350 | 0 | image->opaque->png_ptr->io_ptr = file; |
2351 | |
|
2352 | 0 | memset(&display, 0, (sizeof display)); |
2353 | 0 | display.image = image; |
2354 | 0 | display.buffer = buffer; |
2355 | 0 | display.row_stride = row_stride; |
2356 | 0 | display.colormap = colormap; |
2357 | 0 | display.convert_to_8bit = convert_to_8bit; |
2358 | |
|
2359 | 0 | result = png_safe_execute(image, png_image_write_main, &display); |
2360 | 0 | png_image_free(image); |
2361 | 0 | return result; |
2362 | 0 | } |
2363 | | |
2364 | 0 | else |
2365 | 0 | return 0; |
2366 | 0 | } |
2367 | | |
2368 | 0 | else |
2369 | 0 | return png_image_error(image, |
2370 | 0 | "png_image_write_to_stdio: invalid argument"); |
2371 | 0 | } |
2372 | | |
2373 | 0 | else if (image != NULL) |
2374 | 0 | return png_image_error(image, |
2375 | 0 | "png_image_write_to_stdio: incorrect PNG_IMAGE_VERSION"); |
2376 | | |
2377 | 0 | else |
2378 | 0 | return 0; |
2379 | 0 | } |
2380 | | |
2381 | | int PNGAPI |
2382 | | png_image_write_to_file(png_imagep image, const char *file_name, |
2383 | | int convert_to_8bit, const void *buffer, png_int_32 row_stride, |
2384 | | const void *colormap) |
2385 | 0 | { |
2386 | | /* Write the image to the named file. */ |
2387 | 0 | if (image != NULL && image->version == PNG_IMAGE_VERSION) |
2388 | 0 | { |
2389 | 0 | if (file_name != NULL && buffer != NULL) |
2390 | 0 | { |
2391 | 0 | FILE *fp = fopen(file_name, "wb"); |
2392 | |
|
2393 | 0 | if (fp != NULL) |
2394 | 0 | { |
2395 | 0 | if (png_image_write_to_stdio(image, fp, convert_to_8bit, buffer, |
2396 | 0 | row_stride, colormap) != 0) |
2397 | 0 | { |
2398 | 0 | int error; /* from fflush/fclose */ |
2399 | | |
2400 | | /* Make sure the file is flushed correctly. */ |
2401 | 0 | if (fflush(fp) == 0 && ferror(fp) == 0) |
2402 | 0 | { |
2403 | 0 | if (fclose(fp) == 0) |
2404 | 0 | return 1; |
2405 | | |
2406 | 0 | error = errno; /* from fclose */ |
2407 | 0 | } |
2408 | | |
2409 | 0 | else |
2410 | 0 | { |
2411 | 0 | error = errno; /* from fflush or ferror */ |
2412 | 0 | (void)fclose(fp); |
2413 | 0 | } |
2414 | | |
2415 | 0 | (void)remove(file_name); |
2416 | | /* The image has already been cleaned up; this is just used to |
2417 | | * set the error (because the original write succeeded). |
2418 | | */ |
2419 | 0 | return png_image_error(image, strerror(error)); |
2420 | 0 | } |
2421 | | |
2422 | 0 | else |
2423 | 0 | { |
2424 | | /* Clean up: just the opened file. */ |
2425 | 0 | (void)fclose(fp); |
2426 | 0 | (void)remove(file_name); |
2427 | 0 | return 0; |
2428 | 0 | } |
2429 | 0 | } |
2430 | | |
2431 | 0 | else |
2432 | 0 | return png_image_error(image, strerror(errno)); |
2433 | 0 | } |
2434 | | |
2435 | 0 | else |
2436 | 0 | return png_image_error(image, |
2437 | 0 | "png_image_write_to_file: invalid argument"); |
2438 | 0 | } |
2439 | | |
2440 | 0 | else if (image != NULL) |
2441 | 0 | return png_image_error(image, |
2442 | 0 | "png_image_write_to_file: incorrect PNG_IMAGE_VERSION"); |
2443 | | |
2444 | 0 | else |
2445 | 0 | return 0; |
2446 | 0 | } |
2447 | | #endif /* SIMPLIFIED_WRITE_STDIO */ |
2448 | | #endif /* SIMPLIFIED_WRITE */ |
2449 | | #endif /* WRITE */ |