blob: c6a4201897cd53ce848490cb8343f450b5f8be72 [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-Pehrson1d963611998-05-02 12:52:25 -05004 * 1.0.1b
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-Pehrson1d963611998-05-02 12:52:25 -05009 * May 2, 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-Pehrson1d963611998-05-02 12:52:25 -050099 png_uint_32 i;
100 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -0500101
102 sp = row;
103 dp = row;
104 mask = 0x80;
105 v = 0;
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500106
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500107 for (i = 0; i < row_width; 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-Pehrson1d963611998-05-02 12:52:25 -0500130 png_uint_32 i;
131 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -0500132
133 sp = row;
134 dp = row;
135 shift = 6;
136 v = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500137 for (i = 0; i < row_width; 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-Pehrson1d963611998-05-02 12:52:25 -0500162 png_uint_32 i;
163 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -0500164
165 sp = row;
166 dp = row;
167 shift = 4;
168 v = 0;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500169 for (i = 0; i < row_width; 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];
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500221 int 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 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500252 png_bytep bp = row;
253 png_uint_32 i;
Guy Schalnat0d580581995-07-20 02:43:20 -0500254 png_byte mask;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500255 png_uint_32 row_bytes = row_info->rowbytes;
Guy Schalnat0d580581995-07-20 02:43:20 -0500256
257 if (bit_depth->gray == 1 && row_info->bit_depth == 2)
258 mask = 0x55;
259 else if (row_info->bit_depth == 4 && bit_depth->gray == 3)
260 mask = 0x11;
261 else
262 mask = 0xff;
263
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500264 for (i = 0; i < row_bytes; 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 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500282 png_bytep bp = row;
283 png_uint_32 i;
284 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -0500285
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500286 for (i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500287 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500288 int 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-Pehrson1d963611998-05-02 12:52:25 -0500310 png_uint_32 i;
311 png_uint_32 row_width = row_info->width;
Guy Schalnat0d580581995-07-20 02:43:20 -0500312
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500313 for (bp = row, i = 0; i < row_width; i++)
Guy Schalnat0d580581995-07-20 02:43:20 -0500314 {
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500315 int 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-Pehrson1d963611998-05-02 12:52:25 -0500355 png_uint_32 i;
356 png_uint_32 row_width = row_info->width;
357 for (i = 0, sp = dp = row; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500358 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500359 png_byte save = *(sp++);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500360 *(dp++) = *(sp++);
361 *(dp++) = *(sp++);
362 *(dp++) = *(sp++);
363 *(dp++) = save;
364 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500365 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500366 /* This converts from AARRGGBB to RRGGBBAA */
367 else
368 {
369 png_bytep sp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500370 png_uint_32 i;
371 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500372
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500373 for (i = 0, sp = dp = row; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500374 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500375 png_byte save[2];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500376 save[0] = *(sp++);
377 save[1] = *(sp++);
378 *(dp++) = *(sp++);
379 *(dp++) = *(sp++);
380 *(dp++) = *(sp++);
381 *(dp++) = *(sp++);
382 *(dp++) = *(sp++);
383 *(dp++) = *(sp++);
384 *(dp++) = save[0];
385 *(dp++) = save[1];
386 }
387 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500388 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500389 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500390 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500391 /* This converts from AG to GA */
392 if (row_info->bit_depth == 8)
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500393 {
Andreas Dilger47a0c421997-05-16 02:46:07 -0500394 png_bytep sp, dp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500395 png_uint_32 i;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500396 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500397
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500398 for (i = 0, sp = dp = row; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500399 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500400 png_byte save = *(sp++);
Andreas Dilger47a0c421997-05-16 02:46:07 -0500401 *(dp++) = *(sp++);
402 *(dp++) = save;
403 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500404 }
Andreas Dilger47a0c421997-05-16 02:46:07 -0500405 /* This converts from AAGG to GGAA */
406 else
407 {
408 png_bytep sp, dp;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500409 png_uint_32 i;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500410 png_uint_32 row_width = row_info->width;
Andreas Dilger47a0c421997-05-16 02:46:07 -0500411
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500412 for (i = 0, sp = dp = row; i < row_width; i++)
Andreas Dilger47a0c421997-05-16 02:46:07 -0500413 {
Glenn Randers-Pehrson896239b1998-04-21 15:03:57 -0500414 png_byte save[2];
Andreas Dilger47a0c421997-05-16 02:46:07 -0500415 save[0] = *(sp++);
416 save[1] = *(sp++);
417 *(dp++) = *(sp++);
418 *(dp++) = *(sp++);
419 *(dp++) = save[0];
420 *(dp++) = save[1];
421 }
422 }
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500423 }
Guy Schalnat0d580581995-07-20 02:43:20 -0500424 }
425}
Guy Schalnat51f0eb41995-09-26 05:22:39 -0500426#endif
Guy Schalnat0d580581995-07-20 02:43:20 -0500427
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600428#if defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED)
429void
430png_do_write_invert_alpha(png_row_infop row_info, png_bytep row)
431{
432 png_debug(1, "in png_do_write_invert_alpha\n");
433#if defined(PNG_USELESS_TESTS_SUPPORTED)
434 if (row != NULL && row_info != NULL)
435#endif
436 {
437 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
438 {
439 /* This inverts the alpha channel in RGBA */
440 if (row_info->bit_depth == 8)
441 {
442 png_bytep sp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500443 png_uint_32 i;
444 png_uint_32 row_width = row_info->width;
445 for (i = 0, sp = dp = row; i < row_width; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600446 {
447 *(dp++) = *(sp++);
448 *(dp++) = *(sp++);
449 *(dp++) = *(sp++);
450 *(dp++) = 255 - *(sp++);
451 }
452 }
453 /* This inverts the alpha channel in RRGGBBAA */
454 else
455 {
456 png_bytep sp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500457 png_uint_32 i;
458 png_uint_32 row_width = row_info->width;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600459
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500460 for (i = 0, sp = dp = row; i < row_width; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600461 {
462 *(dp++) = *(sp++);
463 *(dp++) = *(sp++);
464 *(dp++) = *(sp++);
465 *(dp++) = *(sp++);
466 *(dp++) = *(sp++);
467 *(dp++) = *(sp++);
468 *(dp++) = 255 - *(sp++);
469 *(dp++) = 255 - *(sp++);
470 }
471 }
472 }
473 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
474 {
475 /* This inverts the alpha channel in GA */
476 if (row_info->bit_depth == 8)
477 {
478 png_bytep sp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500479 png_uint_32 i;
480 png_uint_32 row_width = row_info->width;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600481
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500482 for (i = 0, sp = dp = row; i < row_width; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600483 {
484 *(dp++) = *(sp++);
485 *(dp++) = 255 - *(sp++);
486 }
487 }
488 /* This inverts the alpha channel in GGAA */
489 else
490 {
491 png_bytep sp, dp;
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500492 png_uint_32 i;
493 png_uint_32 row_width = row_info->width;
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600494
Glenn Randers-Pehrson1d963611998-05-02 12:52:25 -0500495 for (i = 0, sp = dp = row; i < row_width; i++)
Glenn Randers-Pehrsonc4a2ae61998-01-16 22:06:18 -0600496 {
497 *(dp++) = *(sp++);
498 *(dp++) = *(sp++);
499 *(dp++) = 255 - *(sp++);
500 *(dp++) = 255 - *(sp++);
501 }
502 }
503 }
504 }
505}
506#endif