epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2006 The Android Open Source Project |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 8 | #include "SkImageDecoder.h" |
reed@android.com | b08eb2b | 2009-01-06 20:16:26 +0000 | [diff] [blame] | 9 | #include "SkImageEncoder.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 10 | #include "SkColor.h" |
| 11 | #include "SkColorPriv.h" |
| 12 | #include "SkDither.h" |
| 13 | #include "SkMath.h" |
halcanary@google.com | 2a10318 | 2013-10-14 12:49:15 +0000 | [diff] [blame] | 14 | #include "SkRTConf.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 15 | #include "SkScaledBitmapSampler.h" |
| 16 | #include "SkStream.h" |
| 17 | #include "SkTemplates.h" |
| 18 | #include "SkUtils.h" |
epoger@google.com | 4ce738b | 2012-11-16 18:44:18 +0000 | [diff] [blame] | 19 | #include "transform_scanline.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 20 | extern "C" { |
| 21 | #include "png.h" |
| 22 | } |
| 23 | |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 24 | /* These were dropped in libpng >= 1.4 */ |
| 25 | #ifndef png_infopp_NULL |
| 26 | #define png_infopp_NULL NULL |
| 27 | #endif |
| 28 | |
| 29 | #ifndef png_bytepp_NULL |
| 30 | #define png_bytepp_NULL NULL |
| 31 | #endif |
| 32 | |
| 33 | #ifndef int_p_NULL |
| 34 | #define int_p_NULL NULL |
| 35 | #endif |
| 36 | |
| 37 | #ifndef png_flush_ptr_NULL |
| 38 | #define png_flush_ptr_NULL NULL |
| 39 | #endif |
| 40 | |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 41 | #if defined(SK_DEBUG) |
halcanary@google.com | 2a10318 | 2013-10-14 12:49:15 +0000 | [diff] [blame] | 42 | #define DEFAULT_FOR_SUPPRESS_PNG_IMAGE_DECODER_WARNINGS false |
| 43 | #else // !defined(SK_DEBUG) |
| 44 | #define DEFAULT_FOR_SUPPRESS_PNG_IMAGE_DECODER_WARNINGS true |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 45 | #endif // defined(SK_DEBUG) |
halcanary@google.com | 2a10318 | 2013-10-14 12:49:15 +0000 | [diff] [blame] | 46 | SK_CONF_DECLARE(bool, c_suppressPNGImageDecoderWarnings, |
| 47 | "images.png.suppressDecoderWarnings", |
| 48 | DEFAULT_FOR_SUPPRESS_PNG_IMAGE_DECODER_WARNINGS, |
| 49 | "Suppress most PNG warnings when calling image decode " |
| 50 | "functions."); |
| 51 | |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 52 | |
| 53 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 54 | class SkPNGImageIndex { |
| 55 | public: |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 56 | SkPNGImageIndex(SkStreamRewindable* stream, png_structp png_ptr, png_infop info_ptr) |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 57 | : fStream(stream) |
| 58 | , fPng_ptr(png_ptr) |
| 59 | , fInfo_ptr(info_ptr) |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 60 | , fColorType(kUnknown_SkColorType) { |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 61 | SkASSERT(stream != NULL); |
| 62 | stream->ref(); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 63 | } |
| 64 | ~SkPNGImageIndex() { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 65 | if (fPng_ptr) { |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 66 | png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, png_infopp_NULL); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 67 | } |
| 68 | } |
| 69 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 70 | SkAutoTUnref<SkStreamRewindable> fStream; |
| 71 | png_structp fPng_ptr; |
| 72 | png_infop fInfo_ptr; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 73 | SkColorType fColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 76 | class SkPNGImageDecoder : public SkImageDecoder { |
| 77 | public: |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 78 | SkPNGImageDecoder() { |
| 79 | fImageIndex = NULL; |
| 80 | } |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 81 | Format getFormat() const SK_OVERRIDE { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 82 | return kPNG_Format; |
| 83 | } |
scroggo@google.com | 39edf4c | 2013-04-25 17:33:51 +0000 | [diff] [blame] | 84 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 85 | virtual ~SkPNGImageDecoder() { |
| 86 | SkDELETE(fImageIndex); |
| 87 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 88 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 89 | protected: |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 90 | #ifdef SK_BUILD_FOR_ANDROID |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 91 | bool onBuildTileIndex(SkStreamRewindable *stream, int *width, int *height) SK_OVERRIDE; |
| 92 | bool onDecodeSubset(SkBitmap* bitmap, const SkIRect& region) SK_OVERRIDE; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 93 | #endif |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 94 | Result onDecode(SkStream* stream, SkBitmap* bm, Mode) SK_OVERRIDE; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 95 | |
| 96 | private: |
| 97 | SkPNGImageIndex* fImageIndex; |
| 98 | |
| 99 | bool onDecodeInit(SkStream* stream, png_structp *png_ptrp, png_infop *info_ptrp); |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 100 | bool decodePalette(png_structp png_ptr, png_infop info_ptr, |
| 101 | bool * SK_RESTRICT hasAlphap, bool *reallyHasAlphap, |
| 102 | SkColorTable **colorTablep); |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 103 | bool getBitmapColorType(png_structp, png_infop, SkColorType*, bool* hasAlpha, |
| 104 | SkPMColor* theTranspColor); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 105 | |
| 106 | typedef SkImageDecoder INHERITED; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | #ifndef png_jmpbuf |
| 110 | # define png_jmpbuf(png_ptr) ((png_ptr)->jmpbuf) |
| 111 | #endif |
| 112 | |
| 113 | #define PNG_BYTES_TO_CHECK 4 |
| 114 | |
| 115 | /* Automatically clean up after throwing an exception */ |
| 116 | struct PNGAutoClean { |
| 117 | PNGAutoClean(png_structp p, png_infop i): png_ptr(p), info_ptr(i) {} |
| 118 | ~PNGAutoClean() { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 119 | png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 120 | } |
| 121 | private: |
| 122 | png_structp png_ptr; |
| 123 | png_infop info_ptr; |
| 124 | }; |
| 125 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 126 | static void sk_read_fn(png_structp png_ptr, png_bytep data, png_size_t length) { |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 127 | SkStream* sk_stream = (SkStream*) png_get_io_ptr(png_ptr); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 128 | size_t bytes = sk_stream->read(data, length); |
| 129 | if (bytes != length) { |
| 130 | png_error(png_ptr, "Read Error!"); |
| 131 | } |
| 132 | } |
| 133 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 134 | #ifdef SK_BUILD_FOR_ANDROID |
| 135 | static void sk_seek_fn(png_structp png_ptr, png_uint_32 offset) { |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 136 | SkStreamRewindable* sk_stream = (SkStreamRewindable*) png_get_io_ptr(png_ptr); |
scroggo@google.com | 4d213ab | 2013-08-28 13:08:54 +0000 | [diff] [blame] | 137 | if (!sk_stream->rewind()) { |
| 138 | png_error(png_ptr, "Failed to rewind stream!"); |
| 139 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 140 | (void)sk_stream->skip(offset); |
| 141 | } |
| 142 | #endif |
| 143 | |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 144 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 145 | static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) { |
| 146 | SkImageDecoder::Peeker* peeker = |
| 147 | (SkImageDecoder::Peeker*)png_get_user_chunk_ptr(png_ptr); |
| 148 | // peek() returning true means continue decoding |
| 149 | return peeker->peek((const char*)chunk->name, chunk->data, chunk->size) ? |
| 150 | 1 : -1; |
| 151 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 152 | #endif |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 153 | |
| 154 | static void sk_error_fn(png_structp png_ptr, png_const_charp msg) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 155 | SkDEBUGF(("------ png error %s\n", msg)); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 156 | longjmp(png_jmpbuf(png_ptr), 1); |
| 157 | } |
| 158 | |
| 159 | static void skip_src_rows(png_structp png_ptr, uint8_t storage[], int count) { |
| 160 | for (int i = 0; i < count; i++) { |
| 161 | uint8_t* tmp = storage; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 162 | png_read_rows(png_ptr, &tmp, png_bytepp_NULL, 1); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 163 | } |
| 164 | } |
| 165 | |
| 166 | static bool pos_le(int value, int max) { |
| 167 | return value > 0 && value <= max; |
| 168 | } |
| 169 | |
| 170 | static bool substituteTranspColor(SkBitmap* bm, SkPMColor match) { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 171 | SkASSERT(bm->colorType() == kN32_SkColorType); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 172 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 173 | bool reallyHasAlpha = false; |
| 174 | |
| 175 | for (int y = bm->height() - 1; y >= 0; --y) { |
| 176 | SkPMColor* p = bm->getAddr32(0, y); |
| 177 | for (int x = bm->width() - 1; x >= 0; --x) { |
| 178 | if (match == *p) { |
| 179 | *p = 0; |
| 180 | reallyHasAlpha = true; |
| 181 | } |
| 182 | p += 1; |
| 183 | } |
| 184 | } |
| 185 | return reallyHasAlpha; |
| 186 | } |
| 187 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 188 | static bool canUpscalePaletteToConfig(SkColorType dstColorType, bool srcHasAlpha) { |
| 189 | switch (dstColorType) { |
| 190 | case kN32_SkColorType: |
| 191 | case kARGB_4444_SkColorType: |
reed@android.com | b6137c3 | 2009-07-29 20:56:52 +0000 | [diff] [blame] | 192 | return true; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 193 | case kRGB_565_SkColorType: |
reed@android.com | b6137c3 | 2009-07-29 20:56:52 +0000 | [diff] [blame] | 194 | // only return true if the src is opaque (since 565 is opaque) |
| 195 | return !srcHasAlpha; |
| 196 | default: |
| 197 | return false; |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | // call only if color_type is PALETTE. Returns true if the ctable has alpha |
| 202 | static bool hasTransparencyInPalette(png_structp png_ptr, png_infop info_ptr) { |
| 203 | png_bytep trans; |
| 204 | int num_trans; |
| 205 | |
| 206 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { |
| 207 | png_get_tRNS(png_ptr, info_ptr, &trans, &num_trans, NULL); |
| 208 | return num_trans > 0; |
| 209 | } |
| 210 | return false; |
reed@android.com | 1134426 | 2009-07-08 20:09:23 +0000 | [diff] [blame] | 211 | } |
| 212 | |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 213 | void do_nothing_warning_fn(png_structp, png_const_charp) { |
| 214 | /* do nothing */ |
| 215 | } |
| 216 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 217 | bool SkPNGImageDecoder::onDecodeInit(SkStream* sk_stream, png_structp *png_ptrp, |
| 218 | png_infop *info_ptrp) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 219 | /* Create and initialize the png_struct with the desired error handler |
| 220 | * functions. If you want to use the default stderr and longjump method, |
| 221 | * you can supply NULL for the last three parameters. We also supply the |
| 222 | * the compiler header file version, so that we know if the application |
| 223 | * was compiled with a compatible version of the library. */ |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 224 | |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 225 | png_error_ptr user_warning_fn = |
| 226 | (c_suppressPNGImageDecoderWarnings) ? (&do_nothing_warning_fn) : NULL; |
| 227 | /* NULL means to leave as default library behavior. */ |
halcanary@google.com | 2a10318 | 2013-10-14 12:49:15 +0000 | [diff] [blame] | 228 | /* c_suppressPNGImageDecoderWarnings default depends on SK_DEBUG. */ |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 229 | /* To suppress warnings with a SK_DEBUG binary, set the |
| 230 | * environment variable "skia_images_png_suppressDecoderWarnings" |
| 231 | * to "true". Inside a program that links to skia: |
| 232 | * SK_CONF_SET("images.png.suppressDecoderWarnings", true); */ |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 233 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 234 | png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 235 | NULL, sk_error_fn, user_warning_fn); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 236 | // png_voidp user_error_ptr, user_error_fn, user_warning_fn); |
| 237 | if (png_ptr == NULL) { |
| 238 | return false; |
| 239 | } |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 240 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 241 | *png_ptrp = png_ptr; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 242 | |
| 243 | /* Allocate/initialize the memory for image information. */ |
| 244 | png_infop info_ptr = png_create_info_struct(png_ptr); |
| 245 | if (info_ptr == NULL) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 246 | png_destroy_read_struct(&png_ptr, png_infopp_NULL, png_infopp_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 247 | return false; |
| 248 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 249 | *info_ptrp = info_ptr; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 250 | |
| 251 | /* Set error handling if you are using the setjmp/longjmp method (this is |
| 252 | * the normal method of doing things with libpng). REQUIRED unless you |
| 253 | * set up your own error handlers in the png_create_read_struct() earlier. |
| 254 | */ |
| 255 | if (setjmp(png_jmpbuf(png_ptr))) { |
scroggo@google.com | 5401cd0 | 2013-11-12 15:30:06 +0000 | [diff] [blame] | 256 | png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 257 | return false; |
| 258 | } |
| 259 | |
| 260 | /* If you are using replacement read functions, instead of calling |
| 261 | * png_init_io() here you would call: |
| 262 | */ |
| 263 | png_set_read_fn(png_ptr, (void *)sk_stream, sk_read_fn); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 264 | #ifdef SK_BUILD_FOR_ANDROID |
| 265 | png_set_seek_fn(png_ptr, sk_seek_fn); |
| 266 | #endif |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 267 | /* where user_io_ptr is a structure you want available to the callbacks */ |
| 268 | /* If we have already read some of the signature */ |
| 269 | // png_set_sig_bytes(png_ptr, 0 /* sig_read */ ); |
| 270 | |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 271 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 272 | // hookup our peeker so we can see any user-chunks the caller may be interested in |
| 273 | png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0); |
| 274 | if (this->getPeeker()) { |
| 275 | png_set_read_user_chunk_fn(png_ptr, (png_voidp)this->getPeeker(), sk_read_user_chunk); |
| 276 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 277 | #endif |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 278 | /* The call to png_read_info() gives us all of the information from the |
| 279 | * PNG file before the first IDAT (image data chunk). */ |
| 280 | png_read_info(png_ptr, info_ptr); |
| 281 | png_uint_32 origWidth, origHeight; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 282 | int bitDepth, colorType; |
| 283 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
| 284 | &colorType, int_p_NULL, int_p_NULL, int_p_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 285 | |
| 286 | /* tell libpng to strip 16 bit/color files down to 8 bits/color */ |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 287 | if (bitDepth == 16) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 288 | png_set_strip_16(png_ptr); |
| 289 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 290 | #ifdef PNG_READ_PACK_SUPPORTED |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 291 | /* Extract multiple pixels with bit depths of 1, 2, and 4 from a single |
| 292 | * byte into separate bytes (useful for paletted and grayscale images). */ |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 293 | if (bitDepth < 8) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 294 | png_set_packing(png_ptr); |
| 295 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 296 | #endif |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 297 | /* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */ |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 298 | if (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8) { |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 299 | png_set_expand_gray_1_2_4_to_8(png_ptr); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 300 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 301 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 302 | return true; |
| 303 | } |
| 304 | |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 305 | SkImageDecoder::Result SkPNGImageDecoder::onDecode(SkStream* sk_stream, SkBitmap* decodedBitmap, |
| 306 | Mode mode) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 307 | png_structp png_ptr; |
| 308 | png_infop info_ptr; |
| 309 | |
| 310 | if (!onDecodeInit(sk_stream, &png_ptr, &info_ptr)) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 311 | return kFailure; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 312 | } |
| 313 | |
scroggo@google.com | feeca3c | 2013-11-12 14:38:41 +0000 | [diff] [blame] | 314 | PNGAutoClean autoClean(png_ptr, info_ptr); |
| 315 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 316 | if (setjmp(png_jmpbuf(png_ptr))) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 317 | return kFailure; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 318 | } |
| 319 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 320 | png_uint_32 origWidth, origHeight; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 321 | int bitDepth, pngColorType, interlaceType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 322 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 323 | &pngColorType, &interlaceType, int_p_NULL, int_p_NULL); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 324 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 325 | SkColorType colorType; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 326 | bool hasAlpha = false; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 327 | SkPMColor theTranspColor = 0; // 0 tells us not to try to match |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 328 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 329 | if (!this->getBitmapColorType(png_ptr, info_ptr, &colorType, &hasAlpha, &theTranspColor)) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 330 | return kFailure; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 331 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 332 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 333 | SkAlphaType alphaType = this->getRequireUnpremultipliedColors() ? |
| 334 | kUnpremul_SkAlphaType : kPremul_SkAlphaType; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 335 | const int sampleSize = this->getSampleSize(); |
| 336 | SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize); |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 337 | decodedBitmap->setInfo(SkImageInfo::Make(sampler.scaledWidth(), sampler.scaledHeight(), |
| 338 | colorType, alphaType)); |
djsollen@google.com | 446cf71 | 2014-02-19 21:45:35 +0000 | [diff] [blame] | 339 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 340 | if (SkImageDecoder::kDecodeBounds_Mode == mode) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 341 | return kSuccess; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 342 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 343 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 344 | // from here down we are concerned with colortables and pixels |
| 345 | |
| 346 | // we track if we actually see a non-opaque pixels, since sometimes a PNG sets its colortype |
| 347 | // to |= PNG_COLOR_MASK_ALPHA, but all of its pixels are in fact opaque. We care, since we |
| 348 | // draw lots faster if we can flag the bitmap has being opaque |
| 349 | bool reallyHasAlpha = false; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 350 | SkColorTable* colorTable = NULL; |
| 351 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 352 | if (pngColorType == PNG_COLOR_TYPE_PALETTE) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 353 | decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 354 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 355 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 356 | SkAutoUnref aur(colorTable); |
| 357 | |
scroggo@google.com | bc69ce9 | 2013-07-09 15:45:14 +0000 | [diff] [blame] | 358 | if (!this->allocPixelRef(decodedBitmap, |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 359 | kIndex_8_SkColorType == colorType ? colorTable : NULL)) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 360 | return kFailure; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 361 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 362 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 363 | SkAutoLockPixels alp(*decodedBitmap); |
| 364 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 365 | /* Turn on interlace handling. REQUIRED if you are not using |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 366 | * png_read_image(). To see how to handle interlacing passes, |
| 367 | * see the png_read_row() method below: |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 368 | */ |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 369 | const int number_passes = (interlaceType != PNG_INTERLACE_NONE) ? |
| 370 | png_set_interlace_handling(png_ptr) : 1; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 371 | |
| 372 | /* Optional call to gamma correct and add the background to the palette |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 373 | * and update info structure. REQUIRED if you are expecting libpng to |
| 374 | * update the palette for you (ie you selected such a transform above). |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 375 | */ |
| 376 | png_read_update_info(png_ptr, info_ptr); |
| 377 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 378 | if ((kAlpha_8_SkColorType == colorType || kIndex_8_SkColorType == colorType) && |
| 379 | 1 == sampleSize) { |
| 380 | if (kAlpha_8_SkColorType == colorType) { |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 381 | // For an A8 bitmap, we assume there is an alpha for speed. It is |
| 382 | // possible the bitmap is opaque, but that is an unlikely use case |
| 383 | // since it would not be very interesting. |
| 384 | reallyHasAlpha = true; |
| 385 | // A8 is only allowed if the original was GRAY. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 386 | SkASSERT(PNG_COLOR_TYPE_GRAY == pngColorType); |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 387 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 388 | for (int i = 0; i < number_passes; i++) { |
| 389 | for (png_uint_32 y = 0; y < origHeight; y++) { |
| 390 | uint8_t* bmRow = decodedBitmap->getAddr8(0, y); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 391 | png_read_rows(png_ptr, &bmRow, png_bytepp_NULL, 1); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | } else { |
| 395 | SkScaledBitmapSampler::SrcConfig sc; |
| 396 | int srcBytesPerPixel = 4; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 397 | |
reed@android.com | 1134426 | 2009-07-08 20:09:23 +0000 | [diff] [blame] | 398 | if (colorTable != NULL) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 399 | sc = SkScaledBitmapSampler::kIndex; |
| 400 | srcBytesPerPixel = 1; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 401 | } else if (kAlpha_8_SkColorType == colorType) { |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 402 | // A8 is only allowed if the original was GRAY. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 403 | SkASSERT(PNG_COLOR_TYPE_GRAY == pngColorType); |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 404 | sc = SkScaledBitmapSampler::kGray; |
| 405 | srcBytesPerPixel = 1; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 406 | } else if (hasAlpha) { |
| 407 | sc = SkScaledBitmapSampler::kRGBA; |
| 408 | } else { |
| 409 | sc = SkScaledBitmapSampler::kRGBX; |
| 410 | } |
reed@android.com | 1134426 | 2009-07-08 20:09:23 +0000 | [diff] [blame] | 411 | |
| 412 | /* We have to pass the colortable explicitly, since we may have one |
| 413 | even if our decodedBitmap doesn't, due to the request that we |
| 414 | upscale png's palette to a direct model |
| 415 | */ |
mtklein | 775b819 | 2014-12-02 09:11:25 -0800 | [diff] [blame] | 416 | const SkPMColor* colors = colorTable ? colorTable->readColors() : NULL; |
| 417 | if (!sampler.begin(decodedBitmap, sc, *this, colors)) { |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 418 | return kFailure; |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 419 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 420 | const int height = decodedBitmap->height(); |
| 421 | |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 422 | if (number_passes > 1) { |
| 423 | SkAutoMalloc storage(origWidth * origHeight * srcBytesPerPixel); |
| 424 | uint8_t* base = (uint8_t*)storage.get(); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 425 | size_t rowBytes = origWidth * srcBytesPerPixel; |
reed@android.com | a8a8b8b | 2009-05-04 15:00:11 +0000 | [diff] [blame] | 426 | |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 427 | for (int i = 0; i < number_passes; i++) { |
| 428 | uint8_t* row = base; |
| 429 | for (png_uint_32 y = 0; y < origHeight; y++) { |
| 430 | uint8_t* bmRow = row; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 431 | png_read_rows(png_ptr, &bmRow, png_bytepp_NULL, 1); |
| 432 | row += rowBytes; |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 433 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 434 | } |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 435 | // now sample it |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 436 | base += sampler.srcY0() * rowBytes; |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 437 | for (int y = 0; y < height; y++) { |
| 438 | reallyHasAlpha |= sampler.next(base); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 439 | base += sampler.srcDY() * rowBytes; |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 440 | } |
| 441 | } else { |
| 442 | SkAutoMalloc storage(origWidth * srcBytesPerPixel); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 443 | uint8_t* srcRow = (uint8_t*)storage.get(); |
| 444 | skip_src_rows(png_ptr, srcRow, sampler.srcY0()); |
| 445 | |
| 446 | for (int y = 0; y < height; y++) { |
| 447 | uint8_t* tmp = srcRow; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 448 | png_read_rows(png_ptr, &tmp, png_bytepp_NULL, 1); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 449 | reallyHasAlpha |= sampler.next(srcRow); |
| 450 | if (y < height - 1) { |
| 451 | skip_src_rows(png_ptr, srcRow, sampler.srcDY() - 1); |
| 452 | } |
| 453 | } |
reed@android.com | 862e91b | 2009-04-28 15:27:07 +0000 | [diff] [blame] | 454 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 455 | // skip the rest of the rows (if any) |
| 456 | png_uint_32 read = (height - 1) * sampler.srcDY() + |
| 457 | sampler.srcY0() + 1; |
| 458 | SkASSERT(read <= origHeight); |
| 459 | skip_src_rows(png_ptr, srcRow, origHeight - read); |
| 460 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /* read rest of file, and get additional chunks in info_ptr - REQUIRED */ |
| 464 | png_read_end(png_ptr, info_ptr); |
| 465 | |
| 466 | if (0 != theTranspColor) { |
| 467 | reallyHasAlpha |= substituteTranspColor(decodedBitmap, theTranspColor); |
| 468 | } |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 469 | if (reallyHasAlpha && this->getRequireUnpremultipliedColors()) { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 470 | switch (decodedBitmap->colorType()) { |
| 471 | case kIndex_8_SkColorType: |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 472 | // Fall through. |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 473 | case kARGB_4444_SkColorType: |
| 474 | // We have chosen not to support unpremul for these colortypes. |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 475 | return kFailure; |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 476 | default: { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 477 | // Fall through to finish the decode. This colortype either |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 478 | // supports unpremul or it is irrelevant because it has no |
| 479 | // alpha (or only alpha). |
| 480 | // These brackets prevent a warning. |
| 481 | } |
| 482 | } |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 483 | } |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 484 | |
djsollen@google.com | 446cf71 | 2014-02-19 21:45:35 +0000 | [diff] [blame] | 485 | if (!reallyHasAlpha) { |
| 486 | decodedBitmap->setAlphaType(kOpaque_SkAlphaType); |
reed@google.com | 383a697 | 2013-10-21 14:00:07 +0000 | [diff] [blame] | 487 | } |
scroggo | 2a12080 | 2014-10-22 12:07:00 -0700 | [diff] [blame] | 488 | return kSuccess; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 489 | } |
| 490 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 491 | |
| 492 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 493 | bool SkPNGImageDecoder::getBitmapColorType(png_structp png_ptr, png_infop info_ptr, |
| 494 | SkColorType* colorTypep, |
| 495 | bool* hasAlphap, |
| 496 | SkPMColor* SK_RESTRICT theTranspColorp) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 497 | png_uint_32 origWidth, origHeight; |
| 498 | int bitDepth, colorType; |
| 499 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
| 500 | &colorType, int_p_NULL, int_p_NULL, int_p_NULL); |
| 501 | |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 502 | #ifdef PNG_sBIT_SUPPORTED |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 503 | // check for sBIT chunk data, in case we should disable dithering because |
| 504 | // our data is not truely 8bits per component |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 505 | png_color_8p sig_bit; |
scroggo@google.com | 8d23924 | 2013-10-01 17:27:15 +0000 | [diff] [blame] | 506 | if (this->getDitherImage() && png_get_sBIT(png_ptr, info_ptr, &sig_bit)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 507 | #if 0 |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 508 | SkDebugf("----- sBIT %d %d %d %d\n", sig_bit->red, sig_bit->green, |
| 509 | sig_bit->blue, sig_bit->alpha); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 510 | #endif |
| 511 | // 0 seems to indicate no information available |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 512 | if (pos_le(sig_bit->red, SK_R16_BITS) && |
| 513 | pos_le(sig_bit->green, SK_G16_BITS) && |
| 514 | pos_le(sig_bit->blue, SK_B16_BITS)) { |
scroggo@google.com | 8d23924 | 2013-10-01 17:27:15 +0000 | [diff] [blame] | 515 | this->setDitherImage(false); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 516 | } |
| 517 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 518 | #endif |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 519 | |
| 520 | if (colorType == PNG_COLOR_TYPE_PALETTE) { |
| 521 | bool paletteHasAlpha = hasTransparencyInPalette(png_ptr, info_ptr); |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 522 | *colorTypep = this->getPrefColorType(kIndex_SrcDepth, paletteHasAlpha); |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 523 | // now see if we can upscale to their requested colortype |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 524 | if (!canUpscalePaletteToConfig(*colorTypep, paletteHasAlpha)) { |
| 525 | *colorTypep = kIndex_8_SkColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 526 | } |
| 527 | } else { |
| 528 | png_color_16p transpColor = NULL; |
| 529 | int numTransp = 0; |
| 530 | |
| 531 | png_get_tRNS(png_ptr, info_ptr, NULL, &numTransp, &transpColor); |
| 532 | |
| 533 | bool valid = png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS); |
| 534 | |
| 535 | if (valid && numTransp == 1 && transpColor != NULL) { |
| 536 | /* Compute our transparent color, which we'll match against later. |
| 537 | We don't really handle 16bit components properly here, since we |
| 538 | do our compare *after* the values have been knocked down to 8bit |
| 539 | which means we will find more matches than we should. The real |
| 540 | fix seems to be to see the actual 16bit components, do the |
| 541 | compare, and then knock it down to 8bits ourselves. |
| 542 | */ |
| 543 | if (colorType & PNG_COLOR_MASK_COLOR) { |
| 544 | if (16 == bitDepth) { |
| 545 | *theTranspColorp = SkPackARGB32(0xFF, transpColor->red >> 8, |
| 546 | transpColor->green >> 8, |
| 547 | transpColor->blue >> 8); |
| 548 | } else { |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 549 | /* We apply the mask because in a very small |
| 550 | number of corrupt PNGs, (transpColor->red > 255) |
| 551 | and (bitDepth == 8), for certain versions of libpng. */ |
| 552 | *theTranspColorp = SkPackARGB32(0xFF, |
| 553 | 0xFF & (transpColor->red), |
| 554 | 0xFF & (transpColor->green), |
| 555 | 0xFF & (transpColor->blue)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 556 | } |
| 557 | } else { // gray |
| 558 | if (16 == bitDepth) { |
| 559 | *theTranspColorp = SkPackARGB32(0xFF, transpColor->gray >> 8, |
| 560 | transpColor->gray >> 8, |
| 561 | transpColor->gray >> 8); |
| 562 | } else { |
halcanary@google.com | fed3037 | 2013-10-04 12:46:45 +0000 | [diff] [blame] | 563 | /* We apply the mask because in a very small |
| 564 | number of corrupt PNGs, (transpColor->red > |
| 565 | 255) and (bitDepth == 8), for certain versions |
| 566 | of libpng. For safety we assume the same could |
| 567 | happen with a grayscale PNG. */ |
| 568 | *theTranspColorp = SkPackARGB32(0xFF, |
| 569 | 0xFF & (transpColor->gray), |
| 570 | 0xFF & (transpColor->gray), |
| 571 | 0xFF & (transpColor->gray)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 572 | } |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | if (valid || |
| 577 | PNG_COLOR_TYPE_RGB_ALPHA == colorType || |
| 578 | PNG_COLOR_TYPE_GRAY_ALPHA == colorType) { |
| 579 | *hasAlphap = true; |
| 580 | } |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 581 | |
| 582 | SrcDepth srcDepth = k32Bit_SrcDepth; |
| 583 | if (PNG_COLOR_TYPE_GRAY == colorType) { |
| 584 | srcDepth = k8BitGray_SrcDepth; |
scroggo@google.com | 8e2ef01 | 2013-07-18 20:14:45 +0000 | [diff] [blame] | 585 | // Remove this assert, which fails on desk_pokemonwiki.skp |
| 586 | //SkASSERT(!*hasAlphap); |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 587 | } |
| 588 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 589 | *colorTypep = this->getPrefColorType(srcDepth, *hasAlphap); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 590 | // now match the request against our capabilities |
| 591 | if (*hasAlphap) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 592 | if (*colorTypep != kARGB_4444_SkColorType) { |
| 593 | *colorTypep = kN32_SkColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 594 | } |
| 595 | } else { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 596 | if (kAlpha_8_SkColorType == *colorTypep) { |
scroggo@google.com | 354fd97 | 2013-10-02 15:50:19 +0000 | [diff] [blame] | 597 | if (k8BitGray_SrcDepth != srcDepth) { |
| 598 | // Converting a non grayscale image to A8 is not currently supported. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 599 | *colorTypep = kN32_SkColorType; |
scroggo@google.com | 354fd97 | 2013-10-02 15:50:19 +0000 | [diff] [blame] | 600 | } |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 601 | } else if (*colorTypep != kRGB_565_SkColorType && |
| 602 | *colorTypep != kARGB_4444_SkColorType) { |
| 603 | *colorTypep = kN32_SkColorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 604 | } |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | // sanity check for size |
| 609 | { |
reed@google.com | 57212f9 | 2013-12-30 14:40:38 +0000 | [diff] [blame] | 610 | int64_t size = sk_64_mul(origWidth, origHeight); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 611 | // now check that if we are 4-bytes per pixel, we also don't overflow |
reed@google.com | 57212f9 | 2013-12-30 14:40:38 +0000 | [diff] [blame] | 612 | if (size < 0 || size > (0x7FFFFFFF >> 2)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 613 | return false; |
| 614 | } |
| 615 | } |
| 616 | |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 617 | // If the image has alpha and the decoder wants unpremultiplied |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 618 | // colors, the only supported colortype is 8888. |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 619 | if (this->getRequireUnpremultipliedColors() && *hasAlphap) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 620 | *colorTypep = kN32_SkColorType; |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 621 | } |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 622 | |
| 623 | if (fImageIndex != NULL) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 624 | if (kUnknown_SkColorType == fImageIndex->fColorType) { |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 625 | // This is the first time for this subset decode. From now on, |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 626 | // all decodes must be in the same colortype. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 627 | fImageIndex->fColorType = *colorTypep; |
| 628 | } else if (fImageIndex->fColorType != *colorTypep) { |
| 629 | // Requesting a different colortype for a subsequent decode is not |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 630 | // supported. Report failure before we make changes to png_ptr. |
| 631 | return false; |
| 632 | } |
| 633 | } |
| 634 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 635 | bool convertGrayToRGB = PNG_COLOR_TYPE_GRAY == colorType && *colorTypep != kAlpha_8_SkColorType; |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 636 | |
| 637 | // Unless the user is requesting A8, convert a grayscale image into RGB. |
| 638 | // GRAY_ALPHA will always be converted to RGB |
| 639 | if (convertGrayToRGB || colorType == PNG_COLOR_TYPE_GRAY_ALPHA) { |
| 640 | png_set_gray_to_rgb(png_ptr); |
| 641 | } |
| 642 | |
| 643 | // Add filler (or alpha) byte (after each RGB triplet) if necessary. |
| 644 | if (colorType == PNG_COLOR_TYPE_RGB || convertGrayToRGB) { |
| 645 | png_set_filler(png_ptr, 0xff, PNG_FILLER_AFTER); |
| 646 | } |
| 647 | |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 648 | return true; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 649 | } |
| 650 | |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 651 | typedef uint32_t (*PackColorProc)(U8CPU a, U8CPU r, U8CPU g, U8CPU b); |
| 652 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 653 | bool SkPNGImageDecoder::decodePalette(png_structp png_ptr, png_infop info_ptr, |
| 654 | bool *hasAlphap, bool *reallyHasAlphap, |
| 655 | SkColorTable **colorTablep) { |
| 656 | int numPalette; |
| 657 | png_colorp palette; |
| 658 | png_bytep trans; |
| 659 | int numTrans; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 660 | |
| 661 | png_get_PLTE(png_ptr, info_ptr, &palette, &numPalette); |
| 662 | |
| 663 | /* BUGGY IMAGE WORKAROUND |
| 664 | |
| 665 | We hit some images (e.g. fruit_.png) who contain bytes that are == colortable_count |
| 666 | which is a problem since we use the byte as an index. To work around this we grow |
| 667 | the colortable by 1 (if its < 256) and duplicate the last color into that slot. |
| 668 | */ |
| 669 | int colorCount = numPalette + (numPalette < 256); |
reed@google.com | 0a6151d | 2013-10-10 14:44:56 +0000 | [diff] [blame] | 670 | SkPMColor colorStorage[256]; // worst-case storage |
| 671 | SkPMColor* colorPtr = colorStorage; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 672 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 673 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { |
| 674 | png_get_tRNS(png_ptr, info_ptr, &trans, &numTrans, NULL); |
| 675 | *hasAlphap = (numTrans > 0); |
| 676 | } else { |
| 677 | numTrans = 0; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 678 | } |
reed@google.com | 0a6151d | 2013-10-10 14:44:56 +0000 | [diff] [blame] | 679 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 680 | // check for bad images that might make us crash |
| 681 | if (numTrans > numPalette) { |
| 682 | numTrans = numPalette; |
| 683 | } |
| 684 | |
| 685 | int index = 0; |
| 686 | int transLessThanFF = 0; |
| 687 | |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 688 | // Choose which function to use to create the color table. If the final destination's |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 689 | // colortype is unpremultiplied, the color table will store unpremultiplied colors. |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 690 | PackColorProc proc; |
| 691 | if (this->getRequireUnpremultipliedColors()) { |
| 692 | proc = &SkPackARGB32NoCheck; |
| 693 | } else { |
| 694 | proc = &SkPreMultiplyARGB; |
| 695 | } |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 696 | for (; index < numTrans; index++) { |
| 697 | transLessThanFF |= (int)*trans - 0xFF; |
scroggo@google.com | 2bbc2c9 | 2013-06-14 15:33:20 +0000 | [diff] [blame] | 698 | *colorPtr++ = proc(*trans++, palette->red, palette->green, palette->blue); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 699 | palette++; |
| 700 | } |
reed@google.com | 0a6151d | 2013-10-10 14:44:56 +0000 | [diff] [blame] | 701 | bool reallyHasAlpha = (transLessThanFF < 0); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 702 | |
| 703 | for (; index < numPalette; index++) { |
| 704 | *colorPtr++ = SkPackARGB32(0xFF, palette->red, palette->green, palette->blue); |
| 705 | palette++; |
| 706 | } |
| 707 | |
| 708 | // see BUGGY IMAGE WORKAROUND comment above |
| 709 | if (numPalette < 256) { |
| 710 | *colorPtr = colorPtr[-1]; |
| 711 | } |
reed@google.com | 0a6151d | 2013-10-10 14:44:56 +0000 | [diff] [blame] | 712 | |
reed | c5e15a1 | 2014-09-29 12:10:27 -0700 | [diff] [blame] | 713 | *colorTablep = SkNEW_ARGS(SkColorTable, (colorStorage, colorCount)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 714 | *reallyHasAlphap = reallyHasAlpha; |
| 715 | return true; |
| 716 | } |
| 717 | |
| 718 | #ifdef SK_BUILD_FOR_ANDROID |
| 719 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 720 | bool SkPNGImageDecoder::onBuildTileIndex(SkStreamRewindable* sk_stream, int *width, int *height) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 721 | png_structp png_ptr; |
| 722 | png_infop info_ptr; |
| 723 | |
| 724 | if (!onDecodeInit(sk_stream, &png_ptr, &info_ptr)) { |
| 725 | return false; |
| 726 | } |
| 727 | |
| 728 | if (setjmp(png_jmpbuf(png_ptr)) != 0) { |
| 729 | png_destroy_read_struct(&png_ptr, &info_ptr, png_infopp_NULL); |
| 730 | return false; |
| 731 | } |
| 732 | |
| 733 | png_uint_32 origWidth, origHeight; |
| 734 | int bitDepth, colorType; |
| 735 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
| 736 | &colorType, int_p_NULL, int_p_NULL, int_p_NULL); |
| 737 | |
| 738 | *width = origWidth; |
| 739 | *height = origHeight; |
| 740 | |
| 741 | png_build_index(png_ptr); |
| 742 | |
| 743 | if (fImageIndex) { |
| 744 | SkDELETE(fImageIndex); |
| 745 | } |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 746 | fImageIndex = SkNEW_ARGS(SkPNGImageIndex, (sk_stream, png_ptr, info_ptr)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 747 | |
| 748 | return true; |
| 749 | } |
| 750 | |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 751 | bool SkPNGImageDecoder::onDecodeSubset(SkBitmap* bm, const SkIRect& region) { |
| 752 | if (NULL == fImageIndex) { |
| 753 | return false; |
| 754 | } |
| 755 | |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 756 | png_structp png_ptr = fImageIndex->fPng_ptr; |
| 757 | png_infop info_ptr = fImageIndex->fInfo_ptr; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 758 | if (setjmp(png_jmpbuf(png_ptr))) { |
| 759 | return false; |
| 760 | } |
| 761 | |
| 762 | png_uint_32 origWidth, origHeight; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 763 | int bitDepth, pngColorType, interlaceType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 764 | png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bitDepth, |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 765 | &pngColorType, &interlaceType, int_p_NULL, int_p_NULL); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 766 | |
| 767 | SkIRect rect = SkIRect::MakeWH(origWidth, origHeight); |
| 768 | |
| 769 | if (!rect.intersect(region)) { |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 770 | // If the requested region is entirely outside the image, just |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 771 | // returns false |
| 772 | return false; |
| 773 | } |
| 774 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 775 | SkColorType colorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 776 | bool hasAlpha = false; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 777 | SkPMColor theTranspColor = 0; // 0 tells us not to try to match |
| 778 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 779 | if (!this->getBitmapColorType(png_ptr, info_ptr, &colorType, &hasAlpha, &theTranspColor)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 780 | return false; |
| 781 | } |
| 782 | |
| 783 | const int sampleSize = this->getSampleSize(); |
| 784 | SkScaledBitmapSampler sampler(origWidth, rect.height(), sampleSize); |
| 785 | |
| 786 | SkBitmap decodedBitmap; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 787 | decodedBitmap.setInfo(SkImageInfo::Make(sampler.scaledWidth(), sampler.scaledHeight(), |
| 788 | colorType, kPremul_SkAlphaType)); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 789 | |
| 790 | // from here down we are concerned with colortables and pixels |
| 791 | |
| 792 | // we track if we actually see a non-opaque pixels, since sometimes a PNG sets its colortype |
| 793 | // to |= PNG_COLOR_MASK_ALPHA, but all of its pixels are in fact opaque. We care, since we |
| 794 | // draw lots faster if we can flag the bitmap has being opaque |
| 795 | bool reallyHasAlpha = false; |
| 796 | SkColorTable* colorTable = NULL; |
| 797 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 798 | if (pngColorType == PNG_COLOR_TYPE_PALETTE) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 799 | decodePalette(png_ptr, info_ptr, &hasAlpha, &reallyHasAlpha, &colorTable); |
| 800 | } |
| 801 | |
| 802 | SkAutoUnref aur(colorTable); |
| 803 | |
| 804 | // Check ahead of time if the swap(dest, src) is possible. |
| 805 | // If yes, then we will stick to AllocPixelRef since it's cheaper with the swap happening. |
| 806 | // If no, then we will use alloc to allocate pixels to prevent garbage collection. |
| 807 | int w = rect.width() / sampleSize; |
| 808 | int h = rect.height() / sampleSize; |
| 809 | const bool swapOnly = (rect == region) && (w == decodedBitmap.width()) && |
| 810 | (h == decodedBitmap.height()) && bm->isNull(); |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 811 | const bool needColorTable = kIndex_8_SkColorType == colorType; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 812 | if (swapOnly) { |
| 813 | if (!this->allocPixelRef(&decodedBitmap, needColorTable ? colorTable : NULL)) { |
| 814 | return false; |
| 815 | } |
| 816 | } else { |
reed | 8482504 | 2014-09-02 12:50:45 -0700 | [diff] [blame] | 817 | if (!decodedBitmap.tryAllocPixels(NULL, needColorTable ? colorTable : NULL)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 818 | return false; |
| 819 | } |
| 820 | } |
| 821 | SkAutoLockPixels alp(decodedBitmap); |
| 822 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 823 | /* Turn on interlace handling. REQUIRED if you are not using |
| 824 | * png_read_image(). To see how to handle interlacing passes, |
| 825 | * see the png_read_row() method below: |
| 826 | */ |
| 827 | const int number_passes = (interlaceType != PNG_INTERLACE_NONE) ? |
| 828 | png_set_interlace_handling(png_ptr) : 1; |
| 829 | |
| 830 | /* Optional call to gamma correct and add the background to the palette |
| 831 | * and update info structure. REQUIRED if you are expecting libpng to |
| 832 | * update the palette for you (ie you selected such a transform above). |
| 833 | */ |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 834 | |
| 835 | // Direct access to png_ptr fields is deprecated in libpng > 1.2. |
| 836 | #if defined(PNG_1_0_X) || defined (PNG_1_2_X) |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 837 | png_ptr->pass = 0; |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 838 | #else |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 839 | // FIXME: This sets pass as desired, but also sets iwidth. Is that ok? |
| 840 | png_set_interlaced_pass(png_ptr, 0); |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 841 | #endif |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 842 | png_read_update_info(png_ptr, info_ptr); |
| 843 | |
| 844 | int actualTop = rect.fTop; |
| 845 | |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 846 | if ((kAlpha_8_SkColorType == colorType || kIndex_8_SkColorType == colorType) |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 847 | && 1 == sampleSize) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 848 | if (kAlpha_8_SkColorType == colorType) { |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 849 | // For an A8 bitmap, we assume there is an alpha for speed. It is |
| 850 | // possible the bitmap is opaque, but that is an unlikely use case |
| 851 | // since it would not be very interesting. |
| 852 | reallyHasAlpha = true; |
| 853 | // A8 is only allowed if the original was GRAY. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 854 | SkASSERT(PNG_COLOR_TYPE_GRAY == pngColorType); |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 855 | } |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 856 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 857 | for (int i = 0; i < number_passes; i++) { |
| 858 | png_configure_decoder(png_ptr, &actualTop, i); |
| 859 | for (int j = 0; j < rect.fTop - actualTop; j++) { |
| 860 | uint8_t* bmRow = decodedBitmap.getAddr8(0, 0); |
| 861 | png_read_rows(png_ptr, &bmRow, png_bytepp_NULL, 1); |
| 862 | } |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 863 | png_uint_32 bitmapHeight = (png_uint_32) decodedBitmap.height(); |
| 864 | for (png_uint_32 y = 0; y < bitmapHeight; y++) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 865 | uint8_t* bmRow = decodedBitmap.getAddr8(0, y); |
| 866 | png_read_rows(png_ptr, &bmRow, png_bytepp_NULL, 1); |
| 867 | } |
| 868 | } |
| 869 | } else { |
| 870 | SkScaledBitmapSampler::SrcConfig sc; |
| 871 | int srcBytesPerPixel = 4; |
| 872 | |
| 873 | if (colorTable != NULL) { |
| 874 | sc = SkScaledBitmapSampler::kIndex; |
| 875 | srcBytesPerPixel = 1; |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 876 | } else if (kAlpha_8_SkColorType == colorType) { |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 877 | // A8 is only allowed if the original was GRAY. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 878 | SkASSERT(PNG_COLOR_TYPE_GRAY == pngColorType); |
scroggo@google.com | c70a3aa | 2013-07-18 20:03:15 +0000 | [diff] [blame] | 879 | sc = SkScaledBitmapSampler::kGray; |
| 880 | srcBytesPerPixel = 1; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 881 | } else if (hasAlpha) { |
| 882 | sc = SkScaledBitmapSampler::kRGBA; |
| 883 | } else { |
| 884 | sc = SkScaledBitmapSampler::kRGBX; |
| 885 | } |
| 886 | |
| 887 | /* We have to pass the colortable explicitly, since we may have one |
| 888 | even if our decodedBitmap doesn't, due to the request that we |
| 889 | upscale png's palette to a direct model |
| 890 | */ |
mtklein | 775b819 | 2014-12-02 09:11:25 -0800 | [diff] [blame] | 891 | const SkPMColor* colors = colorTable ? colorTable->readColors() : NULL; |
| 892 | if (!sampler.begin(&decodedBitmap, sc, *this, colors)) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 893 | return false; |
| 894 | } |
| 895 | const int height = decodedBitmap.height(); |
| 896 | |
| 897 | if (number_passes > 1) { |
| 898 | SkAutoMalloc storage(origWidth * origHeight * srcBytesPerPixel); |
| 899 | uint8_t* base = (uint8_t*)storage.get(); |
| 900 | size_t rb = origWidth * srcBytesPerPixel; |
| 901 | |
| 902 | for (int i = 0; i < number_passes; i++) { |
| 903 | png_configure_decoder(png_ptr, &actualTop, i); |
| 904 | for (int j = 0; j < rect.fTop - actualTop; j++) { |
scroggo | fc7063b | 2014-07-25 13:54:43 -0700 | [diff] [blame] | 905 | png_read_rows(png_ptr, &base, png_bytepp_NULL, 1); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 906 | } |
| 907 | uint8_t* row = base; |
| 908 | for (int32_t y = 0; y < rect.height(); y++) { |
| 909 | uint8_t* bmRow = row; |
| 910 | png_read_rows(png_ptr, &bmRow, png_bytepp_NULL, 1); |
| 911 | row += rb; |
| 912 | } |
| 913 | } |
| 914 | // now sample it |
| 915 | base += sampler.srcY0() * rb; |
| 916 | for (int y = 0; y < height; y++) { |
| 917 | reallyHasAlpha |= sampler.next(base); |
| 918 | base += sampler.srcDY() * rb; |
| 919 | } |
| 920 | } else { |
| 921 | SkAutoMalloc storage(origWidth * srcBytesPerPixel); |
| 922 | uint8_t* srcRow = (uint8_t*)storage.get(); |
| 923 | |
| 924 | png_configure_decoder(png_ptr, &actualTop, 0); |
| 925 | skip_src_rows(png_ptr, srcRow, sampler.srcY0()); |
| 926 | |
| 927 | for (int i = 0; i < rect.fTop - actualTop; i++) { |
scroggo | fc7063b | 2014-07-25 13:54:43 -0700 | [diff] [blame] | 928 | png_read_rows(png_ptr, &srcRow, png_bytepp_NULL, 1); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 929 | } |
| 930 | for (int y = 0; y < height; y++) { |
| 931 | uint8_t* tmp = srcRow; |
| 932 | png_read_rows(png_ptr, &tmp, png_bytepp_NULL, 1); |
| 933 | reallyHasAlpha |= sampler.next(srcRow); |
| 934 | if (y < height - 1) { |
| 935 | skip_src_rows(png_ptr, srcRow, sampler.srcDY() - 1); |
| 936 | } |
| 937 | } |
| 938 | } |
| 939 | } |
| 940 | |
| 941 | if (0 != theTranspColor) { |
| 942 | reallyHasAlpha |= substituteTranspColor(&decodedBitmap, theTranspColor); |
| 943 | } |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 944 | if (reallyHasAlpha && this->getRequireUnpremultipliedColors()) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 945 | switch (decodedBitmap.colorType()) { |
| 946 | case kIndex_8_SkColorType: |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 947 | // Fall through. |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 948 | case kARGB_4444_SkColorType: |
| 949 | // We have chosen not to support unpremul for these colortypess. |
scroggo@google.com | 5ee18dd | 2013-10-21 20:47:31 +0000 | [diff] [blame] | 950 | return false; |
| 951 | default: { |
| 952 | // Fall through to finish the decode. This config either |
| 953 | // supports unpremul or it is irrelevant because it has no |
| 954 | // alpha (or only alpha). |
| 955 | // These brackets prevent a warning. |
| 956 | } |
| 957 | } |
commit-bot@chromium.org | 546f70c | 2013-10-03 17:13:38 +0000 | [diff] [blame] | 958 | } |
reed@google.com | 383a697 | 2013-10-21 14:00:07 +0000 | [diff] [blame] | 959 | SkAlphaType alphaType = kOpaque_SkAlphaType; |
| 960 | if (reallyHasAlpha) { |
| 961 | if (this->getRequireUnpremultipliedColors()) { |
| 962 | alphaType = kUnpremul_SkAlphaType; |
| 963 | } else { |
| 964 | alphaType = kPremul_SkAlphaType; |
| 965 | } |
| 966 | } |
| 967 | decodedBitmap.setAlphaType(alphaType); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 968 | |
| 969 | if (swapOnly) { |
| 970 | bm->swap(decodedBitmap); |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 971 | return true; |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 972 | } |
scroggo@google.com | 7e6fcee | 2013-05-03 20:14:28 +0000 | [diff] [blame] | 973 | return this->cropBitmap(bm, &decodedBitmap, sampleSize, region.x(), region.y(), |
| 974 | region.width(), region.height(), 0, rect.y()); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 975 | } |
| 976 | #endif |
| 977 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 978 | /////////////////////////////////////////////////////////////////////////////// |
| 979 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 980 | #include "SkColorPriv.h" |
| 981 | #include "SkUnPreMultiply.h" |
| 982 | |
| 983 | static void sk_write_fn(png_structp png_ptr, png_bytep data, png_size_t len) { |
commit-bot@chromium.org | c1c5695 | 2013-05-02 13:41:34 +0000 | [diff] [blame] | 984 | SkWStream* sk_stream = (SkWStream*)png_get_io_ptr(png_ptr); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 985 | if (!sk_stream->write(data, len)) { |
| 986 | png_error(png_ptr, "sk_write_fn Error!"); |
| 987 | } |
| 988 | } |
| 989 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 990 | static transform_scanline_proc choose_proc(SkColorType ct, bool hasAlpha) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 991 | // we don't care about search on alpha if we're kIndex8, since only the |
| 992 | // colortable packing cares about that distinction, not the pixels |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 993 | if (kIndex_8_SkColorType == ct) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 994 | hasAlpha = false; // we store false in the table entries for kIndex8 |
| 995 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 996 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 997 | static const struct { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 998 | SkColorType fColorType; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 999 | bool fHasAlpha; |
| 1000 | transform_scanline_proc fProc; |
| 1001 | } gMap[] = { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1002 | { kRGB_565_SkColorType, false, transform_scanline_565 }, |
| 1003 | { kN32_SkColorType, false, transform_scanline_888 }, |
| 1004 | { kN32_SkColorType, true, transform_scanline_8888 }, |
| 1005 | { kARGB_4444_SkColorType, false, transform_scanline_444 }, |
| 1006 | { kARGB_4444_SkColorType, true, transform_scanline_4444 }, |
| 1007 | { kIndex_8_SkColorType, false, transform_scanline_memcpy }, |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1008 | }; |
| 1009 | |
| 1010 | for (int i = SK_ARRAY_COUNT(gMap) - 1; i >= 0; --i) { |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1011 | if (gMap[i].fColorType == ct && gMap[i].fHasAlpha == hasAlpha) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1012 | return gMap[i].fProc; |
| 1013 | } |
| 1014 | } |
| 1015 | sk_throw(); |
| 1016 | return NULL; |
| 1017 | } |
| 1018 | |
| 1019 | // return the minimum legal bitdepth (by png standards) for this many colortable |
| 1020 | // entries. SkBitmap always stores in 8bits per pixel, but for colorcount <= 16, |
| 1021 | // we can use fewer bits per in png |
| 1022 | static int computeBitDepth(int colorCount) { |
| 1023 | #if 0 |
| 1024 | int bits = SkNextLog2(colorCount); |
| 1025 | SkASSERT(bits >= 1 && bits <= 8); |
| 1026 | // now we need bits itself to be a power of 2 (e.g. 1, 2, 4, 8) |
| 1027 | return SkNextPow2(bits); |
| 1028 | #else |
| 1029 | // for the moment, we don't know how to pack bitdepth < 8 |
| 1030 | return 8; |
| 1031 | #endif |
| 1032 | } |
| 1033 | |
| 1034 | /* Pack palette[] with the corresponding colors, and if hasAlpha is true, also |
| 1035 | pack trans[] and return the number of trans[] entries written. If hasAlpha |
| 1036 | is false, the return value will always be 0. |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1037 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1038 | Note: this routine takes care of unpremultiplying the RGB values when we |
| 1039 | have alpha in the colortable, since png doesn't support premul colors |
| 1040 | */ |
reed@android.com | 6f25297 | 2009-01-14 16:46:16 +0000 | [diff] [blame] | 1041 | static inline int pack_palette(SkColorTable* ctable, |
reed@android.com | b50a60c | 2009-01-14 17:51:08 +0000 | [diff] [blame] | 1042 | png_color* SK_RESTRICT palette, |
| 1043 | png_byte* SK_RESTRICT trans, bool hasAlpha) { |
mtklein | 775b819 | 2014-12-02 09:11:25 -0800 | [diff] [blame] | 1044 | const SkPMColor* SK_RESTRICT colors = ctable ? ctable->readColors() : NULL; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1045 | const int ctCount = ctable->count(); |
| 1046 | int i, num_trans = 0; |
| 1047 | |
| 1048 | if (hasAlpha) { |
| 1049 | /* first see if we have some number of fully opaque at the end of the |
| 1050 | ctable. PNG allows num_trans < num_palette, but all of the trans |
| 1051 | entries must come first in the palette. If I was smarter, I'd |
| 1052 | reorder the indices and ctable so that all non-opaque colors came |
| 1053 | first in the palette. But, since that would slow down the encode, |
| 1054 | I'm leaving the indices and ctable order as is, and just looking |
| 1055 | at the tail of the ctable for opaqueness. |
| 1056 | */ |
| 1057 | num_trans = ctCount; |
| 1058 | for (i = ctCount - 1; i >= 0; --i) { |
| 1059 | if (SkGetPackedA32(colors[i]) != 0xFF) { |
| 1060 | break; |
| 1061 | } |
| 1062 | num_trans -= 1; |
| 1063 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1064 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1065 | const SkUnPreMultiply::Scale* SK_RESTRICT table = |
| 1066 | SkUnPreMultiply::GetScaleTable(); |
| 1067 | |
| 1068 | for (i = 0; i < num_trans; i++) { |
| 1069 | const SkPMColor c = *colors++; |
| 1070 | const unsigned a = SkGetPackedA32(c); |
| 1071 | const SkUnPreMultiply::Scale s = table[a]; |
| 1072 | trans[i] = a; |
| 1073 | palette[i].red = SkUnPreMultiply::ApplyScale(s, SkGetPackedR32(c)); |
| 1074 | palette[i].green = SkUnPreMultiply::ApplyScale(s,SkGetPackedG32(c)); |
| 1075 | palette[i].blue = SkUnPreMultiply::ApplyScale(s, SkGetPackedB32(c)); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1076 | } |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1077 | // now fall out of this if-block to use common code for the trailing |
| 1078 | // opaque entries |
| 1079 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1080 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1081 | // these (remaining) entries are opaque |
| 1082 | for (i = num_trans; i < ctCount; i++) { |
| 1083 | SkPMColor c = *colors++; |
| 1084 | palette[i].red = SkGetPackedR32(c); |
| 1085 | palette[i].green = SkGetPackedG32(c); |
| 1086 | palette[i].blue = SkGetPackedB32(c); |
| 1087 | } |
| 1088 | return num_trans; |
| 1089 | } |
| 1090 | |
| 1091 | class SkPNGImageEncoder : public SkImageEncoder { |
| 1092 | protected: |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 1093 | bool onEncode(SkWStream* stream, const SkBitmap& bm, int quality) SK_OVERRIDE; |
tomhudson@google.com | 5c210c7 | 2011-07-28 21:06:40 +0000 | [diff] [blame] | 1094 | private: |
| 1095 | bool doEncode(SkWStream* stream, const SkBitmap& bm, |
| 1096 | const bool& hasAlpha, int colorType, |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1097 | int bitDepth, SkColorType ct, |
tomhudson@google.com | 5c210c7 | 2011-07-28 21:06:40 +0000 | [diff] [blame] | 1098 | png_color_8& sig_bit); |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 1099 | |
| 1100 | typedef SkImageEncoder INHERITED; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1101 | }; |
| 1102 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1103 | bool SkPNGImageEncoder::onEncode(SkWStream* stream, const SkBitmap& bitmap, int /*quality*/) { |
| 1104 | SkColorType ct = bitmap.colorType(); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1105 | |
| 1106 | const bool hasAlpha = !bitmap.isOpaque(); |
| 1107 | int colorType = PNG_COLOR_MASK_COLOR; |
| 1108 | int bitDepth = 8; // default for color |
| 1109 | png_color_8 sig_bit; |
| 1110 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1111 | switch (ct) { |
| 1112 | case kIndex_8_SkColorType: |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1113 | colorType |= PNG_COLOR_MASK_PALETTE; |
| 1114 | // fall through to the ARGB_8888 case |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1115 | case kN32_SkColorType: |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1116 | sig_bit.red = 8; |
| 1117 | sig_bit.green = 8; |
| 1118 | sig_bit.blue = 8; |
| 1119 | sig_bit.alpha = 8; |
| 1120 | break; |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1121 | case kARGB_4444_SkColorType: |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1122 | sig_bit.red = 4; |
| 1123 | sig_bit.green = 4; |
| 1124 | sig_bit.blue = 4; |
| 1125 | sig_bit.alpha = 4; |
| 1126 | break; |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1127 | case kRGB_565_SkColorType: |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1128 | sig_bit.red = 5; |
| 1129 | sig_bit.green = 6; |
| 1130 | sig_bit.blue = 5; |
| 1131 | sig_bit.alpha = 0; |
| 1132 | break; |
| 1133 | default: |
| 1134 | return false; |
| 1135 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1136 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1137 | if (hasAlpha) { |
| 1138 | // don't specify alpha if we're a palette, even if our ctable has alpha |
| 1139 | if (!(colorType & PNG_COLOR_MASK_PALETTE)) { |
| 1140 | colorType |= PNG_COLOR_MASK_ALPHA; |
| 1141 | } |
| 1142 | } else { |
| 1143 | sig_bit.alpha = 0; |
| 1144 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 1145 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1146 | SkAutoLockPixels alp(bitmap); |
| 1147 | // readyToDraw checks for pixels (and colortable if that is required) |
| 1148 | if (!bitmap.readyToDraw()) { |
| 1149 | return false; |
| 1150 | } |
| 1151 | |
| 1152 | // we must do this after we have locked the pixels |
| 1153 | SkColorTable* ctable = bitmap.getColorTable(); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 1154 | if (ctable) { |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1155 | if (ctable->count() == 0) { |
| 1156 | return false; |
| 1157 | } |
| 1158 | // check if we can store in fewer than 8 bits |
| 1159 | bitDepth = computeBitDepth(ctable->count()); |
| 1160 | } |
| 1161 | |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1162 | return doEncode(stream, bitmap, hasAlpha, colorType, bitDepth, ct, sig_bit); |
tomhudson@google.com | 5c210c7 | 2011-07-28 21:06:40 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
| 1165 | bool SkPNGImageEncoder::doEncode(SkWStream* stream, const SkBitmap& bitmap, |
| 1166 | const bool& hasAlpha, int colorType, |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1167 | int bitDepth, SkColorType ct, |
tomhudson@google.com | 5c210c7 | 2011-07-28 21:06:40 +0000 | [diff] [blame] | 1168 | png_color_8& sig_bit) { |
| 1169 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1170 | png_structp png_ptr; |
| 1171 | png_infop info_ptr; |
| 1172 | |
| 1173 | png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, sk_error_fn, |
| 1174 | NULL); |
| 1175 | if (NULL == png_ptr) { |
| 1176 | return false; |
| 1177 | } |
| 1178 | |
| 1179 | info_ptr = png_create_info_struct(png_ptr); |
| 1180 | if (NULL == info_ptr) { |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 1181 | png_destroy_write_struct(&png_ptr, png_infopp_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1182 | return false; |
| 1183 | } |
| 1184 | |
| 1185 | /* Set error handling. REQUIRED if you aren't supplying your own |
| 1186 | * error handling functions in the png_create_write_struct() call. |
| 1187 | */ |
| 1188 | if (setjmp(png_jmpbuf(png_ptr))) { |
| 1189 | png_destroy_write_struct(&png_ptr, &info_ptr); |
| 1190 | return false; |
| 1191 | } |
| 1192 | |
commit-bot@chromium.org | a936e37 | 2013-03-14 14:42:18 +0000 | [diff] [blame] | 1193 | png_set_write_fn(png_ptr, (void*)stream, sk_write_fn, png_flush_ptr_NULL); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1194 | |
| 1195 | /* Set the image information here. Width and height are up to 2^31, |
| 1196 | * bit_depth is one of 1, 2, 4, 8, or 16, but valid values also depend on |
| 1197 | * the color_type selected. color_type is one of PNG_COLOR_TYPE_GRAY, |
| 1198 | * PNG_COLOR_TYPE_GRAY_ALPHA, PNG_COLOR_TYPE_PALETTE, PNG_COLOR_TYPE_RGB, |
| 1199 | * or PNG_COLOR_TYPE_RGB_ALPHA. interlace is either PNG_INTERLACE_NONE or |
| 1200 | * PNG_INTERLACE_ADAM7, and the compression_type and filter_type MUST |
| 1201 | * currently be PNG_COMPRESSION_TYPE_BASE and PNG_FILTER_TYPE_BASE. REQUIRED |
| 1202 | */ |
| 1203 | |
| 1204 | png_set_IHDR(png_ptr, info_ptr, bitmap.width(), bitmap.height(), |
| 1205 | bitDepth, colorType, |
| 1206 | PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, |
| 1207 | PNG_FILTER_TYPE_BASE); |
| 1208 | |
reed@android.com | 6189877 | 2009-07-07 19:38:01 +0000 | [diff] [blame] | 1209 | // set our colortable/trans arrays if needed |
| 1210 | png_color paletteColors[256]; |
| 1211 | png_byte trans[256]; |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1212 | if (kIndex_8_SkColorType == ct) { |
reed@android.com | 6189877 | 2009-07-07 19:38:01 +0000 | [diff] [blame] | 1213 | SkColorTable* ct = bitmap.getColorTable(); |
| 1214 | int numTrans = pack_palette(ct, paletteColors, trans, hasAlpha); |
| 1215 | png_set_PLTE(png_ptr, info_ptr, paletteColors, ct->count()); |
| 1216 | if (numTrans > 0) { |
| 1217 | png_set_tRNS(png_ptr, info_ptr, trans, numTrans, NULL); |
| 1218 | } |
| 1219 | } |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 1220 | #ifdef PNG_sBIT_SUPPORTED |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1221 | png_set_sBIT(png_ptr, info_ptr, &sig_bit); |
kkinnunen | 93b255b | 2014-10-19 22:07:23 -0700 | [diff] [blame] | 1222 | #endif |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1223 | png_write_info(png_ptr, info_ptr); |
| 1224 | |
| 1225 | const char* srcImage = (const char*)bitmap.getPixels(); |
| 1226 | SkAutoSMalloc<1024> rowStorage(bitmap.width() << 2); |
| 1227 | char* storage = (char*)rowStorage.get(); |
reed | 0689d7b | 2014-06-14 05:30:20 -0700 | [diff] [blame] | 1228 | transform_scanline_proc proc = choose_proc(ct, hasAlpha); |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1229 | |
| 1230 | for (int y = 0; y < bitmap.height(); y++) { |
| 1231 | png_bytep row_ptr = (png_bytep)storage; |
| 1232 | proc(srcImage, bitmap.width(), storage); |
| 1233 | png_write_rows(png_ptr, &row_ptr, 1); |
| 1234 | srcImage += bitmap.rowBytes(); |
| 1235 | } |
| 1236 | |
| 1237 | png_write_end(png_ptr, info_ptr); |
| 1238 | |
| 1239 | /* clean up after the write, and free any memory allocated */ |
| 1240 | png_destroy_write_struct(&png_ptr, &info_ptr); |
| 1241 | return true; |
| 1242 | } |
| 1243 | |
reed@android.com | 00bf85a | 2009-01-22 13:04:56 +0000 | [diff] [blame] | 1244 | /////////////////////////////////////////////////////////////////////////////// |
robertphillips@google.com | ec51cb8 | 2012-03-23 18:13:47 +0000 | [diff] [blame] | 1245 | DEFINE_DECODER_CREATOR(PNGImageDecoder); |
| 1246 | DEFINE_ENCODER_CREATOR(PNGImageEncoder); |
| 1247 | /////////////////////////////////////////////////////////////////////////////// |
reed@android.com | 00bf85a | 2009-01-22 13:04:56 +0000 | [diff] [blame] | 1248 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 1249 | static bool is_png(SkStreamRewindable* stream) { |
reed@android.com | 00bf85a | 2009-01-22 13:04:56 +0000 | [diff] [blame] | 1250 | char buf[PNG_BYTES_TO_CHECK]; |
| 1251 | if (stream->read(buf, PNG_BYTES_TO_CHECK) == PNG_BYTES_TO_CHECK && |
| 1252 | !png_sig_cmp((png_bytep) buf, (png_size_t)0, PNG_BYTES_TO_CHECK)) { |
scroggo@google.com | 39edf4c | 2013-04-25 17:33:51 +0000 | [diff] [blame] | 1253 | return true; |
| 1254 | } |
| 1255 | return false; |
| 1256 | } |
| 1257 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 1258 | SkImageDecoder* sk_libpng_dfactory(SkStreamRewindable* stream) { |
scroggo@google.com | 39edf4c | 2013-04-25 17:33:51 +0000 | [diff] [blame] | 1259 | if (is_png(stream)) { |
reed@android.com | 00bf85a | 2009-01-22 13:04:56 +0000 | [diff] [blame] | 1260 | return SkNEW(SkPNGImageDecoder); |
| 1261 | } |
| 1262 | return NULL; |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1263 | } |
| 1264 | |
scroggo@google.com | b5571b3 | 2013-09-25 21:34:24 +0000 | [diff] [blame] | 1265 | static SkImageDecoder::Format get_format_png(SkStreamRewindable* stream) { |
scroggo@google.com | 39edf4c | 2013-04-25 17:33:51 +0000 | [diff] [blame] | 1266 | if (is_png(stream)) { |
| 1267 | return SkImageDecoder::kPNG_Format; |
| 1268 | } |
| 1269 | return SkImageDecoder::kUnknown_Format; |
| 1270 | } |
| 1271 | |
reed@android.com | dfee579 | 2010-04-15 14:24:50 +0000 | [diff] [blame] | 1272 | SkImageEncoder* sk_libpng_efactory(SkImageEncoder::Type t) { |
reed@android.com | 00bf85a | 2009-01-22 13:04:56 +0000 | [diff] [blame] | 1273 | return (SkImageEncoder::kPNG_Type == t) ? SkNEW(SkPNGImageEncoder) : NULL; |
| 1274 | } |
| 1275 | |
mtklein@google.com | bd6343b | 2013-09-04 17:20:18 +0000 | [diff] [blame] | 1276 | static SkImageDecoder_DecodeReg gDReg(sk_libpng_dfactory); |
| 1277 | static SkImageDecoder_FormatReg gFormatReg(get_format_png); |
| 1278 | static SkImageEncoder_EncodeReg gEReg(sk_libpng_efactory); |