scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Google Inc. |
| 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 | |
msarett | ad8bcfe | 2016-03-07 07:09:03 -0800 | [diff] [blame] | 8 | #include "SkBitmap.h" |
msarett | 7411438 | 2015-03-16 11:55:18 -0700 | [diff] [blame] | 9 | #include "SkCodecPriv.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 10 | #include "SkColorPriv.h" |
Matt Sarett | c434f51 | 2016-10-13 18:24:20 -0400 | [diff] [blame] | 11 | #include "SkColorSpace.h" |
Matt Sarett | 5dfb4e4 | 2017-01-04 09:41:09 -0500 | [diff] [blame] | 12 | #include "SkColorSpacePriv.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 13 | #include "SkColorTable.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 14 | #include "SkMath.h" |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 15 | #include "SkOpts.h" |
msarett | be1d555 | 2016-01-21 09:05:23 -0800 | [diff] [blame] | 16 | #include "SkPngCodec.h" |
msarett | 5544795 | 2016-07-22 14:07:23 -0700 | [diff] [blame] | 17 | #include "SkPoint3.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 18 | #include "SkSize.h" |
| 19 | #include "SkStream.h" |
| 20 | #include "SkSwizzler.h" |
scroggo | 565901d | 2015-12-10 10:44:13 -0800 | [diff] [blame] | 21 | #include "SkTemplates.h" |
bungeman | 5d2cd6e | 2016-02-23 07:34:25 -0800 | [diff] [blame] | 22 | #include "SkUtils.h" |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 23 | |
mtklein | 6321381 | 2016-08-24 09:55:56 -0700 | [diff] [blame] | 24 | #include "png.h" |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 25 | #include <algorithm> |
mtklein | 6321381 | 2016-08-24 09:55:56 -0700 | [diff] [blame] | 26 | |
mtklein | dc90b53 | 2016-07-28 14:45:28 -0700 | [diff] [blame] | 27 | // This warning triggers false postives way too often in here. |
| 28 | #if defined(__GNUC__) && !defined(__clang__) |
| 29 | #pragma GCC diagnostic ignored "-Wclobbered" |
| 30 | #endif |
| 31 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 32 | // FIXME (scroggo): We can use png_jumpbuf directly once Google3 is on 1.6 |
| 33 | #define PNG_JMPBUF(x) png_jmpbuf((png_structp) x) |
| 34 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 35 | /////////////////////////////////////////////////////////////////////////////// |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 36 | // Callback functions |
| 37 | /////////////////////////////////////////////////////////////////////////////// |
| 38 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 39 | // When setjmp is first called, it returns 0, meaning longjmp was not called. |
| 40 | constexpr int kSetJmpOkay = 0; |
| 41 | // An error internal to libpng. |
| 42 | constexpr int kPngError = 1; |
| 43 | // Passed to longjmp when we have decoded as many lines as we need. |
| 44 | constexpr int kStopDecoding = 2; |
| 45 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 46 | static void sk_error_fn(png_structp png_ptr, png_const_charp msg) { |
scroggo | 230d4ac | 2015-03-26 07:15:55 -0700 | [diff] [blame] | 47 | SkCodecPrintf("------ png error %s\n", msg); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 48 | longjmp(PNG_JMPBUF(png_ptr), kPngError); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 49 | } |
| 50 | |
scroggo | 0eed6df | 2015-03-26 10:07:56 -0700 | [diff] [blame] | 51 | void sk_warning_fn(png_structp, png_const_charp msg) { |
| 52 | SkCodecPrintf("----- png warning %s\n", msg); |
| 53 | } |
| 54 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 55 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
| 56 | static int sk_read_user_chunk(png_structp png_ptr, png_unknown_chunkp chunk) { |
| 57 | SkPngChunkReader* chunkReader = (SkPngChunkReader*)png_get_user_chunk_ptr(png_ptr); |
| 58 | // readChunk() returning true means continue decoding |
| 59 | return chunkReader->readChunk((const char*)chunk->name, chunk->data, chunk->size) ? 1 : -1; |
| 60 | } |
| 61 | #endif |
| 62 | |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 63 | /////////////////////////////////////////////////////////////////////////////// |
| 64 | // Helpers |
| 65 | /////////////////////////////////////////////////////////////////////////////// |
| 66 | |
| 67 | class AutoCleanPng : public SkNoncopyable { |
| 68 | public: |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 69 | /* |
| 70 | * This class does not take ownership of stream or reader, but if codecPtr |
| 71 | * is non-NULL, and decodeBounds succeeds, it will have created a new |
| 72 | * SkCodec (pointed to by *codecPtr) which will own/ref them, as well as |
| 73 | * the png_ptr and info_ptr. |
| 74 | */ |
| 75 | AutoCleanPng(png_structp png_ptr, SkStream* stream, SkPngChunkReader* reader, |
| 76 | SkCodec** codecPtr) |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 77 | : fPng_ptr(png_ptr) |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 78 | , fInfo_ptr(nullptr) |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 79 | , fStream(stream) |
| 80 | , fChunkReader(reader) |
| 81 | , fOutCodec(codecPtr) |
| 82 | {} |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 83 | |
| 84 | ~AutoCleanPng() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 85 | // fInfo_ptr will never be non-nullptr unless fPng_ptr is. |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 86 | if (fPng_ptr) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 87 | png_infopp info_pp = fInfo_ptr ? &fInfo_ptr : nullptr; |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 88 | png_destroy_read_struct(&fPng_ptr, info_pp, nullptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
| 92 | void setInfoPtr(png_infop info_ptr) { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 93 | SkASSERT(nullptr == fInfo_ptr); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 94 | fInfo_ptr = info_ptr; |
| 95 | } |
| 96 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 97 | /** |
| 98 | * Reads enough of the input stream to decode the bounds. |
| 99 | * @return false if the stream is not a valid PNG (or too short). |
| 100 | * true if it read enough of the stream to determine the bounds. |
| 101 | * In the latter case, the stream may have been read beyond the |
| 102 | * point to determine the bounds, and the png_ptr will have saved |
| 103 | * any extra data. Further, if the codecPtr supplied to the |
| 104 | * constructor was not NULL, it will now point to a new SkCodec, |
| 105 | * which owns (or refs, in the case of the SkPngChunkReader) the |
| 106 | * inputs. If codecPtr was NULL, the png_ptr and info_ptr are |
| 107 | * unowned, and it is up to the caller to destroy them. |
| 108 | */ |
| 109 | bool decodeBounds(); |
| 110 | |
| 111 | private: |
| 112 | png_structp fPng_ptr; |
| 113 | png_infop fInfo_ptr; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 114 | SkStream* fStream; |
| 115 | SkPngChunkReader* fChunkReader; |
| 116 | SkCodec** fOutCodec; |
| 117 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 118 | void infoCallback(size_t idatLength); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 119 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 120 | void releasePngPtrs() { |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 121 | fPng_ptr = nullptr; |
| 122 | fInfo_ptr = nullptr; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 123 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 124 | }; |
| 125 | #define AutoCleanPng(...) SK_REQUIRE_LOCAL_VAR(AutoCleanPng) |
| 126 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 127 | static inline bool is_chunk(const png_byte* chunk, const char* tag) { |
| 128 | return memcmp(chunk + 4, tag, 4) == 0; |
| 129 | } |
| 130 | |
| 131 | static inline bool process_data(png_structp png_ptr, png_infop info_ptr, |
| 132 | SkStream* stream, void* buffer, size_t bufferSize, size_t length) { |
| 133 | while (length > 0) { |
| 134 | const size_t bytesToProcess = std::min(bufferSize, length); |
Leon Scroggins III | b644650 | 2017-04-24 09:32:50 -0400 | [diff] [blame] | 135 | const size_t bytesRead = stream->read(buffer, bytesToProcess); |
| 136 | png_process_data(png_ptr, info_ptr, (png_bytep) buffer, bytesRead); |
| 137 | if (bytesRead < bytesToProcess) { |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 138 | return false; |
| 139 | } |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 140 | length -= bytesToProcess; |
| 141 | } |
| 142 | return true; |
| 143 | } |
| 144 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 145 | bool AutoCleanPng::decodeBounds() { |
| 146 | if (setjmp(PNG_JMPBUF(fPng_ptr))) { |
| 147 | return false; |
| 148 | } |
| 149 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 150 | png_set_progressive_read_fn(fPng_ptr, nullptr, nullptr, nullptr, nullptr); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 151 | |
| 152 | // Arbitrary buffer size, though note that it matches (below) |
| 153 | // SkPngCodec::processData(). FIXME: Can we better suit this to the size of |
| 154 | // the PNG header? |
| 155 | constexpr size_t kBufferSize = 4096; |
| 156 | char buffer[kBufferSize]; |
| 157 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 158 | { |
| 159 | // Parse the signature. |
| 160 | if (fStream->read(buffer, 8) < 8) { |
| 161 | return false; |
| 162 | } |
| 163 | |
| 164 | png_process_data(fPng_ptr, fInfo_ptr, (png_bytep) buffer, 8); |
| 165 | } |
| 166 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 167 | while (true) { |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 168 | // Parse chunk length and type. |
| 169 | if (fStream->read(buffer, 8) < 8) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 170 | // We have read to the end of the input without decoding bounds. |
| 171 | break; |
| 172 | } |
| 173 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 174 | png_byte* chunk = reinterpret_cast<png_byte*>(buffer); |
| 175 | const size_t length = png_get_uint_32(chunk); |
| 176 | |
| 177 | if (is_chunk(chunk, "IDAT")) { |
| 178 | this->infoCallback(length); |
| 179 | return true; |
| 180 | } |
| 181 | |
| 182 | png_process_data(fPng_ptr, fInfo_ptr, chunk, 8); |
| 183 | // Process the full chunk + CRC. |
| 184 | if (!process_data(fPng_ptr, fInfo_ptr, fStream, buffer, kBufferSize, length + 4)) { |
| 185 | return false; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 189 | return false; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | void SkPngCodec::processData() { |
| 193 | switch (setjmp(PNG_JMPBUF(fPng_ptr))) { |
| 194 | case kPngError: |
| 195 | // There was an error. Stop processing data. |
| 196 | // FIXME: Do we need to discard png_ptr? |
| 197 | return; |
| 198 | case kStopDecoding: |
| 199 | // We decoded all the lines we want. |
| 200 | return; |
| 201 | case kSetJmpOkay: |
| 202 | // Everything is okay. |
| 203 | break; |
| 204 | default: |
| 205 | // No other values should be passed to longjmp. |
| 206 | SkASSERT(false); |
| 207 | } |
| 208 | |
| 209 | // Arbitrary buffer size |
| 210 | constexpr size_t kBufferSize = 4096; |
| 211 | char buffer[kBufferSize]; |
| 212 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 213 | bool iend = false; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 214 | while (true) { |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 215 | size_t length; |
| 216 | if (fDecodedIdat) { |
| 217 | // Parse chunk length and type. |
| 218 | if (this->stream()->read(buffer, 8) < 8) { |
| 219 | break; |
| 220 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 221 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 222 | png_byte* chunk = reinterpret_cast<png_byte*>(buffer); |
| 223 | png_process_data(fPng_ptr, fInfo_ptr, chunk, 8); |
| 224 | if (is_chunk(chunk, "IEND")) { |
| 225 | iend = true; |
| 226 | } |
| 227 | |
| 228 | length = png_get_uint_32(chunk); |
| 229 | } else { |
| 230 | length = fIdatLength; |
| 231 | png_byte idat[] = {0, 0, 0, 0, 'I', 'D', 'A', 'T'}; |
| 232 | png_save_uint_32(idat, length); |
| 233 | png_process_data(fPng_ptr, fInfo_ptr, idat, 8); |
| 234 | fDecodedIdat = true; |
| 235 | } |
| 236 | |
| 237 | // Process the full chunk + CRC. |
| 238 | if (!process_data(fPng_ptr, fInfo_ptr, this->stream(), buffer, kBufferSize, length + 4) |
| 239 | || iend) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 240 | break; |
| 241 | } |
| 242 | } |
| 243 | } |
| 244 | |
Matt Sarett | 562e681 | 2016-11-08 16:13:43 -0500 | [diff] [blame] | 245 | static const SkColorType kXformSrcColorType = kRGBA_8888_SkColorType; |
| 246 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 247 | // Note: SkColorTable claims to store SkPMColors, which is not necessarily the case here. |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 248 | bool SkPngCodec::createColorTable(const SkImageInfo& dstInfo) { |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 249 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 250 | int numColors; |
| 251 | png_color* palette; |
| 252 | if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) { |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 253 | return false; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 254 | } |
| 255 | |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 256 | // Contents depend on tableColorType and our choice of if/when to premultiply: |
| 257 | // { kPremul, kUnpremul, kOpaque } x { RGBA, BGRA } |
| 258 | SkPMColor colorTable[256]; |
Matt Sarett | 562e681 | 2016-11-08 16:13:43 -0500 | [diff] [blame] | 259 | SkColorType tableColorType = this->colorXform() ? kXformSrcColorType : dstInfo.colorType(); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 260 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 261 | png_bytep alphas; |
| 262 | int numColorsWithAlpha = 0; |
| 263 | if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) { |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 264 | // If we are performing a color xform, it will handle the premultiply. Otherwise, |
| 265 | // we'll do it here. |
Matt Sarett | 61eedeb | 2016-11-04 13:19:48 -0400 | [diff] [blame] | 266 | bool premultiply = !this->colorXform() && needs_premul(dstInfo, this->getEncodedInfo()); |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 267 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 268 | // Choose which function to use to create the color table. If the final destination's |
| 269 | // colortype is unpremultiplied, the color table will store unpremultiplied colors. |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 270 | PackColorProc proc = choose_pack_color_proc(premultiply, tableColorType); |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 271 | |
| 272 | for (int i = 0; i < numColorsWithAlpha; i++) { |
| 273 | // We don't have a function in SkOpts that combines a set of alphas with a set |
| 274 | // of RGBs. We could write one, but it's hardly worth it, given that this |
| 275 | // is such a small fraction of the total decode time. |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 276 | colorTable[i] = proc(alphas[i], palette->red, palette->green, palette->blue); |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 277 | palette++; |
| 278 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 279 | } |
| 280 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 281 | if (numColorsWithAlpha < numColors) { |
| 282 | // The optimized code depends on a 3-byte png_color struct with the colors |
| 283 | // in RGB order. These checks make sure it is safe to use. |
| 284 | static_assert(3 == sizeof(png_color), "png_color struct has changed. Opts are broken."); |
| 285 | #ifdef SK_DEBUG |
| 286 | SkASSERT(&palette->red < &palette->green); |
| 287 | SkASSERT(&palette->green < &palette->blue); |
| 288 | #endif |
| 289 | |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 290 | if (is_rgba(tableColorType)) { |
| 291 | SkOpts::RGB_to_RGB1(colorTable + numColorsWithAlpha, palette, |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 292 | numColors - numColorsWithAlpha); |
| 293 | } else { |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 294 | SkOpts::RGB_to_BGR1(colorTable + numColorsWithAlpha, palette, |
msarett | 34e0ec4 | 2016-04-22 16:27:24 -0700 | [diff] [blame] | 295 | numColors - numColorsWithAlpha); |
| 296 | } |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 297 | } |
| 298 | |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 299 | if (this->colorXform() && !this->xformOnDecode()) { |
| 300 | this->applyColorXform(colorTable, colorTable, numColors); |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 301 | } |
| 302 | |
msarett | 13a9123 | 2016-02-01 08:03:29 -0800 | [diff] [blame] | 303 | // Pad the color table with the last color in the table (or black) in the case that |
| 304 | // invalid pixel indices exceed the number of colors in the table. |
| 305 | const int maxColors = 1 << fBitDepth; |
| 306 | if (numColors < maxColors) { |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 307 | SkPMColor lastColor = numColors > 0 ? colorTable[numColors - 1] : SK_ColorBLACK; |
| 308 | sk_memset32(colorTable + numColors, lastColor, maxColors - numColors); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 309 | } |
| 310 | |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 311 | fColorTable.reset(new SkColorTable(colorTable, maxColors)); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 312 | return true; |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /////////////////////////////////////////////////////////////////////////////// |
| 316 | // Creation |
| 317 | /////////////////////////////////////////////////////////////////////////////// |
| 318 | |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 319 | bool SkPngCodec::IsPng(const char* buf, size_t bytesRead) { |
| 320 | return !png_sig_cmp((png_bytep) buf, (png_size_t)0, bytesRead); |
scroggo | f24f224 | 2015-03-03 08:59:20 -0800 | [diff] [blame] | 321 | } |
| 322 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 323 | #if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6) |
| 324 | |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 325 | static float png_fixed_point_to_float(png_fixed_point x) { |
| 326 | // We multiply by the same factor that libpng used to convert |
| 327 | // fixed point -> double. Since we want floats, we choose to |
| 328 | // do the conversion ourselves rather than convert |
| 329 | // fixed point -> double -> float. |
| 330 | return ((float) x) * 0.00001f; |
| 331 | } |
| 332 | |
msarett | 128245c | 2016-03-30 12:01:47 -0700 | [diff] [blame] | 333 | static float png_inverted_fixed_point_to_float(png_fixed_point x) { |
| 334 | // This is necessary because the gAMA chunk actually stores 1/gamma. |
| 335 | return 1.0f / png_fixed_point_to_float(x); |
| 336 | } |
| 337 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 338 | #endif // LIBPNG >= 1.6 |
| 339 | |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 340 | // Returns a colorSpace object that represents any color space information in |
raftias | d737bee | 2016-12-08 10:53:24 -0500 | [diff] [blame] | 341 | // the encoded data. If the encoded data contains an invalid/unsupported color space, |
| 342 | // this will return NULL. If there is no color space information, it will guess sRGB |
Matt Sarett | 523116d | 2017-01-12 18:36:38 -0500 | [diff] [blame] | 343 | sk_sp<SkColorSpace> read_color_space(png_structp png_ptr, png_infop info_ptr, |
| 344 | SkColorSpace_Base::ICCTypeFlag iccType) { |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 345 | |
msarett | e244322 | 2016-03-04 14:20:49 -0800 | [diff] [blame] | 346 | #if (PNG_LIBPNG_VER_MAJOR > 1) || (PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR >= 6) |
| 347 | |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 348 | // First check for an ICC profile |
| 349 | png_bytep profile; |
| 350 | png_uint_32 length; |
| 351 | // The below variables are unused, however, we need to pass them in anyway or |
| 352 | // png_get_iCCP() will return nothing. |
| 353 | // Could knowing the |name| of the profile ever be interesting? Maybe for debugging? |
| 354 | png_charp name; |
| 355 | // The |compression| is uninteresting since: |
| 356 | // (1) libpng has already decompressed the profile for us. |
| 357 | // (2) "deflate" is the only mode of decompression that libpng supports. |
| 358 | int compression; |
| 359 | if (PNG_INFO_iCCP == png_get_iCCP(png_ptr, info_ptr, &name, &compression, &profile, |
| 360 | &length)) { |
Matt Sarett | 523116d | 2017-01-12 18:36:38 -0500 | [diff] [blame] | 361 | return SkColorSpace_Base::MakeICC(profile, length, iccType); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | // Second, check for sRGB. |
| 365 | if (png_get_valid(png_ptr, info_ptr, PNG_INFO_sRGB)) { |
| 366 | |
| 367 | // sRGB chunks also store a rendering intent: Absolute, Relative, |
| 368 | // Perceptual, and Saturation. |
| 369 | // FIXME (msarett): Extract this information from the sRGB chunk once |
| 370 | // we are able to handle this information in |
| 371 | // SkColorSpace. |
Matt Sarett | 77a7a1b | 2017-02-07 13:56:11 -0500 | [diff] [blame] | 372 | return SkColorSpace::MakeSRGB(); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | // Next, check for chromaticities. |
msarett | a5a31dd | 2016-10-11 09:41:16 -0700 | [diff] [blame] | 376 | png_fixed_point chrm[8]; |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 377 | png_fixed_point gamma; |
msarett | a5a31dd | 2016-10-11 09:41:16 -0700 | [diff] [blame] | 378 | if (png_get_cHRM_fixed(png_ptr, info_ptr, &chrm[0], &chrm[1], &chrm[2], &chrm[3], &chrm[4], |
| 379 | &chrm[5], &chrm[6], &chrm[7])) |
msarett | 5544795 | 2016-07-22 14:07:23 -0700 | [diff] [blame] | 380 | { |
msarett | a5a31dd | 2016-10-11 09:41:16 -0700 | [diff] [blame] | 381 | SkColorSpacePrimaries primaries; |
| 382 | primaries.fRX = png_fixed_point_to_float(chrm[2]); |
| 383 | primaries.fRY = png_fixed_point_to_float(chrm[3]); |
| 384 | primaries.fGX = png_fixed_point_to_float(chrm[4]); |
| 385 | primaries.fGY = png_fixed_point_to_float(chrm[5]); |
| 386 | primaries.fBX = png_fixed_point_to_float(chrm[6]); |
| 387 | primaries.fBY = png_fixed_point_to_float(chrm[7]); |
| 388 | primaries.fWX = png_fixed_point_to_float(chrm[0]); |
| 389 | primaries.fWY = png_fixed_point_to_float(chrm[1]); |
msarett | 5544795 | 2016-07-22 14:07:23 -0700 | [diff] [blame] | 390 | |
| 391 | SkMatrix44 toXYZD50(SkMatrix44::kUninitialized_Constructor); |
msarett | a5a31dd | 2016-10-11 09:41:16 -0700 | [diff] [blame] | 392 | if (!primaries.toXYZD50(&toXYZD50)) { |
msarett | 5544795 | 2016-07-22 14:07:23 -0700 | [diff] [blame] | 393 | toXYZD50.set3x3RowMajorf(gSRGB_toXYZD50); |
| 394 | } |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 395 | |
msarett | 128245c | 2016-03-30 12:01:47 -0700 | [diff] [blame] | 396 | if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) { |
Matt Sarett | 99e3f7d | 2016-10-28 12:51:08 -0400 | [diff] [blame] | 397 | SkColorSpaceTransferFn fn; |
| 398 | fn.fA = 1.0f; |
| 399 | fn.fB = fn.fC = fn.fD = fn.fE = fn.fF = 0.0f; |
| 400 | fn.fG = png_inverted_fixed_point_to_float(gamma); |
msarett | ffc2aea | 2016-05-02 11:12:14 -0700 | [diff] [blame] | 401 | |
Matt Sarett | 99e3f7d | 2016-10-28 12:51:08 -0400 | [diff] [blame] | 402 | return SkColorSpace::MakeRGB(fn, toXYZD50); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 403 | } |
msarett | 128245c | 2016-03-30 12:01:47 -0700 | [diff] [blame] | 404 | |
msarett | c4ce6b5 | 2016-06-16 07:37:41 -0700 | [diff] [blame] | 405 | // Default to sRGB gamma if the image has color space information, |
| 406 | // but does not specify gamma. |
Brian Osman | 526972e | 2016-10-24 09:24:02 -0400 | [diff] [blame] | 407 | return SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma, toXYZD50); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | // Last, check for gamma. |
| 411 | if (PNG_INFO_gAMA == png_get_gAMA_fixed(png_ptr, info_ptr, &gamma)) { |
Matt Sarett | 99e3f7d | 2016-10-28 12:51:08 -0400 | [diff] [blame] | 412 | SkColorSpaceTransferFn fn; |
| 413 | fn.fA = 1.0f; |
| 414 | fn.fB = fn.fC = fn.fD = fn.fE = fn.fF = 0.0f; |
| 415 | fn.fG = png_inverted_fixed_point_to_float(gamma); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 416 | |
msarett | c4ce6b5 | 2016-06-16 07:37:41 -0700 | [diff] [blame] | 417 | // Since there is no cHRM, we will guess sRGB gamut. |
msarett | 5544795 | 2016-07-22 14:07:23 -0700 | [diff] [blame] | 418 | SkMatrix44 toXYZD50(SkMatrix44::kUninitialized_Constructor); |
| 419 | toXYZD50.set3x3RowMajorf(gSRGB_toXYZD50); |
msarett | c4ce6b5 | 2016-06-16 07:37:41 -0700 | [diff] [blame] | 420 | |
Matt Sarett | 99e3f7d | 2016-10-28 12:51:08 -0400 | [diff] [blame] | 421 | return SkColorSpace::MakeRGB(fn, toXYZD50); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 422 | } |
| 423 | |
msarett | e244322 | 2016-03-04 14:20:49 -0800 | [diff] [blame] | 424 | #endif // LIBPNG >= 1.6 |
| 425 | |
raftias | d737bee | 2016-12-08 10:53:24 -0500 | [diff] [blame] | 426 | // Report that there is no color space information in the PNG. |
| 427 | // Guess sRGB in this case. |
Matt Sarett | 77a7a1b | 2017-02-07 13:56:11 -0500 | [diff] [blame] | 428 | return SkColorSpace::MakeSRGB(); |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 429 | } |
| 430 | |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 431 | void SkPngCodec::allocateStorage(const SkImageInfo& dstInfo) { |
| 432 | switch (fXformMode) { |
| 433 | case kSwizzleOnly_XformMode: |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 434 | break; |
| 435 | case kColorOnly_XformMode: |
| 436 | // Intentional fall through. A swizzler hasn't been created yet, but one will |
| 437 | // be created later if we are sampling. We'll go ahead and allocate |
| 438 | // enough memory to swizzle if necessary. |
| 439 | case kSwizzleColor_XformMode: { |
Matt Sarett | 34c69d6 | 2017-01-19 17:42:23 -0500 | [diff] [blame] | 440 | const int bitsPerPixel = this->getEncodedInfo().bitsPerPixel(); |
| 441 | |
| 442 | // If we have more than 8-bits (per component) of precision, we will keep that |
| 443 | // extra precision. Otherwise, we will swizzle to RGBA_8888 before transforming. |
| 444 | const size_t bytesPerPixel = (bitsPerPixel > 32) ? bitsPerPixel / 8 : 4; |
| 445 | const size_t colorXformBytes = dstInfo.width() * bytesPerPixel; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 446 | fStorage.reset(colorXformBytes); |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 447 | fColorXformSrcRow = fStorage.get(); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 448 | break; |
| 449 | } |
| 450 | } |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 453 | static SkColorSpaceXform::ColorFormat png_select_xform_format(const SkEncodedInfo& info) { |
Matt Sarett | 34c69d6 | 2017-01-19 17:42:23 -0500 | [diff] [blame] | 454 | // We use kRGB and kRGBA formats because color PNGs are always RGB or RGBA. |
| 455 | if (16 == info.bitsPerComponent()) { |
| 456 | if (SkEncodedInfo::kRGBA_Color == info.color()) { |
| 457 | return SkColorSpaceXform::kRGBA_U16_BE_ColorFormat; |
| 458 | } else if (SkEncodedInfo::kRGB_Color == info.color()) { |
| 459 | return SkColorSpaceXform::kRGB_U16_BE_ColorFormat; |
| 460 | } |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | return SkColorSpaceXform::kRGBA_8888_ColorFormat; |
| 464 | } |
| 465 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 466 | void SkPngCodec::applyXformRow(void* dst, const void* src) { |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 467 | switch (fXformMode) { |
| 468 | case kSwizzleOnly_XformMode: |
| 469 | fSwizzler->swizzle(dst, (const uint8_t*) src); |
| 470 | break; |
| 471 | case kColorOnly_XformMode: |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 472 | this->applyColorXform(dst, src, fXformWidth); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 473 | break; |
| 474 | case kSwizzleColor_XformMode: |
| 475 | fSwizzler->swizzle(fColorXformSrcRow, (const uint8_t*) src); |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 476 | this->applyColorXform(dst, fColorXformSrcRow, fXformWidth); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 477 | break; |
| 478 | } |
msarett | dcd5e65 | 2016-08-22 08:48:40 -0700 | [diff] [blame] | 479 | } |
| 480 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 481 | class SkPngNormalDecoder : public SkPngCodec { |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 482 | public: |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 483 | SkPngNormalDecoder(const SkEncodedInfo& info, const SkImageInfo& imageInfo, SkStream* stream, |
| 484 | SkPngChunkReader* reader, png_structp png_ptr, png_infop info_ptr, int bitDepth) |
| 485 | : INHERITED(info, imageInfo, stream, reader, png_ptr, info_ptr, bitDepth) |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 486 | , fRowsWrittenToOutput(0) |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 487 | , fDst(nullptr) |
| 488 | , fRowBytes(0) |
| 489 | , fFirstRow(0) |
| 490 | , fLastRow(0) |
scroggo | 1c005e4 | 2015-08-04 09:24:45 -0700 | [diff] [blame] | 491 | {} |
| 492 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 493 | static void AllRowsCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int /*pass*/) { |
| 494 | GetDecoder(png_ptr)->allRowsCallback(row, rowNum); |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 495 | } |
| 496 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 497 | static void RowCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int /*pass*/) { |
| 498 | GetDecoder(png_ptr)->rowCallback(row, rowNum); |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 499 | } |
| 500 | |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 501 | private: |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 502 | int fRowsWrittenToOutput; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 503 | void* fDst; |
| 504 | size_t fRowBytes; |
| 505 | |
| 506 | // Variables for partial decode |
| 507 | int fFirstRow; // FIXME: Move to baseclass? |
| 508 | int fLastRow; |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 509 | int fRowsNeeded; |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 510 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 511 | typedef SkPngCodec INHERITED; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 512 | |
| 513 | static SkPngNormalDecoder* GetDecoder(png_structp png_ptr) { |
| 514 | return static_cast<SkPngNormalDecoder*>(png_get_progressive_ptr(png_ptr)); |
| 515 | } |
| 516 | |
| 517 | Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override { |
| 518 | const int height = this->getInfo().height(); |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 519 | png_set_progressive_read_fn(this->png_ptr(), this, nullptr, AllRowsCallback, nullptr); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 520 | fDst = dst; |
| 521 | fRowBytes = rowBytes; |
| 522 | |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 523 | fRowsWrittenToOutput = 0; |
scroggo | c46cdd4 | 2016-10-10 06:45:32 -0700 | [diff] [blame] | 524 | fFirstRow = 0; |
| 525 | fLastRow = height - 1; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 526 | |
| 527 | this->processData(); |
| 528 | |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 529 | if (fRowsWrittenToOutput == height) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 530 | return SkCodec::kSuccess; |
| 531 | } |
| 532 | |
| 533 | if (rowsDecoded) { |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 534 | *rowsDecoded = fRowsWrittenToOutput; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | return SkCodec::kIncompleteInput; |
| 538 | } |
| 539 | |
| 540 | void allRowsCallback(png_bytep row, int rowNum) { |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 541 | SkASSERT(rowNum == fRowsWrittenToOutput); |
| 542 | fRowsWrittenToOutput++; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 543 | this->applyXformRow(fDst, row); |
| 544 | fDst = SkTAddOffset<void>(fDst, fRowBytes); |
| 545 | } |
| 546 | |
| 547 | void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 548 | png_set_progressive_read_fn(this->png_ptr(), this, nullptr, RowCallback, nullptr); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 549 | fFirstRow = firstRow; |
| 550 | fLastRow = lastRow; |
| 551 | fDst = dst; |
| 552 | fRowBytes = rowBytes; |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 553 | fRowsWrittenToOutput = 0; |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 554 | fRowsNeeded = fLastRow - fFirstRow + 1; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | SkCodec::Result decode(int* rowsDecoded) override { |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 558 | if (this->swizzler()) { |
| 559 | const int sampleY = this->swizzler()->sampleY(); |
| 560 | fRowsNeeded = get_scaled_dimension(fLastRow - fFirstRow + 1, sampleY); |
| 561 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 562 | this->processData(); |
| 563 | |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 564 | if (fRowsWrittenToOutput == fRowsNeeded) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 565 | return SkCodec::kSuccess; |
| 566 | } |
| 567 | |
| 568 | if (rowsDecoded) { |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 569 | *rowsDecoded = fRowsWrittenToOutput; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | return SkCodec::kIncompleteInput; |
| 573 | } |
| 574 | |
| 575 | void rowCallback(png_bytep row, int rowNum) { |
| 576 | if (rowNum < fFirstRow) { |
| 577 | // Ignore this row. |
| 578 | return; |
| 579 | } |
| 580 | |
| 581 | SkASSERT(rowNum <= fLastRow); |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 582 | SkASSERT(fRowsWrittenToOutput < fRowsNeeded); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 583 | |
| 584 | // If there is no swizzler, all rows are needed. |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 585 | if (!this->swizzler() || this->swizzler()->rowNeeded(rowNum - fFirstRow)) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 586 | this->applyXformRow(fDst, row); |
| 587 | fDst = SkTAddOffset<void>(fDst, fRowBytes); |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 588 | fRowsWrittenToOutput++; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 589 | } |
| 590 | |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 591 | if (fRowsWrittenToOutput == fRowsNeeded) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 592 | // Fake error to stop decoding scanlines. |
| 593 | longjmp(PNG_JMPBUF(this->png_ptr()), kStopDecoding); |
| 594 | } |
| 595 | } |
emmaleer | 0a4c3cb | 2015-06-22 10:40:21 -0700 | [diff] [blame] | 596 | }; |
| 597 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 598 | class SkPngInterlacedDecoder : public SkPngCodec { |
| 599 | public: |
| 600 | SkPngInterlacedDecoder(const SkEncodedInfo& info, const SkImageInfo& imageInfo, |
| 601 | SkStream* stream, SkPngChunkReader* reader, png_structp png_ptr, png_infop info_ptr, |
| 602 | int bitDepth, int numberPasses) |
| 603 | : INHERITED(info, imageInfo, stream, reader, png_ptr, info_ptr, bitDepth) |
| 604 | , fNumberPasses(numberPasses) |
| 605 | , fFirstRow(0) |
| 606 | , fLastRow(0) |
| 607 | , fLinesDecoded(0) |
| 608 | , fInterlacedComplete(false) |
| 609 | , fPng_rowbytes(0) |
| 610 | {} |
| 611 | |
| 612 | static void InterlacedRowCallback(png_structp png_ptr, png_bytep row, png_uint_32 rowNum, int pass) { |
| 613 | auto decoder = static_cast<SkPngInterlacedDecoder*>(png_get_progressive_ptr(png_ptr)); |
| 614 | decoder->interlacedRowCallback(row, rowNum, pass); |
| 615 | } |
| 616 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 617 | private: |
| 618 | const int fNumberPasses; |
| 619 | int fFirstRow; |
| 620 | int fLastRow; |
| 621 | void* fDst; |
| 622 | size_t fRowBytes; |
| 623 | int fLinesDecoded; |
| 624 | bool fInterlacedComplete; |
| 625 | size_t fPng_rowbytes; |
| 626 | SkAutoTMalloc<png_byte> fInterlaceBuffer; |
| 627 | |
| 628 | typedef SkPngCodec INHERITED; |
| 629 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 630 | // FIXME: Currently sharing interlaced callback for all rows and subset. It's not |
| 631 | // as expensive as the subset version of non-interlaced, but it still does extra |
| 632 | // work. |
| 633 | void interlacedRowCallback(png_bytep row, int rowNum, int pass) { |
Leon Scroggins III | 600effb | 2017-04-24 15:44:45 -0400 | [diff] [blame] | 634 | if (rowNum < fFirstRow || rowNum > fLastRow || fInterlacedComplete) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 635 | // Ignore this row |
| 636 | return; |
| 637 | } |
| 638 | |
| 639 | png_bytep oldRow = fInterlaceBuffer.get() + (rowNum - fFirstRow) * fPng_rowbytes; |
| 640 | png_progressive_combine_row(this->png_ptr(), oldRow, row); |
| 641 | |
| 642 | if (0 == pass) { |
| 643 | // The first pass initializes all rows. |
| 644 | SkASSERT(row); |
| 645 | SkASSERT(fLinesDecoded == rowNum - fFirstRow); |
| 646 | fLinesDecoded++; |
| 647 | } else { |
| 648 | SkASSERT(fLinesDecoded == fLastRow - fFirstRow + 1); |
| 649 | if (fNumberPasses - 1 == pass && rowNum == fLastRow) { |
Leon Scroggins III | 600effb | 2017-04-24 15:44:45 -0400 | [diff] [blame] | 650 | // Last pass, and we have read all of the rows we care about. |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 651 | fInterlacedComplete = true; |
Leon Scroggins III | 600effb | 2017-04-24 15:44:45 -0400 | [diff] [blame] | 652 | if (fLastRow != this->getInfo().height() - 1 || |
| 653 | (this->swizzler() && this->swizzler()->sampleY() != 1)) { |
| 654 | // Fake error to stop decoding scanlines. Only stop if we're not decoding the |
| 655 | // whole image, in which case processing the rest of the image might be |
| 656 | // expensive. When decoding the whole image, read through the IEND chunk to |
| 657 | // preserve Android behavior of leaving the input stream in the right place. |
| 658 | longjmp(PNG_JMPBUF(this->png_ptr()), kStopDecoding); |
| 659 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 660 | } |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | SkCodec::Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override { |
| 665 | const int height = this->getInfo().height(); |
| 666 | this->setUpInterlaceBuffer(height); |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 667 | png_set_progressive_read_fn(this->png_ptr(), this, nullptr, InterlacedRowCallback, |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 668 | nullptr); |
| 669 | |
| 670 | fFirstRow = 0; |
| 671 | fLastRow = height - 1; |
| 672 | fLinesDecoded = 0; |
| 673 | |
| 674 | this->processData(); |
| 675 | |
| 676 | png_bytep srcRow = fInterlaceBuffer.get(); |
| 677 | // FIXME: When resuming, this may rewrite rows that did not change. |
| 678 | for (int rowNum = 0; rowNum < fLinesDecoded; rowNum++) { |
| 679 | this->applyXformRow(dst, srcRow); |
| 680 | dst = SkTAddOffset<void>(dst, rowBytes); |
| 681 | srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes); |
| 682 | } |
| 683 | if (fInterlacedComplete) { |
| 684 | return SkCodec::kSuccess; |
| 685 | } |
| 686 | |
| 687 | if (rowsDecoded) { |
| 688 | *rowsDecoded = fLinesDecoded; |
| 689 | } |
| 690 | |
| 691 | return SkCodec::kIncompleteInput; |
| 692 | } |
| 693 | |
| 694 | void setRange(int firstRow, int lastRow, void* dst, size_t rowBytes) override { |
| 695 | // FIXME: We could skip rows in the interlace buffer that we won't put in the output. |
| 696 | this->setUpInterlaceBuffer(lastRow - firstRow + 1); |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 697 | png_set_progressive_read_fn(this->png_ptr(), this, nullptr, InterlacedRowCallback, nullptr); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 698 | fFirstRow = firstRow; |
| 699 | fLastRow = lastRow; |
| 700 | fDst = dst; |
| 701 | fRowBytes = rowBytes; |
| 702 | fLinesDecoded = 0; |
| 703 | } |
| 704 | |
| 705 | SkCodec::Result decode(int* rowsDecoded) override { |
| 706 | this->processData(); |
| 707 | |
| 708 | // Now apply Xforms on all the rows that were decoded. |
| 709 | if (!fLinesDecoded) { |
scroggo | e61b3b4 | 2016-10-10 07:17:32 -0700 | [diff] [blame] | 710 | if (rowsDecoded) { |
| 711 | *rowsDecoded = 0; |
| 712 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 713 | return SkCodec::kIncompleteInput; |
| 714 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 715 | |
scroggo | 4f2a88c | 2016-10-17 14:32:41 -0700 | [diff] [blame] | 716 | const int sampleY = this->swizzler() ? this->swizzler()->sampleY() : 1; |
| 717 | const int rowsNeeded = get_scaled_dimension(fLastRow - fFirstRow + 1, sampleY); |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 718 | int rowsWrittenToOutput = 0; |
| 719 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 720 | // FIXME: For resuming interlace, we may swizzle a row that hasn't changed. But it |
| 721 | // may be too tricky/expensive to handle that correctly. |
scroggo | e9ea349 | 2016-10-18 09:14:11 -0700 | [diff] [blame] | 722 | |
| 723 | // Offset srcRow by get_start_coord rows. We do not need to account for fFirstRow, |
| 724 | // since the first row in fInterlaceBuffer corresponds to fFirstRow. |
| 725 | png_bytep srcRow = SkTAddOffset<png_byte>(fInterlaceBuffer.get(), |
| 726 | fPng_rowbytes * get_start_coord(sampleY)); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 727 | void* dst = fDst; |
scroggo | e9ea349 | 2016-10-18 09:14:11 -0700 | [diff] [blame] | 728 | for (; rowsWrittenToOutput < rowsNeeded; rowsWrittenToOutput++) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 729 | this->applyXformRow(dst, srcRow); |
| 730 | dst = SkTAddOffset<void>(dst, fRowBytes); |
| 731 | srcRow = SkTAddOffset<png_byte>(srcRow, fPng_rowbytes * sampleY); |
| 732 | } |
| 733 | |
| 734 | if (fInterlacedComplete) { |
| 735 | return SkCodec::kSuccess; |
| 736 | } |
| 737 | |
| 738 | if (rowsDecoded) { |
scroggo | ff9f7bb | 2016-10-10 11:35:01 -0700 | [diff] [blame] | 739 | *rowsDecoded = rowsWrittenToOutput; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 740 | } |
| 741 | return SkCodec::kIncompleteInput; |
| 742 | } |
| 743 | |
| 744 | void setUpInterlaceBuffer(int height) { |
| 745 | fPng_rowbytes = png_get_rowbytes(this->png_ptr(), this->info_ptr()); |
| 746 | fInterlaceBuffer.reset(fPng_rowbytes * height); |
| 747 | fInterlacedComplete = false; |
| 748 | } |
| 749 | }; |
| 750 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 751 | // Reads the header and initializes the output fields, if not NULL. |
| 752 | // |
| 753 | // @param stream Input data. Will be read to get enough information to properly |
| 754 | // setup the codec. |
| 755 | // @param chunkReader SkPngChunkReader, for reading unknown chunks. May be NULL. |
| 756 | // If not NULL, png_ptr will hold an *unowned* pointer to it. The caller is |
| 757 | // expected to continue to own it for the lifetime of the png_ptr. |
| 758 | // @param outCodec Optional output variable. If non-NULL, will be set to a new |
| 759 | // SkPngCodec on success. |
| 760 | // @param png_ptrp Optional output variable. If non-NULL, will be set to a new |
| 761 | // png_structp on success. |
| 762 | // @param info_ptrp Optional output variable. If non-NULL, will be set to a new |
| 763 | // png_infop on success; |
| 764 | // @return true on success, in which case the caller is responsible for calling |
| 765 | // png_destroy_read_struct(png_ptrp, info_ptrp). |
| 766 | // If it returns false, the passed in fields (except stream) are unchanged. |
| 767 | static bool read_header(SkStream* stream, SkPngChunkReader* chunkReader, SkCodec** outCodec, |
| 768 | png_structp* png_ptrp, png_infop* info_ptrp) { |
| 769 | // The image is known to be a PNG. Decode enough to know the SkImageInfo. |
| 770 | png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, nullptr, |
| 771 | sk_error_fn, sk_warning_fn); |
| 772 | if (!png_ptr) { |
| 773 | return false; |
| 774 | } |
| 775 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 776 | AutoCleanPng autoClean(png_ptr, stream, chunkReader, outCodec); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 777 | |
| 778 | png_infop info_ptr = png_create_info_struct(png_ptr); |
| 779 | if (info_ptr == nullptr) { |
| 780 | return false; |
| 781 | } |
| 782 | |
| 783 | autoClean.setInfoPtr(info_ptr); |
| 784 | |
| 785 | // FIXME: Could we use the return value of setjmp to specify the type of |
| 786 | // error? |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 787 | if (setjmp(PNG_JMPBUF(png_ptr))) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 788 | return false; |
| 789 | } |
| 790 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 791 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
| 792 | // Hookup our chunkReader so we can see any user-chunks the caller may be interested in. |
| 793 | // This needs to be installed before we read the png header. Android may store ninepatch |
| 794 | // chunks in the header. |
| 795 | if (chunkReader) { |
| 796 | png_set_keep_unknown_chunks(png_ptr, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"", 0); |
| 797 | png_set_read_user_chunk_fn(png_ptr, (png_voidp) chunkReader, sk_read_user_chunk); |
| 798 | } |
| 799 | #endif |
| 800 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 801 | const bool decodedBounds = autoClean.decodeBounds(); |
| 802 | |
| 803 | if (!decodedBounds) { |
| 804 | return false; |
| 805 | } |
| 806 | |
| 807 | // On success, decodeBounds releases ownership of png_ptr and info_ptr. |
| 808 | if (png_ptrp) { |
| 809 | *png_ptrp = png_ptr; |
| 810 | } |
| 811 | if (info_ptrp) { |
| 812 | *info_ptrp = info_ptr; |
| 813 | } |
| 814 | |
| 815 | // decodeBounds takes care of setting outCodec |
| 816 | if (outCodec) { |
| 817 | SkASSERT(*outCodec); |
| 818 | } |
| 819 | return true; |
| 820 | } |
| 821 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 822 | void AutoCleanPng::infoCallback(size_t idatLength) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 823 | png_uint_32 origWidth, origHeight; |
| 824 | int bitDepth, encodedColorType; |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 825 | png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth, |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 826 | &encodedColorType, nullptr, nullptr, nullptr); |
| 827 | |
Matt Sarett | 7a1cc67 | 2016-12-14 11:48:31 -0500 | [diff] [blame] | 828 | // TODO: Should we support 16-bits of precision for gray images? |
| 829 | if (bitDepth == 16 && (PNG_COLOR_TYPE_GRAY == encodedColorType || |
| 830 | PNG_COLOR_TYPE_GRAY_ALPHA == encodedColorType)) { |
| 831 | bitDepth = 8; |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 832 | png_set_strip_16(fPng_ptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 833 | } |
| 834 | |
| 835 | // Now determine the default colorType and alphaType and set the required transforms. |
| 836 | // Often, we depend on SkSwizzler to perform any transforms that we need. However, we |
| 837 | // still depend on libpng for many of the rare and PNG-specific cases. |
| 838 | SkEncodedInfo::Color color; |
| 839 | SkEncodedInfo::Alpha alpha; |
| 840 | switch (encodedColorType) { |
| 841 | case PNG_COLOR_TYPE_PALETTE: |
| 842 | // Extract multiple pixels with bit depths of 1, 2, and 4 from a single |
| 843 | // byte into separate bytes (useful for paletted and grayscale images). |
| 844 | if (bitDepth < 8) { |
| 845 | // TODO: Should we use SkSwizzler here? |
Matt Sarett | 7a1cc67 | 2016-12-14 11:48:31 -0500 | [diff] [blame] | 846 | bitDepth = 8; |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 847 | png_set_packing(fPng_ptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | color = SkEncodedInfo::kPalette_Color; |
| 851 | // Set the alpha depending on if a transparency chunk exists. |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 852 | alpha = png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS) ? |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 853 | SkEncodedInfo::kUnpremul_Alpha : SkEncodedInfo::kOpaque_Alpha; |
| 854 | break; |
| 855 | case PNG_COLOR_TYPE_RGB: |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 856 | if (png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS)) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 857 | // Convert to RGBA if transparency chunk exists. |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 858 | png_set_tRNS_to_alpha(fPng_ptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 859 | color = SkEncodedInfo::kRGBA_Color; |
| 860 | alpha = SkEncodedInfo::kBinary_Alpha; |
| 861 | } else { |
| 862 | color = SkEncodedInfo::kRGB_Color; |
| 863 | alpha = SkEncodedInfo::kOpaque_Alpha; |
| 864 | } |
| 865 | break; |
| 866 | case PNG_COLOR_TYPE_GRAY: |
| 867 | // Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel. |
| 868 | if (bitDepth < 8) { |
| 869 | // TODO: Should we use SkSwizzler here? |
Matt Sarett | 7a1cc67 | 2016-12-14 11:48:31 -0500 | [diff] [blame] | 870 | bitDepth = 8; |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 871 | png_set_expand_gray_1_2_4_to_8(fPng_ptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 874 | if (png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS)) { |
| 875 | png_set_tRNS_to_alpha(fPng_ptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 876 | color = SkEncodedInfo::kGrayAlpha_Color; |
| 877 | alpha = SkEncodedInfo::kBinary_Alpha; |
| 878 | } else { |
| 879 | color = SkEncodedInfo::kGray_Color; |
| 880 | alpha = SkEncodedInfo::kOpaque_Alpha; |
| 881 | } |
| 882 | break; |
| 883 | case PNG_COLOR_TYPE_GRAY_ALPHA: |
| 884 | color = SkEncodedInfo::kGrayAlpha_Color; |
| 885 | alpha = SkEncodedInfo::kUnpremul_Alpha; |
| 886 | break; |
| 887 | case PNG_COLOR_TYPE_RGBA: |
| 888 | color = SkEncodedInfo::kRGBA_Color; |
| 889 | alpha = SkEncodedInfo::kUnpremul_Alpha; |
| 890 | break; |
| 891 | default: |
| 892 | // All the color types have been covered above. |
| 893 | SkASSERT(false); |
| 894 | color = SkEncodedInfo::kRGBA_Color; |
| 895 | alpha = SkEncodedInfo::kUnpremul_Alpha; |
| 896 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 897 | |
| 898 | const int numberPasses = png_set_interlace_handling(fPng_ptr); |
| 899 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 900 | if (fOutCodec) { |
| 901 | SkASSERT(nullptr == *fOutCodec); |
Matt Sarett | 523116d | 2017-01-12 18:36:38 -0500 | [diff] [blame] | 902 | SkColorSpace_Base::ICCTypeFlag iccType = SkColorSpace_Base::kRGB_ICCTypeFlag; |
| 903 | if (SkEncodedInfo::kGray_Color == color || SkEncodedInfo::kGrayAlpha_Color == color) { |
| 904 | iccType |= SkColorSpace_Base::kGray_ICCTypeFlag; |
| 905 | } |
| 906 | sk_sp<SkColorSpace> colorSpace = read_color_space(fPng_ptr, fInfo_ptr, iccType); |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 907 | if (!colorSpace) { |
raftias | d737bee | 2016-12-08 10:53:24 -0500 | [diff] [blame] | 908 | // Treat unsupported/invalid color spaces as sRGB. |
Matt Sarett | 77a7a1b | 2017-02-07 13:56:11 -0500 | [diff] [blame] | 909 | colorSpace = SkColorSpace::MakeSRGB(); |
msarett | f34cd63 | 2016-05-25 10:13:53 -0700 | [diff] [blame] | 910 | } |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 911 | |
Matt Sarett | 7a1cc67 | 2016-12-14 11:48:31 -0500 | [diff] [blame] | 912 | SkEncodedInfo encodedInfo = SkEncodedInfo::Make(color, alpha, bitDepth); |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 913 | SkImageInfo imageInfo = encodedInfo.makeImageInfo(origWidth, origHeight, colorSpace); |
| 914 | |
| 915 | if (SkEncodedInfo::kOpaque_Alpha == alpha) { |
| 916 | png_color_8p sigBits; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 917 | if (png_get_sBIT(fPng_ptr, fInfo_ptr, &sigBits)) { |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 918 | if (5 == sigBits->red && 6 == sigBits->green && 5 == sigBits->blue) { |
| 919 | // Recommend a decode to 565 if the sBIT indicates 565. |
| 920 | imageInfo = imageInfo.makeColorType(kRGB_565_SkColorType); |
| 921 | } |
| 922 | } |
| 923 | } |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 924 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 925 | if (1 == numberPasses) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 926 | *fOutCodec = new SkPngNormalDecoder(encodedInfo, imageInfo, fStream, |
| 927 | fChunkReader, fPng_ptr, fInfo_ptr, bitDepth); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 928 | } else { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 929 | *fOutCodec = new SkPngInterlacedDecoder(encodedInfo, imageInfo, fStream, |
| 930 | fChunkReader, fPng_ptr, fInfo_ptr, bitDepth, numberPasses); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 931 | } |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 932 | static_cast<SkPngCodec*>(*fOutCodec)->setIdatLength(idatLength); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 933 | } |
| 934 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 935 | // Release the pointers, which are now owned by the codec or the caller is expected to |
| 936 | // take ownership. |
| 937 | this->releasePngPtrs(); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 938 | } |
| 939 | |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 940 | SkPngCodec::SkPngCodec(const SkEncodedInfo& encodedInfo, const SkImageInfo& imageInfo, |
mtklein | 6dc5b9a | 2016-08-24 12:22:32 -0700 | [diff] [blame] | 941 | SkStream* stream, SkPngChunkReader* chunkReader, void* png_ptr, |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 942 | void* info_ptr, int bitDepth) |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 943 | : INHERITED(encodedInfo, imageInfo, png_select_xform_format(encodedInfo), stream) |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 944 | , fPngChunkReader(SkSafeRef(chunkReader)) |
| 945 | , fPng_ptr(png_ptr) |
| 946 | , fInfo_ptr(info_ptr) |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 947 | , fColorXformSrcRow(nullptr) |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 948 | , fBitDepth(bitDepth) |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 949 | , fIdatLength(0) |
| 950 | , fDecodedIdat(false) |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 951 | {} |
| 952 | |
| 953 | SkPngCodec::~SkPngCodec() { |
| 954 | this->destroyReadStruct(); |
| 955 | } |
| 956 | |
| 957 | void SkPngCodec::destroyReadStruct() { |
| 958 | if (fPng_ptr) { |
| 959 | // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr |
| 960 | SkASSERT(fInfo_ptr); |
mtklein | 6dc5b9a | 2016-08-24 12:22:32 -0700 | [diff] [blame] | 961 | png_destroy_read_struct((png_struct**)&fPng_ptr, (png_info**)&fInfo_ptr, nullptr); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 962 | fPng_ptr = nullptr; |
| 963 | fInfo_ptr = nullptr; |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | /////////////////////////////////////////////////////////////////////////////// |
| 968 | // Getting the pixels |
| 969 | /////////////////////////////////////////////////////////////////////////////// |
| 970 | |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 971 | SkCodec::Result SkPngCodec::initializeXforms(const SkImageInfo& dstInfo, const Options& options) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 972 | if (setjmp(PNG_JMPBUF((png_struct*)fPng_ptr))) { |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 973 | SkCodecPrintf("Failed on png_read_update_info.\n"); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 974 | return kInvalidInput; |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 975 | } |
| 976 | png_read_update_info(fPng_ptr, fInfo_ptr); |
| 977 | |
Matt Sarett | 313c463 | 2016-10-20 12:35:23 -0400 | [diff] [blame] | 978 | // Reset fSwizzler and this->colorXform(). We can't do this in onRewind() because the |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 979 | // interlaced scanline decoder may need to rewind. |
| 980 | fSwizzler.reset(nullptr); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 981 | |
Matt Sarett | cf3f234 | 2017-03-23 15:32:25 -0400 | [diff] [blame] | 982 | if (!this->initializeColorXform(dstInfo, options.fPremulBehavior)) { |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 983 | return kInvalidConversion; |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 984 | } |
msarett | d331742 | 2016-08-22 13:00:05 -0700 | [diff] [blame] | 985 | |
Matt Sarett | 34c69d6 | 2017-01-19 17:42:23 -0500 | [diff] [blame] | 986 | // If SkColorSpaceXform directly supports the encoded PNG format, we should skip format |
| 987 | // conversion in the swizzler (or skip swizzling altogether). |
| 988 | bool skipFormatConversion = false; |
| 989 | switch (this->getEncodedInfo().color()) { |
| 990 | case SkEncodedInfo::kRGB_Color: |
| 991 | if (this->getEncodedInfo().bitsPerComponent() != 16) { |
| 992 | break; |
| 993 | } |
| 994 | |
| 995 | // Fall through |
| 996 | case SkEncodedInfo::kRGBA_Color: |
| 997 | skipFormatConversion = this->colorXform(); |
| 998 | break; |
| 999 | default: |
| 1000 | break; |
| 1001 | } |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 1002 | if (skipFormatConversion && !options.fSubset) { |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1003 | fXformMode = kColorOnly_XformMode; |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1004 | return kSuccess; |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 1005 | } |
| 1006 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1007 | if (SkEncodedInfo::kPalette_Color == this->getEncodedInfo().color()) { |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 1008 | if (!this->createColorTable(dstInfo)) { |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1009 | return kInvalidInput; |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 1013 | this->initializeSwizzler(dstInfo, options, skipFormatConversion); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1014 | return kSuccess; |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1017 | void SkPngCodec::initializeXformParams() { |
| 1018 | switch (fXformMode) { |
| 1019 | case kColorOnly_XformMode: |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1020 | fXformWidth = this->dstInfo().width(); |
| 1021 | break; |
| 1022 | case kSwizzleColor_XformMode: |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1023 | fXformWidth = this->swizzler()->swizzleWidth(); |
| 1024 | break; |
| 1025 | default: |
| 1026 | break; |
| 1027 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1028 | } |
| 1029 | |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 1030 | void SkPngCodec::initializeSwizzler(const SkImageInfo& dstInfo, const Options& options, |
| 1031 | bool skipFormatConversion) { |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1032 | SkImageInfo swizzlerInfo = dstInfo; |
| 1033 | Options swizzlerOptions = options; |
| 1034 | fXformMode = kSwizzleOnly_XformMode; |
Leon Scroggins III | c6e6a5f | 2017-06-05 15:53:38 -0400 | [diff] [blame] | 1035 | if (this->colorXform() && this->xformOnDecode()) { |
Matt Sarett | 562e681 | 2016-11-08 16:13:43 -0500 | [diff] [blame] | 1036 | swizzlerInfo = swizzlerInfo.makeColorType(kXformSrcColorType); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1037 | if (kPremul_SkAlphaType == dstInfo.alphaType()) { |
| 1038 | swizzlerInfo = swizzlerInfo.makeAlphaType(kUnpremul_SkAlphaType); |
| 1039 | } |
| 1040 | |
| 1041 | fXformMode = kSwizzleColor_XformMode; |
| 1042 | |
| 1043 | // Here, we swizzle into temporary memory, which is not zero initialized. |
| 1044 | // FIXME (msarett): |
| 1045 | // Is this a problem? |
| 1046 | swizzlerOptions.fZeroInitialized = kNo_ZeroInitialized; |
| 1047 | } |
| 1048 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1049 | const SkPMColor* colors = get_color_ptr(fColorTable.get()); |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 1050 | fSwizzler.reset(SkSwizzler::CreateSwizzler(this->getEncodedInfo(), colors, swizzlerInfo, |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 1051 | swizzlerOptions, nullptr, skipFormatConversion)); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1052 | SkASSERT(fSwizzler); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | SkSampler* SkPngCodec::getSampler(bool createIfNecessary) { |
| 1056 | if (fSwizzler || !createIfNecessary) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1057 | return fSwizzler.get(); |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1058 | } |
| 1059 | |
Matt Sarett | 379938e | 2017-01-12 18:34:29 -0500 | [diff] [blame] | 1060 | this->initializeSwizzler(this->dstInfo(), this->options(), true); |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1061 | return fSwizzler.get(); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1062 | } |
| 1063 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1064 | bool SkPngCodec::onRewind() { |
| 1065 | // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header |
| 1066 | // succeeds, they will be repopulated, and if it fails, they will |
| 1067 | // remain nullptr. Any future accesses to fPng_ptr and fInfo_ptr will |
| 1068 | // come through this function which will rewind and again attempt |
| 1069 | // to reinitialize them. |
| 1070 | this->destroyReadStruct(); |
| 1071 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 1072 | png_structp png_ptr; |
| 1073 | png_infop info_ptr; |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1074 | if (!read_header(this->stream(), fPngChunkReader.get(), nullptr, &png_ptr, &info_ptr)) { |
| 1075 | return false; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 1076 | } |
| 1077 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1078 | fPng_ptr = png_ptr; |
| 1079 | fInfo_ptr = info_ptr; |
Leon Scroggins III | 8323965 | 2017-04-21 13:47:12 -0400 | [diff] [blame] | 1080 | fDecodedIdat = false; |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1081 | return true; |
| 1082 | } |
msarett | 6a73821 | 2016-03-04 13:27:35 -0800 | [diff] [blame] | 1083 | |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 1084 | SkCodec::Result SkPngCodec::onGetPixels(const SkImageInfo& dstInfo, void* dst, |
| 1085 | size_t rowBytes, const Options& options, |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1086 | int* rowsDecoded) { |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1087 | if (!conversion_possible(dstInfo, this->getInfo())) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1088 | return kInvalidConversion; |
| 1089 | } |
msarett | d1ec89b | 2016-08-03 12:59:27 -0700 | [diff] [blame] | 1090 | |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 1091 | Result result = this->initializeXforms(dstInfo, options); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1092 | if (kSuccess != result) { |
| 1093 | return result; |
| 1094 | } |
| 1095 | |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1096 | if (options.fSubset) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1097 | return kUnimplemented; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 1098 | } |
| 1099 | |
msarett | 400a93b | 2016-09-01 18:32:52 -0700 | [diff] [blame] | 1100 | this->allocateStorage(dstInfo); |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1101 | this->initializeXformParams(); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1102 | return this->decodeAllRows(dst, rowBytes, rowsDecoded); |
| 1103 | } |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1104 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1105 | SkCodec::Result SkPngCodec::onStartIncrementalDecode(const SkImageInfo& dstInfo, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 1106 | void* dst, size_t rowBytes, const SkCodec::Options& options) { |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1107 | if (!conversion_possible(dstInfo, this->getInfo())) { |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1108 | return kInvalidConversion; |
| 1109 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1110 | |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame^] | 1111 | Result result = this->initializeXforms(dstInfo, options); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1112 | if (kSuccess != result) { |
| 1113 | return result; |
| 1114 | } |
| 1115 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1116 | this->allocateStorage(dstInfo); |
| 1117 | |
| 1118 | int firstRow, lastRow; |
| 1119 | if (options.fSubset) { |
| 1120 | firstRow = options.fSubset->top(); |
| 1121 | lastRow = options.fSubset->bottom() - 1; |
| 1122 | } else { |
| 1123 | firstRow = 0; |
| 1124 | lastRow = dstInfo.height() - 1; |
| 1125 | } |
| 1126 | this->setRange(firstRow, lastRow, dst, rowBytes); |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 1127 | return kSuccess; |
scroggo | 6fb2391 | 2016-06-02 14:16:43 -0700 | [diff] [blame] | 1128 | } |
| 1129 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1130 | SkCodec::Result SkPngCodec::onIncrementalDecode(int* rowsDecoded) { |
| 1131 | // FIXME: Only necessary on the first call. |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1132 | this->initializeXformParams(); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1133 | |
| 1134 | return this->decode(rowsDecoded); |
| 1135 | } |
| 1136 | |
msarett | f7eb6fc | 2016-09-13 09:04:11 -0700 | [diff] [blame] | 1137 | uint64_t SkPngCodec::onGetFillValue(const SkImageInfo& dstInfo) const { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1138 | const SkPMColor* colorPtr = get_color_ptr(fColorTable.get()); |
| 1139 | if (colorPtr) { |
msarett | c044461 | 2016-09-16 11:45:58 -0700 | [diff] [blame] | 1140 | SkAlphaType alphaType = select_xform_alpha(dstInfo.alphaType(), |
msarett | f7eb6fc | 2016-09-13 09:04:11 -0700 | [diff] [blame] | 1141 | this->getInfo().alphaType()); |
| 1142 | return get_color_table_fill_value(dstInfo.colorType(), alphaType, colorPtr, 0, |
Matt Sarett | 19aff5d | 2017-04-03 16:01:10 -0400 | [diff] [blame] | 1143 | this->colorXform(), true); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1144 | } |
msarett | f7eb6fc | 2016-09-13 09:04:11 -0700 | [diff] [blame] | 1145 | return INHERITED::onGetFillValue(dstInfo); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | SkCodec* SkPngCodec::NewFromStream(SkStream* stream, SkPngChunkReader* chunkReader) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1149 | std::unique_ptr<SkStream> streamDeleter(stream); |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1150 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1151 | SkCodec* outCodec = nullptr; |
| 1152 | if (read_header(streamDeleter.get(), chunkReader, &outCodec, nullptr, nullptr)) { |
msarett | ac6c750 | 2016-04-25 09:30:24 -0700 | [diff] [blame] | 1153 | // Codec has taken ownership of the stream. |
| 1154 | SkASSERT(outCodec); |
| 1155 | streamDeleter.release(); |
| 1156 | return outCodec; |
| 1157 | } |
| 1158 | |
| 1159 | return nullptr; |
scroggo | 0524590 | 2015-03-25 11:11:52 -0700 | [diff] [blame] | 1160 | } |