blob: 2fd4a7533bfd8236c1017b9d6caa21975922f5ca [file] [log] [blame]
Guy Schalnat0d580581995-07-20 02:43:20 -05001
Andreas Dilger47a0c421997-05-16 02:46:07 -05002/* pngwtran.c - transforms the data in a row for PNG writers
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06003 *
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05004 * libpng 1.0.1a
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -06005 * For conditions of distribution and use, see copyright notice in png.h
6 * Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
7 * Copyright (c) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson2687fcc1998-01-07 20:54:20 -06008 * Copyright (c) 1998, Glenn Randers-Pehrson
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -05009 * April 21, 1998
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060010 */
Guy Schalnat0d580581995-07-20 02:43:20 -050011
12#define PNG_INTERNAL
13#include "png.h"
14
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060015/* Transform the data according to the users wishes. The order of
16 * transformations is significant.
17 */
Guy Schalnat0d580581995-07-20 02:43:20 -050018void
Guy Schalnat6d764711995-12-19 03:22:19 -060019png_do_write_transformations(png_structp png_ptr)
Guy Schalnat0d580581995-07-20 02:43:20 -050020{
Andreas Dilger47a0c421997-05-16 02:46:07 -050021 png_debug(1, "in png_do_write_transformations\n");
Glenn Randers-Pehrson08a33431998-03-07 06:06:55 -060022
23#if defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED)
24 if (png_ptr->transformations & PNG_USER_TRANSFORM)
25 if(png_ptr->write_user_transform_fn != NULL)
26 (*(png_ptr->write_user_transform_fn)) /* user write transform function */
27 (png_ptr, /* png_ptr */
28 &(png_ptr->row_info), /* row_info: */
29 /* png_uint_32 width; width of row */
30 /* png_uint_32 rowbytes; number of bytes in row */
31 /* png_byte color_type; color type of pixels */
32 /* png_byte bit_depth; bit depth of samples */
33 /* png_byte channels; number of channels (1-4) */
34 /* png_byte pixel_depth; bits per pixel (depth*channels) */
35 png_ptr->row_buf + 1); /* start of pixel data for row */
36#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050037#if defined(PNG_WRITE_FILLER_SUPPORTED)
Guy Schalnat6d764711995-12-19 03:22:19 -060038 if (png_ptr->transformations & PNG_FILLER)
Andreas Dilger47a0c421997-05-16 02:46:07 -050039 png_do_strip_filler(&(png_ptr->row_info), png_ptr->row_buf + 1,
Guy Schalnate5a37791996-06-05 15:50:50 -050040 png_ptr->flags);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050041#endif
Glenn Randers-Pehrson46f61e21998-01-30 21:45:12 -060042#if defined(PNG_WRITE_PACKSWAP_SUPPORTED)
43 if (png_ptr->transformations & PNG_PACKSWAP)
44 png_do_packswap(&(png_ptr->row_info), png_ptr->row_buf + 1);
45#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050046#if defined(PNG_WRITE_PACK_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -050047 if (png_ptr->transformations & PNG_PACK)
48 png_do_pack(&(png_ptr->row_info), png_ptr->row_buf + 1,
Andreas Dilger47a0c421997-05-16 02:46:07 -050049 (png_uint_32)png_ptr->bit_depth);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050050#endif
51#if defined(PNG_WRITE_SHIFT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -050052 if (png_ptr->transformations & PNG_SHIFT)
53 png_do_shift(&(png_ptr->row_info), png_ptr->row_buf + 1,
54 &(png_ptr->shift));
Guy Schalnat51f0eb41995-09-26 05:22:39 -050055#endif
56#if defined(PNG_WRITE_SWAP_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -050057 if (png_ptr->transformations & PNG_SWAP_BYTES)
58 png_do_swap(&(png_ptr->row_info), png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050059#endif
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -060060#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
61 if (png_ptr->transformations & PNG_INVERT_ALPHA)
62 png_do_write_invert_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1);
63#endif
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -060064#if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
65 if (png_ptr->transformations & PNG_SWAP_ALPHA)
66 png_do_write_swap_alpha(&(png_ptr->row_info), png_ptr->row_buf + 1);
67#endif
Guy Schalnat51f0eb41995-09-26 05:22:39 -050068#if defined(PNG_WRITE_BGR_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -050069 if (png_ptr->transformations & PNG_BGR)
70 png_do_bgr(&(png_ptr->row_info), png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050071#endif
72#if defined(PNG_WRITE_INVERT_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -050073 if (png_ptr->transformations & PNG_INVERT_MONO)
74 png_do_invert(&(png_ptr->row_info), png_ptr->row_buf + 1);
Guy Schalnat51f0eb41995-09-26 05:22:39 -050075#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050076}
77
Guy Schalnat51f0eb41995-09-26 05:22:39 -050078#if defined(PNG_WRITE_PACK_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -060079/* Pack pixels into bytes. Pass the true bit depth in bit_depth. The
80 * row_info bit depth should be 8 (one pixel per byte). The channels
81 * should be 1 (this only happens on grayscale and paletted images).
82 */
Guy Schalnat0d580581995-07-20 02:43:20 -050083void
Andreas Dilger47a0c421997-05-16 02:46:07 -050084png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth)
Guy Schalnat0d580581995-07-20 02:43:20 -050085{
Andreas Dilger47a0c421997-05-16 02:46:07 -050086 png_debug(1, "in png_do_pack\n");
87 if (row_info->bit_depth == 8 &&
88#if defined(PNG_USELESS_TESTS_SUPPORTED)
89 row != NULL && row_info != NULL &&
90#endif
Guy Schalnat0d580581995-07-20 02:43:20 -050091 row_info->channels == 1)
92 {
Andreas Dilger47a0c421997-05-16 02:46:07 -050093 switch ((int)bit_depth)
Guy Schalnat0d580581995-07-20 02:43:20 -050094 {
95 case 1:
96 {
Andreas Dilger47a0c421997-05-16 02:46:07 -050097 png_bytep sp, dp;
98 int mask, v;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -050099 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500100
101 sp = row;
102 dp = row;
103 mask = 0x80;
104 v = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500105
106 istop = row_info->width;
107 for (i = 0; i < istop; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500108 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500109 if (*sp != 0)
Guy Schalnat0d580581995-07-20 02:43:20 -0500110 v |= mask;
111 sp++;
112 if (mask > 1)
113 mask >>= 1;
114 else
115 {
116 mask = 0x80;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600117 *dp = (png_byte)v;
118 dp++;
Guy Schalnat0d580581995-07-20 02:43:20 -0500119 v = 0;
120 }
121 }
122 if (mask != 0x80)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600123 *dp = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -0500124 break;
125 }
126 case 2:
127 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500128 png_bytep sp, dp;
129 int shift, v;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500130 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500131
132 sp = row;
133 dp = row;
134 shift = 6;
135 v = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500136 istop = row_info->width;
137 for (i = 0; i < istop; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500138 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500139 png_byte value;
140
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600141 value = (png_byte)(*sp & 0x3);
Guy Schalnat0d580581995-07-20 02:43:20 -0500142 v |= (value << shift);
143 if (shift == 0)
144 {
145 shift = 6;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600146 *dp = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -0500147 dp++;
148 v = 0;
149 }
150 else
151 shift -= 2;
152 sp++;
153 }
154 if (shift != 6)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600155 *dp = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -0500156 break;
157 }
158 case 4:
159 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500160 png_bytep sp, dp;
161 int shift, v;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500162 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500163
164 sp = row;
165 dp = row;
166 shift = 4;
167 v = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500168 istop = row_info->width;
169 for (i = 0; i < istop; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500170 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500171 png_byte value;
172
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600173 value = (png_byte)(*sp & 0xf);
Guy Schalnat0d580581995-07-20 02:43:20 -0500174 v |= (value << shift);
175
176 if (shift == 0)
177 {
178 shift = 4;
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600179 *dp = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -0500180 dp++;
181 v = 0;
182 }
183 else
184 shift -= 4;
185
186 sp++;
187 }
188 if (shift != 4)
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600189 *dp = (png_byte)v;
Guy Schalnat0d580581995-07-20 02:43:20 -0500190 break;
191 }
192 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500193 row_info->bit_depth = (png_byte)bit_depth;
194 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels);
Guy Schalnat0d580581995-07-20 02:43:20 -0500195 row_info->rowbytes =
196 ((row_info->width * row_info->pixel_depth + 7) >> 3);
197 }
198}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500199#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500200
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500201#if defined(PNG_WRITE_SHIFT_SUPPORTED)
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600202/* Shift pixel values to take advantage of whole range. Pass the
203 * true number of bits in bit_depth. The row should be packed
204 * according to row_info->bit_depth. Thus, if you had a row of
205 * bit depth 4, but the pixels only had values from 0 to 7, you
206 * would pass 3 as bit_depth, and this routine would translate the
207 * data to 0 to 15.
208 */
Guy Schalnat0d580581995-07-20 02:43:20 -0500209void
Guy Schalnat6d764711995-12-19 03:22:19 -0600210png_do_shift(png_row_infop row_info, png_bytep row, png_color_8p bit_depth)
Guy Schalnat0d580581995-07-20 02:43:20 -0500211{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500212 png_debug(1, "in png_do_shift\n");
213#if defined(PNG_USELESS_TESTS_SUPPORTED)
214 if (row != NULL && row_info != NULL &&
215#else
216 if (
217#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500218 row_info->color_type != PNG_COLOR_TYPE_PALETTE)
219 {
220 int shift_start[4], shift_dec[4];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500221 png_uint_32 channels;
Guy Schalnat0d580581995-07-20 02:43:20 -0500222
223 channels = 0;
224 if (row_info->color_type & PNG_COLOR_MASK_COLOR)
225 {
226 shift_start[channels] = row_info->bit_depth - bit_depth->red;
227 shift_dec[channels] = bit_depth->red;
228 channels++;
229 shift_start[channels] = row_info->bit_depth - bit_depth->green;
230 shift_dec[channels] = bit_depth->green;
231 channels++;
232 shift_start[channels] = row_info->bit_depth - bit_depth->blue;
233 shift_dec[channels] = bit_depth->blue;
234 channels++;
235 }
236 else
237 {
238 shift_start[channels] = row_info->bit_depth - bit_depth->gray;
239 shift_dec[channels] = bit_depth->gray;
240 channels++;
241 }
242 if (row_info->color_type & PNG_COLOR_MASK_ALPHA)
243 {
244 shift_start[channels] = row_info->bit_depth - bit_depth->alpha;
245 shift_dec[channels] = bit_depth->alpha;
246 channels++;
247 }
248
Glenn Randers-Pehrsoncbe52d81998-02-28 07:00:24 -0600249 /* with low row depths, could only be grayscale, so one channel */
Guy Schalnat0d580581995-07-20 02:43:20 -0500250 if (row_info->bit_depth < 8)
251 {
Guy Schalnat6d764711995-12-19 03:22:19 -0600252 png_bytep bp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500253 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500254 png_byte mask;
255
256 if (bit_depth->gray == 1 && row_info->bit_depth == 2)
257 mask = 0x55;
258 else if (row_info->bit_depth == 4 && bit_depth->gray == 3)
259 mask = 0x11;
260 else
261 mask = 0xff;
262
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500263 istop = row_info->rowbytes;
264 for (bp = row, i = 0; i < istop; i++, bp++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500265 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500266 png_uint_16 v;
267 int j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500268
269 v = *bp;
270 *bp = 0;
271 for (j = shift_start[0]; j > -shift_dec[0]; j -= shift_dec[0])
272 {
273 if (j > 0)
274 *bp |= (png_byte)((v << j) & 0xff);
275 else
276 *bp |= (png_byte)((v >> (-j)) & mask);
277 }
278 }
279 }
280 else if (row_info->bit_depth == 8)
281 {
Guy Schalnat6d764711995-12-19 03:22:19 -0600282 png_bytep bp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500283 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500284
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500285 istop = row_info->width;
286 for (bp = row, i = 0; i < istop; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500287 {
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600288 png_uint_32 c;
Guy Schalnat0d580581995-07-20 02:43:20 -0500289
290 for (c = 0; c < channels; c++, bp++)
291 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500292 png_uint_16 v;
293 int j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500294
295 v = *bp;
296 *bp = 0;
297 for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c])
298 {
299 if (j > 0)
300 *bp |= (png_byte)((v << j) & 0xff);
301 else
302 *bp |= (png_byte)((v >> (-j)) & 0xff);
303 }
304 }
305 }
306 }
307 else
308 {
Guy Schalnat6d764711995-12-19 03:22:19 -0600309 png_bytep bp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500310 png_uint_32 i, istop;
Guy Schalnat0d580581995-07-20 02:43:20 -0500311
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500312 istop = row_info->width;
313 for (bp = row, i = 0; i < istop; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500314 {
Glenn Randers-Pehrsonb6ce43d1998-01-01 07:13:13 -0600315 png_uint_32 c;
Guy Schalnat0d580581995-07-20 02:43:20 -0500316
317 for (c = 0; c < channels; c++, bp += 2)
318 {
319 png_uint_16 value, v;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500320 int j;
Guy Schalnat0d580581995-07-20 02:43:20 -0500321
Andreas Dilger47a0c421997-05-16 02:46:07 -0500322 v = ((png_uint_16)(*bp) << 8) + *(bp + 1);
Guy Schalnat0d580581995-07-20 02:43:20 -0500323 value = 0;
324 for (j = shift_start[c]; j > -shift_dec[c]; j -= shift_dec[c])
325 {
326 if (j > 0)
327 value |= (png_uint_16)((v << j) & (png_uint_16)0xffff);
328 else
329 value |= (png_uint_16)((v >> (-j)) & (png_uint_16)0xffff);
330 }
Guy Schalnatb2e01bd1996-01-26 01:38:47 -0600331 *bp = (png_byte)(value >> 8);
Guy Schalnat4ee97b01996-01-16 01:51:56 -0600332 *(bp + 1) = (png_byte)(value & 0xff);
Guy Schalnat0d580581995-07-20 02:43:20 -0500333 }
334 }
335 }
336 }
337}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500338#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500339
Andreas Dilger47a0c421997-05-16 02:46:07 -0500340#if defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED)
Guy Schalnat0d580581995-07-20 02:43:20 -0500341void
Andreas Dilger47a0c421997-05-16 02:46:07 -0500342png_do_write_swap_alpha(png_row_infop row_info, png_bytep row)
Guy Schalnat0d580581995-07-20 02:43:20 -0500343{
Andreas Dilger47a0c421997-05-16 02:46:07 -0500344 png_debug(1, "in png_do_write_swap_alpha\n");
345#if defined(PNG_USELESS_TESTS_SUPPORTED)
346 if (row != NULL && row_info != NULL)
347#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500348 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500349 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
Guy Schalnat0d580581995-07-20 02:43:20 -0500350 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500351 /* This converts from ARGB to RGBA */
352 if (row_info->bit_depth == 8)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500353 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500354 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500355 png_uint_32 i, istop;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500356
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500357 istop = row_info->width;
358 for (i = 0, sp = dp = row; i < istop; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500359 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500360 png_byte save = *(sp++);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500361 *(dp++) = *(sp++);
362 *(dp++) = *(sp++);
363 *(dp++) = *(sp++);
364 *(dp++) = save;
365 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500366 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500367 /* This converts from AARRGGBB to RRGGBBAA */
368 else
369 {
370 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500371 png_uint_32 i, istop;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500372
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500373 istop = row_info->width;
374 for (i = 0, sp = dp = row; i < istop; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500375 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500376 png_byte save[2];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500377 save[0] = *(sp++);
378 save[1] = *(sp++);
379 *(dp++) = *(sp++);
380 *(dp++) = *(sp++);
381 *(dp++) = *(sp++);
382 *(dp++) = *(sp++);
383 *(dp++) = *(sp++);
384 *(dp++) = *(sp++);
385 *(dp++) = save[0];
386 *(dp++) = save[1];
387 }
388 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500389 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500390 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500391 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500392 /* This converts from AG to GA */
393 if (row_info->bit_depth == 8)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500394 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500395 png_bytep sp, dp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500396 png_uint_32 i;
397
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500398 istop = row_info->width;
399 for (i = 0, sp = dp = row; i < istop; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500400 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500401 png_byte save = *(sp++);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500402 *(dp++) = *(sp++);
403 *(dp++) = save;
404 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500405 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500406 /* This converts from AAGG to GGAA */
407 else
408 {
409 png_bytep sp, dp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500410 png_uint_32 i;
411
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500412 istop = row_info->width;
413 for (i = 0, sp = dp = row; i < istop; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500414 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500415 png_byte save[2];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500416 save[0] = *(sp++);
417 save[1] = *(sp++);
418 *(dp++) = *(sp++);
419 *(dp++) = *(sp++);
420 *(dp++) = save[0];
421 *(dp++) = save[1];
422 }
423 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500424 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500425 }
426}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500427#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500428
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600429#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
430void
431png_do_write_invert_alpha(png_row_infop row_info, png_bytep row)
432{
433 png_debug(1, "in png_do_write_invert_alpha\n");
434#if defined(PNG_USELESS_TESTS_SUPPORTED)
435 if (row != NULL && row_info != NULL)
436#endif
437 {
438 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
439 {
440 /* This inverts the alpha channel in RGBA */
441 if (row_info->bit_depth == 8)
442 {
443 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500444 png_uint_32 i, istop;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600445
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500446 istop = row_info->width;
447 for (i = 0, sp = dp = row; i < istop; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600448 {
449 *(dp++) = *(sp++);
450 *(dp++) = *(sp++);
451 *(dp++) = *(sp++);
452 *(dp++) = 255 - *(sp++);
453 }
454 }
455 /* This inverts the alpha channel in RRGGBBAA */
456 else
457 {
458 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500459 png_uint_32 i, istop;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600460
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500461 istop = row_info->width;
462 for (i = 0, sp = dp = row; i < istop; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600463 {
464 *(dp++) = *(sp++);
465 *(dp++) = *(sp++);
466 *(dp++) = *(sp++);
467 *(dp++) = *(sp++);
468 *(dp++) = *(sp++);
469 *(dp++) = *(sp++);
470 *(dp++) = 255 - *(sp++);
471 *(dp++) = 255 - *(sp++);
472 }
473 }
474 }
475 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
476 {
477 /* This inverts the alpha channel in GA */
478 if (row_info->bit_depth == 8)
479 {
480 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500481 png_uint_32 i, istop;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600482
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500483 istop = row_info->width;
484 for (i = 0, sp = dp = row; i < istop; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600485 {
486 *(dp++) = *(sp++);
487 *(dp++) = 255 - *(sp++);
488 }
489 }
490 /* This inverts the alpha channel in GGAA */
491 else
492 {
493 png_bytep sp, dp;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500494 png_uint_32 i, istop;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600495
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500496 istop = row_info->width;
497 for (i = 0, sp = dp = row; i < istop; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600498 {
499 *(dp++) = *(sp++);
500 *(dp++) = *(sp++);
501 *(dp++) = 255 - *(sp++);
502 *(dp++) = 255 - *(sp++);
503 }
504 }
505 }
506 }
507}
508#endif