halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [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 | |
Leon Scroggins III | 932efed | 2016-12-16 11:39:51 -0500 | [diff] [blame] | 8 | #include "FakeStreams.h" |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 9 | #include "Resources.h" |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 10 | #include "SkAndroidCodec.h" |
Hal Canary | 95e3c05 | 2017-01-11 12:44:43 -0500 | [diff] [blame] | 11 | #include "SkAutoMalloc.h" |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 12 | #include "SkBitmap.h" |
Leon Scroggins III | cbf66a2 | 2018-02-16 12:03:03 -0500 | [diff] [blame] | 13 | #include "SkCanvas.h" |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 14 | #include "SkCodec.h" |
msarett | edd2dcf | 2016-01-14 13:12:26 -0800 | [diff] [blame] | 15 | #include "SkCodecImageGenerator.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 16 | #include "SkColor.h" |
| 17 | #include "SkColorSpace.h" |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 18 | #include "SkColorSpacePriv.h" |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 19 | #include "SkData.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 20 | #include "SkEncodedImageFormat.h" |
Kevin Lubick | c456b73 | 2017-01-11 17:21:57 +0000 | [diff] [blame] | 21 | #include "SkFrontBufferedStream.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 22 | #include "SkImage.h" |
| 23 | #include "SkImageGenerator.h" |
| 24 | #include "SkImageInfo.h" |
Ben Wagner | 501c17c | 2018-03-12 20:04:31 +0000 | [diff] [blame] | 25 | #include "SkJpegEncoder.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 26 | #include "SkMD5.h" |
| 27 | #include "SkMakeUnique.h" |
| 28 | #include "SkMalloc.h" |
| 29 | #include "SkMatrix44.h" |
| 30 | #include "SkPixmap.h" |
Hal Canary | 95e3c05 | 2017-01-11 12:44:43 -0500 | [diff] [blame] | 31 | #include "SkPngChunkReader.h" |
Matt Sarett | c367d03 | 2017-05-05 11:13:26 -0400 | [diff] [blame] | 32 | #include "SkPngEncoder.h" |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 33 | #include "SkRandom.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 34 | #include "SkRect.h" |
| 35 | #include "SkRefCnt.h" |
| 36 | #include "SkSize.h" |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 37 | #include "SkStream.h" |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 38 | #include "SkStreamPriv.h" |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 39 | #include "SkString.h" |
| 40 | #include "SkTemplates.h" |
| 41 | #include "SkTypes.h" |
Leon Scroggins III | cbf66a2 | 2018-02-16 12:03:03 -0500 | [diff] [blame] | 42 | #include "SkUnPreMultiply.h" |
Matt Sarett | 04c3731 | 2017-05-05 14:02:13 -0400 | [diff] [blame] | 43 | #include "SkWebpEncoder.h" |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 44 | #include "Test.h" |
Ben Wagner | 501c17c | 2018-03-12 20:04:31 +0000 | [diff] [blame] | 45 | #include "png.h" |
Ben Wagner | 501c17c | 2018-03-12 20:04:31 +0000 | [diff] [blame] | 46 | #include "sk_tool_utils.h" |
Ben Wagner | 1a462bd | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 47 | |
Ben Wagner | b607a8f | 2018-03-12 13:46:21 -0400 | [diff] [blame] | 48 | #include <setjmp.h> |
| 49 | #include <cstring> |
| 50 | #include <memory> |
| 51 | #include <utility> |
| 52 | #include <vector> |
| 53 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 54 | #if PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR < 5 |
| 55 | // FIXME (scroggo): Google3 needs to be updated to use a newer version of libpng. In |
| 56 | // the meantime, we had to break some pieces of SkPngCodec in order to support Google3. |
| 57 | // The parts that are broken are likely not used by Google3. |
| 58 | #define SK_PNG_DISABLE_TESTS |
| 59 | #endif |
| 60 | |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 61 | static void md5(const SkBitmap& bm, SkMD5::Digest* digest) { |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 62 | SkASSERT(bm.getPixels()); |
| 63 | SkMD5 md5; |
| 64 | size_t rowLen = bm.info().bytesPerPixel() * bm.width(); |
| 65 | for (int y = 0; y < bm.height(); ++y) { |
halcanary | 1e90304 | 2016-04-25 10:29:36 -0700 | [diff] [blame] | 66 | md5.write(bm.getAddr(0, y), rowLen); |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 67 | } |
| 68 | md5.finish(*digest); |
| 69 | } |
| 70 | |
scroggo | 9b2cdbf4 | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 71 | /** |
| 72 | * Compute the digest for bm and compare it to a known good digest. |
| 73 | * @param r Reporter to assert that bm's digest matches goodDigest. |
| 74 | * @param goodDigest The known good digest to compare to. |
| 75 | * @param bm The bitmap to test. |
| 76 | */ |
| 77 | static void compare_to_good_digest(skiatest::Reporter* r, const SkMD5::Digest& goodDigest, |
| 78 | const SkBitmap& bm) { |
| 79 | SkMD5::Digest digest; |
| 80 | md5(bm, &digest); |
| 81 | REPORTER_ASSERT(r, digest == goodDigest); |
| 82 | } |
| 83 | |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 84 | /** |
| 85 | * Test decoding an SkCodec to a particular SkImageInfo. |
| 86 | * |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 87 | * Calling getPixels(info) should return expectedResult, and if goodDigest is non nullptr, |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 88 | * the resulting decode should match. |
| 89 | */ |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 90 | template<typename Codec> |
| 91 | static void test_info(skiatest::Reporter* r, Codec* codec, const SkImageInfo& info, |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 92 | SkCodec::Result expectedResult, const SkMD5::Digest* goodDigest) { |
| 93 | SkBitmap bm; |
| 94 | bm.allocPixels(info); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 95 | |
| 96 | SkCodec::Result result = codec->getPixels(info, bm.getPixels(), bm.rowBytes()); |
| 97 | REPORTER_ASSERT(r, result == expectedResult); |
| 98 | |
| 99 | if (goodDigest) { |
| 100 | compare_to_good_digest(r, *goodDigest, bm); |
| 101 | } |
| 102 | } |
| 103 | |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 104 | SkIRect generate_random_subset(SkRandom* rand, int w, int h) { |
| 105 | SkIRect rect; |
| 106 | do { |
| 107 | rect.fLeft = rand->nextRangeU(0, w); |
| 108 | rect.fTop = rand->nextRangeU(0, h); |
| 109 | rect.fRight = rand->nextRangeU(0, w); |
| 110 | rect.fBottom = rand->nextRangeU(0, h); |
| 111 | rect.sort(); |
| 112 | } while (rect.isEmpty()); |
| 113 | return rect; |
| 114 | } |
| 115 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 116 | static void test_incremental_decode(skiatest::Reporter* r, SkCodec* codec, const SkImageInfo& info, |
| 117 | const SkMD5::Digest& goodDigest) { |
| 118 | SkBitmap bm; |
| 119 | bm.allocPixels(info); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 120 | |
| 121 | REPORTER_ASSERT(r, SkCodec::kSuccess == codec->startIncrementalDecode(info, bm.getPixels(), |
| 122 | bm.rowBytes())); |
| 123 | |
| 124 | REPORTER_ASSERT(r, SkCodec::kSuccess == codec->incrementalDecode()); |
| 125 | |
| 126 | compare_to_good_digest(r, goodDigest, bm); |
| 127 | } |
| 128 | |
| 129 | // Test in stripes, similar to DM's kStripe_Mode |
| 130 | static void test_in_stripes(skiatest::Reporter* r, SkCodec* codec, const SkImageInfo& info, |
| 131 | const SkMD5::Digest& goodDigest) { |
| 132 | SkBitmap bm; |
| 133 | bm.allocPixels(info); |
| 134 | bm.eraseColor(SK_ColorYELLOW); |
| 135 | |
| 136 | const int height = info.height(); |
| 137 | // Note that if numStripes does not evenly divide height there will be an extra |
| 138 | // stripe. |
| 139 | const int numStripes = 4; |
| 140 | |
| 141 | if (numStripes > height) { |
| 142 | // Image is too small. |
| 143 | return; |
| 144 | } |
| 145 | |
| 146 | const int stripeHeight = height / numStripes; |
| 147 | |
| 148 | // Iterate through the image twice. Once to decode odd stripes, and once for even. |
| 149 | for (int oddEven = 1; oddEven >= 0; oddEven--) { |
| 150 | for (int y = oddEven * stripeHeight; y < height; y += 2 * stripeHeight) { |
| 151 | SkIRect subset = SkIRect::MakeLTRB(0, y, info.width(), |
| 152 | SkTMin(y + stripeHeight, height)); |
| 153 | SkCodec::Options options; |
| 154 | options.fSubset = ⊂ |
| 155 | if (SkCodec::kSuccess != codec->startIncrementalDecode(info, bm.getAddr(0, y), |
| 156 | bm.rowBytes(), &options)) { |
| 157 | ERRORF(r, "failed to start incremental decode!\ttop: %i\tbottom%i\n", |
| 158 | subset.top(), subset.bottom()); |
| 159 | return; |
| 160 | } |
| 161 | if (SkCodec::kSuccess != codec->incrementalDecode()) { |
| 162 | ERRORF(r, "failed incremental decode starting from line %i\n", y); |
| 163 | return; |
| 164 | } |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | compare_to_good_digest(r, goodDigest, bm); |
| 169 | } |
| 170 | |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 171 | template<typename Codec> |
| 172 | static void test_codec(skiatest::Reporter* r, Codec* codec, SkBitmap& bm, const SkImageInfo& info, |
scroggo | 27c1728 | 2015-10-27 08:14:46 -0700 | [diff] [blame] | 173 | const SkISize& size, SkCodec::Result expectedResult, SkMD5::Digest* digest, |
| 174 | const SkMD5::Digest* goodDigest) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 175 | |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 176 | REPORTER_ASSERT(r, info.dimensions() == size); |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 177 | bm.allocPixels(info); |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 178 | |
| 179 | SkCodec::Result result = codec->getPixels(info, bm.getPixels(), bm.rowBytes()); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 180 | REPORTER_ASSERT(r, result == expectedResult); |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 181 | |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 182 | md5(bm, digest); |
| 183 | if (goodDigest) { |
| 184 | REPORTER_ASSERT(r, *digest == *goodDigest); |
| 185 | } |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 186 | |
msarett | 8ff6ca6 | 2015-09-18 12:06:04 -0700 | [diff] [blame] | 187 | { |
| 188 | // Test decoding to 565 |
| 189 | SkImageInfo info565 = info.makeColorType(kRGB_565_SkColorType); |
scroggo | ba58489 | 2016-05-20 13:56:13 -0700 | [diff] [blame] | 190 | if (info.alphaType() == kOpaque_SkAlphaType) { |
| 191 | // Decoding to 565 should succeed. |
| 192 | SkBitmap bm565; |
| 193 | bm565.allocPixels(info565); |
scroggo | ba58489 | 2016-05-20 13:56:13 -0700 | [diff] [blame] | 194 | |
| 195 | // This will allow comparison even if the image is incomplete. |
| 196 | bm565.eraseColor(SK_ColorBLACK); |
| 197 | |
| 198 | REPORTER_ASSERT(r, expectedResult == codec->getPixels(info565, |
| 199 | bm565.getPixels(), bm565.rowBytes())); |
| 200 | |
| 201 | SkMD5::Digest digest565; |
| 202 | md5(bm565, &digest565); |
| 203 | |
| 204 | // A dumb client's request for non-opaque should also succeed. |
| 205 | for (auto alpha : { kPremul_SkAlphaType, kUnpremul_SkAlphaType }) { |
| 206 | info565 = info565.makeAlphaType(alpha); |
| 207 | test_info(r, codec, info565, expectedResult, &digest565); |
| 208 | } |
| 209 | } else { |
| 210 | test_info(r, codec, info565, SkCodec::kInvalidConversion, nullptr); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | if (codec->getInfo().colorType() == kGray_8_SkColorType) { |
| 215 | SkImageInfo grayInfo = codec->getInfo(); |
| 216 | SkBitmap grayBm; |
| 217 | grayBm.allocPixels(grayInfo); |
scroggo | ba58489 | 2016-05-20 13:56:13 -0700 | [diff] [blame] | 218 | |
| 219 | grayBm.eraseColor(SK_ColorBLACK); |
| 220 | |
| 221 | REPORTER_ASSERT(r, expectedResult == codec->getPixels(grayInfo, |
| 222 | grayBm.getPixels(), grayBm.rowBytes())); |
| 223 | |
| 224 | SkMD5::Digest grayDigest; |
| 225 | md5(grayBm, &grayDigest); |
| 226 | |
| 227 | for (auto alpha : { kPremul_SkAlphaType, kUnpremul_SkAlphaType }) { |
| 228 | grayInfo = grayInfo.makeAlphaType(alpha); |
| 229 | test_info(r, codec, grayInfo, expectedResult, &grayDigest); |
| 230 | } |
msarett | 8ff6ca6 | 2015-09-18 12:06:04 -0700 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | // Verify that re-decoding gives the same result. It is interesting to check this after |
| 234 | // a decode to 565, since choosing to decode to 565 may result in some of the decode |
| 235 | // options being modified. These options should return to their defaults on another |
| 236 | // decode to kN32, so the new digest should match the old digest. |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 237 | test_info(r, codec, info, expectedResult, digest); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 238 | |
| 239 | { |
| 240 | // Check alpha type conversions |
| 241 | if (info.alphaType() == kOpaque_SkAlphaType) { |
| 242 | test_info(r, codec, info.makeAlphaType(kUnpremul_SkAlphaType), |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 243 | expectedResult, digest); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 244 | test_info(r, codec, info.makeAlphaType(kPremul_SkAlphaType), |
scroggo | c5560be | 2016-02-03 09:42:42 -0800 | [diff] [blame] | 245 | expectedResult, digest); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 246 | } else { |
| 247 | // Decoding to opaque should fail |
| 248 | test_info(r, codec, info.makeAlphaType(kOpaque_SkAlphaType), |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 249 | SkCodec::kInvalidConversion, nullptr); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 250 | SkAlphaType otherAt = info.alphaType(); |
| 251 | if (kPremul_SkAlphaType == otherAt) { |
| 252 | otherAt = kUnpremul_SkAlphaType; |
| 253 | } else { |
| 254 | otherAt = kPremul_SkAlphaType; |
| 255 | } |
| 256 | // The other non-opaque alpha type should always succeed, but not match. |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 257 | test_info(r, codec, info.makeAlphaType(otherAt), expectedResult, nullptr); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 258 | } |
| 259 | } |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 260 | } |
| 261 | |
scroggo | bed1ed6 | 2016-02-11 10:24:55 -0800 | [diff] [blame] | 262 | static bool supports_partial_scanlines(const char path[]) { |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 263 | static const char* const exts[] = { |
| 264 | "jpg", "jpeg", "png", "webp" |
| 265 | "JPG", "JPEG", "PNG", "WEBP" |
| 266 | }; |
| 267 | |
| 268 | for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) { |
| 269 | if (SkStrEndsWith(path, exts[i])) { |
| 270 | return true; |
| 271 | } |
| 272 | } |
| 273 | return false; |
| 274 | } |
| 275 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 276 | // FIXME: Break up this giant function |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 277 | static void check(skiatest::Reporter* r, |
| 278 | const char path[], |
| 279 | SkISize size, |
| 280 | bool supportsScanlineDecoding, |
| 281 | bool supportsSubsetDecoding, |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 282 | bool supportsIncomplete, |
| 283 | bool supportsNewScanlineDecoding = false) { |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 284 | // If we're testing incomplete decodes, let's run the same test on full decodes. |
| 285 | if (supportsIncomplete) { |
| 286 | check(r, path, size, supportsScanlineDecoding, supportsSubsetDecoding, false, |
| 287 | supportsNewScanlineDecoding); |
| 288 | } |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 289 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 290 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 291 | if (!stream) { |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 292 | return; |
| 293 | } |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 294 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 295 | std::unique_ptr<SkCodec> codec(nullptr); |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 296 | if (supportsIncomplete) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 297 | size_t size = stream->getLength(); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 298 | codec = SkCodec::MakeFromData(SkData::MakeFromStream(stream.get(), 2 * size / 3)); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 299 | } else { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 300 | codec = SkCodec::MakeFromStream(std::move(stream)); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 301 | } |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 302 | if (!codec) { |
| 303 | ERRORF(r, "Unable to decode '%s'", path); |
| 304 | return; |
| 305 | } |
| 306 | |
| 307 | // Test full image decodes with SkCodec |
| 308 | SkMD5::Digest codecDigest; |
scroggo | ef0fed3 | 2016-02-18 05:59:25 -0800 | [diff] [blame] | 309 | const SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType); |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 310 | SkBitmap bm; |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 311 | SkCodec::Result expectedResult = |
| 312 | supportsIncomplete ? SkCodec::kIncompleteInput : SkCodec::kSuccess; |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 313 | test_codec(r, codec.get(), bm, info, size, expectedResult, &codecDigest, nullptr); |
scroggo | d1bc574 | 2015-08-12 08:31:44 -0700 | [diff] [blame] | 314 | |
| 315 | // Scanline decoding follows. |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 316 | |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 317 | if (supportsNewScanlineDecoding && !supportsIncomplete) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 318 | test_incremental_decode(r, codec.get(), info, codecDigest); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 319 | // This is only supported by codecs that use incremental decoding to |
| 320 | // support subset decodes - png and jpeg (once SkJpegCodec is |
| 321 | // converted). |
| 322 | if (SkStrEndsWith(path, "png") || SkStrEndsWith(path, "PNG")) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 323 | test_in_stripes(r, codec.get(), info, codecDigest); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 324 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | // Need to call startScanlineDecode() first. |
| 328 | REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0) == 0); |
| 329 | REPORTER_ASSERT(r, !codec->skipScanlines(1)); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 330 | const SkCodec::Result startResult = codec->startScanlineDecode(info); |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 331 | if (supportsScanlineDecoding) { |
| 332 | bm.eraseColor(SK_ColorYELLOW); |
msarett | c0e80c1 | 2015-07-01 06:50:35 -0700 | [diff] [blame] | 333 | |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 334 | REPORTER_ASSERT(r, startResult == SkCodec::kSuccess); |
scroggo | 9b2cdbf4 | 2015-07-10 12:07:02 -0700 | [diff] [blame] | 335 | |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 336 | for (int y = 0; y < info.height(); y++) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 337 | const int lines = codec->getScanlines(bm.getAddr(0, y), 1, 0); |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 338 | if (!supportsIncomplete) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 339 | REPORTER_ASSERT(r, 1 == lines); |
| 340 | } |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 341 | } |
| 342 | // verify that scanline decoding gives the same result. |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 343 | if (SkCodec::kTopDown_SkScanlineOrder == codec->getScanlineOrder()) { |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 344 | compare_to_good_digest(r, codecDigest, bm); |
msarett | 5406d6f | 2015-08-31 06:55:13 -0700 | [diff] [blame] | 345 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 346 | |
| 347 | // Cannot continue to decode scanlines beyond the end |
| 348 | REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0) |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 349 | == 0); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 350 | |
| 351 | // Interrupting a scanline decode with a full decode starts from |
| 352 | // scratch |
| 353 | REPORTER_ASSERT(r, codec->startScanlineDecode(info) == SkCodec::kSuccess); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 354 | const int lines = codec->getScanlines(bm.getAddr(0, 0), 1, 0); |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 355 | if (!supportsIncomplete) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 356 | REPORTER_ASSERT(r, lines == 1); |
| 357 | } |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 358 | REPORTER_ASSERT(r, codec->getPixels(bm.info(), bm.getPixels(), bm.rowBytes()) |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 359 | == expectedResult); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 360 | REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0) |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 361 | == 0); |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 362 | REPORTER_ASSERT(r, codec->skipScanlines(1) |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 363 | == 0); |
msarett | 80803ff | 2015-10-16 10:54:12 -0700 | [diff] [blame] | 364 | |
| 365 | // Test partial scanline decodes |
scroggo | bed1ed6 | 2016-02-11 10:24:55 -0800 | [diff] [blame] | 366 | if (supports_partial_scanlines(path) && info.width() >= 3) { |
msarett | 80803ff | 2015-10-16 10:54:12 -0700 | [diff] [blame] | 367 | SkCodec::Options options; |
| 368 | int width = info.width(); |
| 369 | int height = info.height(); |
| 370 | SkIRect subset = SkIRect::MakeXYWH(2 * (width / 3), 0, width / 3, height); |
| 371 | options.fSubset = ⊂ |
| 372 | |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 373 | const auto partialStartResult = codec->startScanlineDecode(info, &options); |
msarett | 80803ff | 2015-10-16 10:54:12 -0700 | [diff] [blame] | 374 | REPORTER_ASSERT(r, partialStartResult == SkCodec::kSuccess); |
| 375 | |
| 376 | for (int y = 0; y < height; y++) { |
| 377 | const int lines = codec->getScanlines(bm.getAddr(0, y), 1, 0); |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 378 | if (!supportsIncomplete) { |
msarett | 80803ff | 2015-10-16 10:54:12 -0700 | [diff] [blame] | 379 | REPORTER_ASSERT(r, 1 == lines); |
| 380 | } |
| 381 | } |
| 382 | } |
scroggo | 5842154 | 2015-04-01 11:25:20 -0700 | [diff] [blame] | 383 | } else { |
scroggo | 46c5747 | 2015-09-30 08:57:13 -0700 | [diff] [blame] | 384 | REPORTER_ASSERT(r, startResult == SkCodec::kUnimplemented); |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 385 | } |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 386 | |
| 387 | // The rest of this function tests decoding subsets, and will decode an arbitrary number of |
| 388 | // random subsets. |
| 389 | // Do not attempt to decode subsets of an image of only once pixel, since there is no |
| 390 | // meaningful subset. |
| 391 | if (size.width() * size.height() == 1) { |
| 392 | return; |
| 393 | } |
| 394 | |
| 395 | SkRandom rand; |
| 396 | SkIRect subset; |
| 397 | SkCodec::Options opts; |
| 398 | opts.fSubset = ⊂ |
| 399 | for (int i = 0; i < 5; i++) { |
| 400 | subset = generate_random_subset(&rand, size.width(), size.height()); |
| 401 | SkASSERT(!subset.isEmpty()); |
| 402 | const bool supported = codec->getValidSubset(&subset); |
| 403 | REPORTER_ASSERT(r, supported == supportsSubsetDecoding); |
| 404 | |
| 405 | SkImageInfo subsetInfo = info.makeWH(subset.width(), subset.height()); |
| 406 | SkBitmap bm; |
| 407 | bm.allocPixels(subsetInfo); |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 408 | const auto result = codec->getPixels(bm.info(), bm.getPixels(), bm.rowBytes(), &opts); |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 409 | |
| 410 | if (supportsSubsetDecoding) { |
Leon Scroggins III | 58f100c | 2016-12-20 09:49:25 -0500 | [diff] [blame] | 411 | if (expectedResult == SkCodec::kSuccess) { |
| 412 | REPORTER_ASSERT(r, result == expectedResult); |
Leon Scroggins III | 58f100c | 2016-12-20 09:49:25 -0500 | [diff] [blame] | 413 | } |
scroggo | b636b45 | 2015-07-22 07:16:20 -0700 | [diff] [blame] | 414 | // Webp is the only codec that supports subsets, and it will have modified the subset |
| 415 | // to have even left/top. |
| 416 | REPORTER_ASSERT(r, SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop)); |
| 417 | } else { |
| 418 | // No subsets will work. |
| 419 | REPORTER_ASSERT(r, result == SkCodec::kUnimplemented); |
| 420 | } |
| 421 | } |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 422 | |
scroggo | bed1ed6 | 2016-02-11 10:24:55 -0800 | [diff] [blame] | 423 | // SkAndroidCodec tests |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 424 | if (supportsScanlineDecoding || supportsSubsetDecoding || supportsNewScanlineDecoding) { |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 425 | |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 426 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 427 | if (!stream) { |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 428 | return; |
| 429 | } |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 430 | |
Leon Scroggins III | 7397d7a | 2018-01-04 13:26:30 -0500 | [diff] [blame] | 431 | auto androidCodec = SkAndroidCodec::MakeFromCodec(std::move(codec)); |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 432 | if (!androidCodec) { |
msarett | cc7f305 | 2015-10-05 14:20:27 -0700 | [diff] [blame] | 433 | ERRORF(r, "Unable to decode '%s'", path); |
| 434 | return; |
| 435 | } |
| 436 | |
| 437 | SkBitmap bm; |
scroggo | bed1ed6 | 2016-02-11 10:24:55 -0800 | [diff] [blame] | 438 | SkMD5::Digest androidCodecDigest; |
| 439 | test_codec(r, androidCodec.get(), bm, info, size, expectedResult, &androidCodecDigest, |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 440 | &codecDigest); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Nigel Tao | 9b9453e | 2018-08-01 09:59:38 +1000 | [diff] [blame] | 443 | if (!supportsIncomplete) { |
scroggo | ef0fed3 | 2016-02-18 05:59:25 -0800 | [diff] [blame] | 444 | // Test SkCodecImageGenerator |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 445 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
| 446 | sk_sp<SkData> fullData(SkData::MakeFromStream(stream.get(), stream->getLength())); |
| 447 | std::unique_ptr<SkImageGenerator> gen( |
Mike Reed | 185130c | 2017-02-15 15:14:16 -0500 | [diff] [blame] | 448 | SkCodecImageGenerator::MakeFromEncodedCodec(fullData)); |
msarett | edd2dcf | 2016-01-14 13:12:26 -0800 | [diff] [blame] | 449 | SkBitmap bm; |
| 450 | bm.allocPixels(info); |
msarett | edd2dcf | 2016-01-14 13:12:26 -0800 | [diff] [blame] | 451 | REPORTER_ASSERT(r, gen->getPixels(info, bm.getPixels(), bm.rowBytes())); |
| 452 | compare_to_good_digest(r, codecDigest, bm); |
scroggo | ef0fed3 | 2016-02-18 05:59:25 -0800 | [diff] [blame] | 453 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 454 | #ifndef SK_PNG_DISABLE_TESTS |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 455 | // Test using SkFrontBufferedStream, as Android does |
Mike Reed | 98c5d92 | 2017-09-15 21:39:47 -0400 | [diff] [blame] | 456 | auto bufferedStream = SkFrontBufferedStream::Make( |
| 457 | SkMemoryStream::Make(std::move(fullData)), SkCodec::MinBufferedBytesNeeded()); |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 458 | REPORTER_ASSERT(r, bufferedStream); |
Mike Reed | 98c5d92 | 2017-09-15 21:39:47 -0400 | [diff] [blame] | 459 | codec = SkCodec::MakeFromStream(std::move(bufferedStream)); |
scroggo | d8d6855 | 2016-06-06 11:26:17 -0700 | [diff] [blame] | 460 | REPORTER_ASSERT(r, codec); |
| 461 | if (codec) { |
| 462 | test_info(r, codec.get(), info, SkCodec::kSuccess, &codecDigest); |
scroggo | ef0fed3 | 2016-02-18 05:59:25 -0800 | [diff] [blame] | 463 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 464 | #endif |
msarett | edd2dcf | 2016-01-14 13:12:26 -0800 | [diff] [blame] | 465 | } |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 468 | DEF_TEST(Codec_wbmp, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 469 | check(r, "images/mandrill.wbmp", SkISize::Make(512, 512), true, false, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 470 | } |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 471 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 472 | DEF_TEST(Codec_webp, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 473 | check(r, "images/baby_tux.webp", SkISize::Make(386, 395), false, true, true); |
| 474 | check(r, "images/color_wheel.webp", SkISize::Make(128, 128), false, true, true); |
| 475 | check(r, "images/yellow_rose.webp", SkISize::Make(400, 301), false, true, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 476 | } |
scroggo | 6f5e619 | 2015-06-18 12:53:43 -0700 | [diff] [blame] | 477 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 478 | DEF_TEST(Codec_bmp, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 479 | check(r, "images/randPixels.bmp", SkISize::Make(8, 8), true, false, true); |
| 480 | check(r, "images/rle.bmp", SkISize::Make(320, 240), true, false, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 481 | } |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 482 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 483 | DEF_TEST(Codec_ico, r) { |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 484 | // FIXME: We are not ready to test incomplete ICOs |
msarett | 68b204e | 2015-04-01 12:09:21 -0700 | [diff] [blame] | 485 | // These two tests examine interestingly different behavior: |
| 486 | // Decodes an embedded BMP image |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 487 | check(r, "images/color_wheel.ico", SkISize::Make(128, 128), true, false, false); |
msarett | 68b204e | 2015-04-01 12:09:21 -0700 | [diff] [blame] | 488 | // Decodes an embedded PNG image |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 489 | check(r, "images/google_chrome.ico", SkISize::Make(256, 256), false, false, false, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 490 | } |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 491 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 492 | DEF_TEST(Codec_gif, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 493 | check(r, "images/box.gif", SkISize::Make(200, 55), false, false, true, true); |
| 494 | check(r, "images/color_wheel.gif", SkISize::Make(128, 128), false, false, true, true); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 495 | // randPixels.gif is too small to test incomplete |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 496 | check(r, "images/randPixels.gif", SkISize::Make(8, 8), false, false, false, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 497 | } |
msarett | 438b2ad | 2015-04-09 12:43:10 -0700 | [diff] [blame] | 498 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 499 | DEF_TEST(Codec_jpg, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 500 | check(r, "images/CMYK.jpg", SkISize::Make(642, 516), true, false, true); |
| 501 | check(r, "images/color_wheel.jpg", SkISize::Make(128, 128), true, false, true); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 502 | // grayscale.jpg is too small to test incomplete |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 503 | check(r, "images/grayscale.jpg", SkISize::Make(128, 128), true, false, false); |
| 504 | check(r, "images/mandrill_512_q075.jpg", SkISize::Make(512, 512), true, false, true); |
msarett | e6dd004 | 2015-10-09 11:07:34 -0700 | [diff] [blame] | 505 | // randPixels.jpg is too small to test incomplete |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 506 | check(r, "images/randPixels.jpg", SkISize::Make(8, 8), true, false, false); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 507 | } |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 508 | |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 509 | DEF_TEST(Codec_png, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 510 | check(r, "images/arrow.png", SkISize::Make(187, 312), false, false, true, true); |
| 511 | check(r, "images/baby_tux.png", SkISize::Make(240, 246), false, false, true, true); |
| 512 | check(r, "images/color_wheel.png", SkISize::Make(128, 128), false, false, true, true); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 513 | // half-transparent-white-pixel.png is too small to test incomplete |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 514 | check(r, "images/half-transparent-white-pixel.png", SkISize::Make(1, 1), false, false, false, true); |
| 515 | check(r, "images/mandrill_128.png", SkISize::Make(128, 128), false, false, true, true); |
Brian Osman | ccb21bf | 2018-07-09 14:57:48 -0400 | [diff] [blame] | 516 | // mandrill_16.png is too small (relative to embedded sRGB profile) to test incomplete |
| 517 | check(r, "images/mandrill_16.png", SkISize::Make(16, 16), false, false, false, true); |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 518 | check(r, "images/mandrill_256.png", SkISize::Make(256, 256), false, false, true, true); |
| 519 | check(r, "images/mandrill_32.png", SkISize::Make(32, 32), false, false, true, true); |
| 520 | check(r, "images/mandrill_512.png", SkISize::Make(512, 512), false, false, true, true); |
| 521 | check(r, "images/mandrill_64.png", SkISize::Make(64, 64), false, false, true, true); |
| 522 | check(r, "images/plane.png", SkISize::Make(250, 126), false, false, true, true); |
| 523 | check(r, "images/plane_interlaced.png", SkISize::Make(250, 126), false, false, true, true); |
| 524 | check(r, "images/randPixels.png", SkISize::Make(8, 8), false, false, true, true); |
| 525 | check(r, "images/yellow_rose.png", SkISize::Make(400, 301), false, false, true, true); |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 526 | } |
yujieqin | 916de9f | 2016-01-25 08:26:16 -0800 | [diff] [blame] | 527 | |
yujieqin | f236ee4 | 2016-02-29 07:14:42 -0800 | [diff] [blame] | 528 | // Disable RAW tests for Win32. |
| 529 | #if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32)) |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 530 | DEF_TEST(Codec_raw, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 531 | check(r, "images/sample_1mp.dng", SkISize::Make(600, 338), false, false, false); |
| 532 | check(r, "images/sample_1mp_rotated.dng", SkISize::Make(600, 338), false, false, false); |
| 533 | check(r, "images/dng_with_preview.dng", SkISize::Make(600, 338), true, false, false); |
halcanary | a096d7a | 2015-03-27 12:16:53 -0700 | [diff] [blame] | 534 | } |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 535 | #endif |
scroggo | 0a7e69c | 2015-04-03 07:22:22 -0700 | [diff] [blame] | 536 | |
| 537 | static void test_invalid_stream(skiatest::Reporter* r, const void* stream, size_t len) { |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 538 | // Neither of these calls should return a codec. Bots should catch us if we leaked anything. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 539 | REPORTER_ASSERT(r, !SkCodec::MakeFromStream( |
| 540 | skstd::make_unique<SkMemoryStream>(stream, len, false))); |
| 541 | REPORTER_ASSERT(r, !SkAndroidCodec::MakeFromStream( |
| 542 | skstd::make_unique<SkMemoryStream>(stream, len, false))); |
scroggo | 0a7e69c | 2015-04-03 07:22:22 -0700 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | // Ensure that SkCodec::NewFromStream handles freeing the passed in SkStream, |
| 546 | // even on failure. Test some bad streams. |
| 547 | DEF_TEST(Codec_leaks, r) { |
| 548 | // No codec should claim this as their format, so this tests SkCodec::NewFromStream. |
| 549 | const char nonSupportedStream[] = "hello world"; |
| 550 | // The other strings should look like the beginning of a file type, so we'll call some |
| 551 | // internal version of NewFromStream, which must also delete the stream on failure. |
| 552 | const unsigned char emptyPng[] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a }; |
| 553 | const unsigned char emptyJpeg[] = { 0xFF, 0xD8, 0xFF }; |
| 554 | const char emptyWebp[] = "RIFF1234WEBPVP"; |
| 555 | const char emptyBmp[] = { 'B', 'M' }; |
| 556 | const char emptyIco[] = { '\x00', '\x00', '\x01', '\x00' }; |
| 557 | const char emptyGif[] = "GIFVER"; |
| 558 | |
| 559 | test_invalid_stream(r, nonSupportedStream, sizeof(nonSupportedStream)); |
| 560 | test_invalid_stream(r, emptyPng, sizeof(emptyPng)); |
| 561 | test_invalid_stream(r, emptyJpeg, sizeof(emptyJpeg)); |
| 562 | test_invalid_stream(r, emptyWebp, sizeof(emptyWebp)); |
| 563 | test_invalid_stream(r, emptyBmp, sizeof(emptyBmp)); |
| 564 | test_invalid_stream(r, emptyIco, sizeof(emptyIco)); |
| 565 | test_invalid_stream(r, emptyGif, sizeof(emptyGif)); |
| 566 | } |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 567 | |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 568 | DEF_TEST(Codec_null, r) { |
scroggo | bed1ed6 | 2016-02-11 10:24:55 -0800 | [diff] [blame] | 569 | // Attempting to create an SkCodec or an SkAndroidCodec with null should not |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 570 | // crash. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 571 | REPORTER_ASSERT(r, !SkCodec::MakeFromStream(nullptr)); |
| 572 | REPORTER_ASSERT(r, !SkAndroidCodec::MakeFromStream(nullptr)); |
scroggo | 2c3b218 | 2015-10-09 08:40:59 -0700 | [diff] [blame] | 573 | } |
| 574 | |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 575 | static void test_dimensions(skiatest::Reporter* r, const char path[]) { |
| 576 | // Create the codec from the resource file |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 577 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 578 | if (!stream) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 579 | return; |
| 580 | } |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 581 | std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(std::move(stream))); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 582 | if (!codec) { |
| 583 | ERRORF(r, "Unable to create codec '%s'", path); |
| 584 | return; |
| 585 | } |
| 586 | |
| 587 | // Check that the decode is successful for a variety of scales |
scroggo | 501b734 | 2015-11-03 07:55:11 -0800 | [diff] [blame] | 588 | for (int sampleSize = 1; sampleSize < 32; sampleSize++) { |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 589 | // Scale the output dimensions |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 590 | SkISize scaledDims = codec->getSampledDimensions(sampleSize); |
msarett | b32758a | 2015-08-18 13:22:46 -0700 | [diff] [blame] | 591 | SkImageInfo scaledInfo = codec->getInfo() |
| 592 | .makeWH(scaledDims.width(), scaledDims.height()) |
| 593 | .makeColorType(kN32_SkColorType); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 594 | |
| 595 | // Set up for the decode |
| 596 | size_t rowBytes = scaledDims.width() * sizeof(SkPMColor); |
Mike Reed | f0ffb89 | 2017-10-03 14:47:21 -0400 | [diff] [blame] | 597 | size_t totalBytes = scaledInfo.computeByteSize(rowBytes); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 598 | SkAutoTMalloc<SkPMColor> pixels(totalBytes); |
| 599 | |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 600 | SkAndroidCodec::AndroidOptions options; |
| 601 | options.fSampleSize = sampleSize; |
scroggo | eb602a5 | 2015-07-09 08:16:03 -0700 | [diff] [blame] | 602 | SkCodec::Result result = |
msarett | 3d9d7a7 | 2015-10-21 10:27:10 -0700 | [diff] [blame] | 603 | codec->getAndroidPixels(scaledInfo, pixels.get(), rowBytes, &options); |
scroggo | eb602a5 | 2015-07-09 08:16:03 -0700 | [diff] [blame] | 604 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 605 | } |
| 606 | } |
| 607 | |
| 608 | // Ensure that onGetScaledDimensions returns valid image dimensions to use for decodes |
| 609 | DEF_TEST(Codec_Dimensions, r) { |
| 610 | // JPG |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 611 | test_dimensions(r, "images/CMYK.jpg"); |
| 612 | test_dimensions(r, "images/color_wheel.jpg"); |
| 613 | test_dimensions(r, "images/grayscale.jpg"); |
| 614 | test_dimensions(r, "images/mandrill_512_q075.jpg"); |
| 615 | test_dimensions(r, "images/randPixels.jpg"); |
msarett | b32758a | 2015-08-18 13:22:46 -0700 | [diff] [blame] | 616 | |
| 617 | // Decoding small images with very large scaling factors is a potential |
| 618 | // source of bugs and crashes. We disable these tests in Gold because |
| 619 | // tiny images are not very useful to look at. |
| 620 | // Here we make sure that we do not crash or access illegal memory when |
| 621 | // performing scaled decodes on small images. |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 622 | test_dimensions(r, "images/1x1.png"); |
| 623 | test_dimensions(r, "images/2x2.png"); |
| 624 | test_dimensions(r, "images/3x3.png"); |
| 625 | test_dimensions(r, "images/3x1.png"); |
| 626 | test_dimensions(r, "images/1x1.png"); |
| 627 | test_dimensions(r, "images/16x1.png"); |
| 628 | test_dimensions(r, "images/1x16.png"); |
| 629 | test_dimensions(r, "images/mandrill_16.png"); |
msarett | b32758a | 2015-08-18 13:22:46 -0700 | [diff] [blame] | 630 | |
yujieqin | 916de9f | 2016-01-25 08:26:16 -0800 | [diff] [blame] | 631 | // RAW |
yujieqin | f236ee4 | 2016-02-29 07:14:42 -0800 | [diff] [blame] | 632 | // Disable RAW tests for Win32. |
| 633 | #if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32)) |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 634 | test_dimensions(r, "images/sample_1mp.dng"); |
| 635 | test_dimensions(r, "images/sample_1mp_rotated.dng"); |
| 636 | test_dimensions(r, "images/dng_with_preview.dng"); |
msarett | 8e49ca3 | 2016-01-25 13:10:58 -0800 | [diff] [blame] | 637 | #endif |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 638 | } |
| 639 | |
msarett | d0375bc | 2015-08-12 08:08:56 -0700 | [diff] [blame] | 640 | static void test_invalid(skiatest::Reporter* r, const char path[]) { |
Leon Scroggins III | fee7cba | 2018-02-13 16:41:03 -0500 | [diff] [blame] | 641 | auto data = GetResourceAsData(path); |
| 642 | if (!data) { |
Leon Scroggins III | ce6d93a | 2018-02-15 09:25:11 -0500 | [diff] [blame] | 643 | ERRORF(r, "Failed to get resource %s", path); |
msarett | 4b17fa3 | 2015-04-23 08:53:39 -0700 | [diff] [blame] | 644 | return; |
| 645 | } |
Leon Scroggins III | fee7cba | 2018-02-13 16:41:03 -0500 | [diff] [blame] | 646 | |
| 647 | REPORTER_ASSERT(r, !SkCodec::MakeFromData(data)); |
msarett | 4b17fa3 | 2015-04-23 08:53:39 -0700 | [diff] [blame] | 648 | } |
msarett | e16b04a | 2015-04-15 07:32:19 -0700 | [diff] [blame] | 649 | |
msarett | 4b17fa3 | 2015-04-23 08:53:39 -0700 | [diff] [blame] | 650 | DEF_TEST(Codec_Empty, r) { |
Leon Scroggins III | fee7cba | 2018-02-13 16:41:03 -0500 | [diff] [blame] | 651 | if (GetResourcePath().isEmpty()) { |
| 652 | return; |
| 653 | } |
| 654 | |
msarett | 4b17fa3 | 2015-04-23 08:53:39 -0700 | [diff] [blame] | 655 | // Test images that should not be able to create a codec |
msarett | d0375bc | 2015-08-12 08:08:56 -0700 | [diff] [blame] | 656 | test_invalid(r, "empty_images/zero-dims.gif"); |
| 657 | test_invalid(r, "empty_images/zero-embedded.ico"); |
| 658 | test_invalid(r, "empty_images/zero-width.bmp"); |
| 659 | test_invalid(r, "empty_images/zero-height.bmp"); |
| 660 | test_invalid(r, "empty_images/zero-width.jpg"); |
| 661 | test_invalid(r, "empty_images/zero-height.jpg"); |
| 662 | test_invalid(r, "empty_images/zero-width.png"); |
| 663 | test_invalid(r, "empty_images/zero-height.png"); |
| 664 | test_invalid(r, "empty_images/zero-width.wbmp"); |
| 665 | test_invalid(r, "empty_images/zero-height.wbmp"); |
| 666 | // This image is an ico with an embedded mask-bmp. This is illegal. |
| 667 | test_invalid(r, "invalid_images/mask-bmp-ico.ico"); |
Matt Sarett | 5c49617 | 2017-02-07 17:01:16 -0500 | [diff] [blame] | 668 | // It is illegal for a webp frame to not be fully contained by the canvas. |
| 669 | test_invalid(r, "invalid_images/invalid-offset.webp"); |
Leon Scroggins III | d87fbee | 2016-12-02 16:47:53 -0500 | [diff] [blame] | 670 | #if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32)) |
| 671 | test_invalid(r, "empty_images/zero_height.tiff"); |
| 672 | #endif |
Leon Scroggins III | fc4ee22 | 2017-07-14 11:48:52 -0400 | [diff] [blame] | 673 | test_invalid(r, "invalid_images/b37623797.ico"); |
Leon Scroggins III | fee7cba | 2018-02-13 16:41:03 -0500 | [diff] [blame] | 674 | test_invalid(r, "invalid_images/osfuzz6295.webp"); |
Leon Scroggins III | ce6d93a | 2018-02-15 09:25:11 -0500 | [diff] [blame] | 675 | test_invalid(r, "invalid_images/osfuzz6288.bmp"); |
Leon Scroggins III | 31476b7 | 2018-02-22 16:09:33 -0500 | [diff] [blame] | 676 | test_invalid(r, "invalid_images/ossfuzz6347"); |
msarett | 4b17fa3 | 2015-04-23 08:53:39 -0700 | [diff] [blame] | 677 | } |
msarett | 99f567e | 2015-08-05 12:58:26 -0700 | [diff] [blame] | 678 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 679 | #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
| 680 | |
| 681 | #ifndef SK_PNG_DISABLE_TESTS // reading chunks does not work properly with older versions. |
| 682 | // It does not appear that anyone in Google3 is reading chunks. |
| 683 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 684 | static void codex_test_write_fn(png_structp png_ptr, png_bytep data, png_size_t len) { |
| 685 | SkWStream* sk_stream = (SkWStream*)png_get_io_ptr(png_ptr); |
| 686 | if (!sk_stream->write(data, len)) { |
| 687 | png_error(png_ptr, "sk_write_fn Error!"); |
| 688 | } |
| 689 | } |
| 690 | |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 691 | DEF_TEST(Codec_pngChunkReader, r) { |
| 692 | // Create a dummy bitmap. Use unpremul RGBA for libpng. |
| 693 | SkBitmap bm; |
| 694 | const int w = 1; |
| 695 | const int h = 1; |
| 696 | const SkImageInfo bmInfo = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType, |
| 697 | kUnpremul_SkAlphaType); |
| 698 | bm.setInfo(bmInfo); |
| 699 | bm.allocPixels(); |
| 700 | bm.eraseColor(SK_ColorBLUE); |
| 701 | SkMD5::Digest goodDigest; |
| 702 | md5(bm, &goodDigest); |
| 703 | |
| 704 | // Write to a png file. |
| 705 | png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr); |
| 706 | REPORTER_ASSERT(r, png); |
| 707 | if (!png) { |
| 708 | return; |
| 709 | } |
| 710 | |
| 711 | png_infop info = png_create_info_struct(png); |
| 712 | REPORTER_ASSERT(r, info); |
| 713 | if (!info) { |
| 714 | png_destroy_write_struct(&png, nullptr); |
| 715 | return; |
| 716 | } |
| 717 | |
| 718 | if (setjmp(png_jmpbuf(png))) { |
| 719 | ERRORF(r, "failed writing png"); |
| 720 | png_destroy_write_struct(&png, &info); |
| 721 | return; |
| 722 | } |
| 723 | |
| 724 | SkDynamicMemoryWStream wStream; |
| 725 | png_set_write_fn(png, (void*) (&wStream), codex_test_write_fn, nullptr); |
| 726 | |
| 727 | png_set_IHDR(png, info, (png_uint_32)w, (png_uint_32)h, 8, |
| 728 | PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE, |
| 729 | PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT); |
| 730 | |
| 731 | // Create some chunks that match the Android framework's use. |
| 732 | static png_unknown_chunk gUnknowns[] = { |
msarett | 133eaaa | 2016-01-07 11:03:25 -0800 | [diff] [blame] | 733 | { "npOl", (png_byte*)"outline", sizeof("outline"), PNG_HAVE_IHDR }, |
| 734 | { "npLb", (png_byte*)"layoutBounds", sizeof("layoutBounds"), PNG_HAVE_IHDR }, |
| 735 | { "npTc", (png_byte*)"ninePatchData", sizeof("ninePatchData"), PNG_HAVE_IHDR }, |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 736 | }; |
| 737 | |
| 738 | png_set_keep_unknown_chunks(png, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"npOl\0npLb\0npTc\0", 3); |
| 739 | png_set_unknown_chunks(png, info, gUnknowns, SK_ARRAY_COUNT(gUnknowns)); |
| 740 | #if PNG_LIBPNG_VER < 10600 |
| 741 | /* Deal with unknown chunk location bug in 1.5.x and earlier */ |
msarett | 133eaaa | 2016-01-07 11:03:25 -0800 | [diff] [blame] | 742 | png_set_unknown_chunk_location(png, info, 0, PNG_HAVE_IHDR); |
| 743 | png_set_unknown_chunk_location(png, info, 1, PNG_HAVE_IHDR); |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 744 | #endif |
| 745 | |
| 746 | png_write_info(png, info); |
| 747 | |
| 748 | for (int j = 0; j < h; j++) { |
| 749 | png_bytep row = (png_bytep)(bm.getAddr(0, j)); |
| 750 | png_write_rows(png, &row, 1); |
| 751 | } |
| 752 | png_write_end(png, info); |
| 753 | png_destroy_write_struct(&png, &info); |
| 754 | |
| 755 | class ChunkReader : public SkPngChunkReader { |
| 756 | public: |
| 757 | ChunkReader(skiatest::Reporter* r) |
| 758 | : fReporter(r) |
| 759 | { |
| 760 | this->reset(); |
| 761 | } |
| 762 | |
| 763 | bool readChunk(const char tag[], const void* data, size_t length) override { |
| 764 | for (size_t i = 0; i < SK_ARRAY_COUNT(gUnknowns); ++i) { |
| 765 | if (!strcmp(tag, (const char*) gUnknowns[i].name)) { |
| 766 | // Tag matches. This should have been the first time we see it. |
| 767 | REPORTER_ASSERT(fReporter, !fSeen[i]); |
| 768 | fSeen[i] = true; |
| 769 | |
| 770 | // Data and length should match |
| 771 | REPORTER_ASSERT(fReporter, length == gUnknowns[i].size); |
| 772 | REPORTER_ASSERT(fReporter, !strcmp((const char*) data, |
| 773 | (const char*) gUnknowns[i].data)); |
| 774 | return true; |
| 775 | } |
| 776 | } |
| 777 | ERRORF(fReporter, "Saw an unexpected unknown chunk."); |
| 778 | return true; |
| 779 | } |
| 780 | |
| 781 | bool allHaveBeenSeen() { |
| 782 | bool ret = true; |
| 783 | for (auto seen : fSeen) { |
| 784 | ret &= seen; |
| 785 | } |
| 786 | return ret; |
| 787 | } |
| 788 | |
| 789 | void reset() { |
| 790 | sk_bzero(fSeen, sizeof(fSeen)); |
| 791 | } |
| 792 | |
| 793 | private: |
| 794 | skiatest::Reporter* fReporter; // Unowned |
| 795 | bool fSeen[3]; |
| 796 | }; |
| 797 | |
| 798 | ChunkReader chunkReader(r); |
| 799 | |
| 800 | // Now read the file with SkCodec. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 801 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(wStream.detachAsData(), &chunkReader)); |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 802 | REPORTER_ASSERT(r, codec); |
| 803 | if (!codec) { |
| 804 | return; |
| 805 | } |
| 806 | |
| 807 | // Now compare to the original. |
| 808 | SkBitmap decodedBm; |
| 809 | decodedBm.setInfo(codec->getInfo()); |
| 810 | decodedBm.allocPixels(); |
| 811 | SkCodec::Result result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(), |
| 812 | decodedBm.rowBytes()); |
| 813 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 814 | |
| 815 | if (decodedBm.colorType() != bm.colorType()) { |
| 816 | SkBitmap tmp; |
Matt Sarett | 68b8e3d | 2017-04-28 11:15:22 -0400 | [diff] [blame] | 817 | bool success = sk_tool_utils::copy_to(&tmp, bm.colorType(), decodedBm); |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 818 | REPORTER_ASSERT(r, success); |
| 819 | if (!success) { |
| 820 | return; |
| 821 | } |
| 822 | |
| 823 | tmp.swap(decodedBm); |
| 824 | } |
| 825 | |
| 826 | compare_to_good_digest(r, goodDigest, decodedBm); |
| 827 | REPORTER_ASSERT(r, chunkReader.allHaveBeenSeen()); |
| 828 | |
| 829 | // Decoding again will read the chunks again. |
| 830 | chunkReader.reset(); |
| 831 | REPORTER_ASSERT(r, !chunkReader.allHaveBeenSeen()); |
| 832 | result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(), decodedBm.rowBytes()); |
| 833 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 834 | REPORTER_ASSERT(r, chunkReader.allHaveBeenSeen()); |
| 835 | } |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 836 | #endif // SK_PNG_DISABLE_TESTS |
scroggo | cf98fa9 | 2015-11-23 08:14:40 -0800 | [diff] [blame] | 837 | #endif // PNG_READ_UNKNOWN_CHUNKS_SUPPORTED |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 838 | |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 839 | // Stream that can only peek up to a limit |
| 840 | class LimitedPeekingMemStream : public SkStream { |
| 841 | public: |
reed | 42943c8 | 2016-09-12 12:01:44 -0700 | [diff] [blame] | 842 | LimitedPeekingMemStream(sk_sp<SkData> data, size_t limit) |
| 843 | : fStream(std::move(data)) |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 844 | , fLimit(limit) {} |
| 845 | |
| 846 | size_t peek(void* buf, size_t bytes) const override { |
| 847 | return fStream.peek(buf, SkTMin(bytes, fLimit)); |
| 848 | } |
| 849 | size_t read(void* buf, size_t bytes) override { |
| 850 | return fStream.read(buf, bytes); |
| 851 | } |
| 852 | bool rewind() override { |
| 853 | return fStream.rewind(); |
| 854 | } |
| 855 | bool isAtEnd() const override { |
msarett | ff2a6c8 | 2016-09-07 11:23:28 -0700 | [diff] [blame] | 856 | return fStream.isAtEnd(); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 857 | } |
| 858 | private: |
| 859 | SkMemoryStream fStream; |
| 860 | const size_t fLimit; |
| 861 | }; |
| 862 | |
yujieqin | f236ee4 | 2016-02-29 07:14:42 -0800 | [diff] [blame] | 863 | // Disable RAW tests for Win32. |
| 864 | #if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32)) |
yujieqin | 9c7a8a4 | 2016-02-05 08:21:19 -0800 | [diff] [blame] | 865 | // Test that the RawCodec works also for not asset stream. This will test the code path using |
| 866 | // SkRawBufferedStream instead of SkRawAssetStream. |
yujieqin | 9c7a8a4 | 2016-02-05 08:21:19 -0800 | [diff] [blame] | 867 | DEF_TEST(Codec_raw_notseekable, r) { |
Mike Reed | 0933bc9 | 2017-12-09 01:27:41 +0000 | [diff] [blame] | 868 | constexpr char path[] = "images/dng_with_preview.dng"; |
| 869 | sk_sp<SkData> data(GetResourceAsData(path)); |
yujieqin | 9c7a8a4 | 2016-02-05 08:21:19 -0800 | [diff] [blame] | 870 | if (!data) { |
| 871 | SkDebugf("Missing resource '%s'\n", path); |
| 872 | return; |
| 873 | } |
| 874 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 875 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream( |
| 876 | skstd::make_unique<NotAssetMemStream>(std::move(data)))); |
yujieqin | 9c7a8a4 | 2016-02-05 08:21:19 -0800 | [diff] [blame] | 877 | REPORTER_ASSERT(r, codec); |
| 878 | |
| 879 | test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr); |
| 880 | } |
| 881 | #endif |
| 882 | |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 883 | // Test that even if webp_parse_header fails to peek enough, it will fall back to read() |
| 884 | // + rewind() and succeed. |
| 885 | DEF_TEST(Codec_webp_peek, r) { |
Mike Reed | 0933bc9 | 2017-12-09 01:27:41 +0000 | [diff] [blame] | 886 | constexpr char path[] = "images/baby_tux.webp"; |
| 887 | auto data = GetResourceAsData(path); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 888 | if (!data) { |
| 889 | SkDebugf("Missing resource '%s'\n", path); |
| 890 | return; |
| 891 | } |
| 892 | |
| 893 | // The limit is less than webp needs to peek or read. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 894 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream( |
| 895 | skstd::make_unique<LimitedPeekingMemStream>(data, 25))); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 896 | REPORTER_ASSERT(r, codec); |
| 897 | |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 898 | test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 899 | |
| 900 | // Similarly, a stream which does not peek should still succeed. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 901 | codec = SkCodec::MakeFromStream(skstd::make_unique<LimitedPeekingMemStream>(data, 0)); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 902 | REPORTER_ASSERT(r, codec); |
| 903 | |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 904 | test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 905 | } |
| 906 | |
msarett | 7f7ec20 | 2016-03-01 12:12:27 -0800 | [diff] [blame] | 907 | // SkCodec's wbmp decoder was initially unnecessarily restrictive. |
| 908 | // It required the second byte to be zero. The wbmp specification allows |
| 909 | // a couple of bits to be 1 (so long as they do not overlap with 0x9F). |
| 910 | // Test that SkCodec now supports an image with these bits set. |
Leon Scroggins III | 8392634 | 2016-12-06 10:58:02 -0500 | [diff] [blame] | 911 | DEF_TEST(Codec_wbmp_restrictive, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 912 | const char* path = "images/mandrill.wbmp"; |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 913 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 914 | if (!stream) { |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 915 | return; |
| 916 | } |
| 917 | |
| 918 | // Modify the stream to contain a second byte with some bits set. |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 919 | auto data = SkCopyStreamToData(stream.get()); |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 920 | uint8_t* writeableData = static_cast<uint8_t*>(data->writable_data()); |
| 921 | writeableData[1] = static_cast<uint8_t>(~0x9F); |
| 922 | |
msarett | 7f7ec20 | 2016-03-01 12:12:27 -0800 | [diff] [blame] | 923 | // SkCodec should support this. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 924 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(data)); |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 925 | REPORTER_ASSERT(r, codec); |
| 926 | if (!codec) { |
| 927 | return; |
| 928 | } |
scroggo | 7b5e553 | 2016-02-04 06:14:24 -0800 | [diff] [blame] | 929 | test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr); |
scroggo | b9a1e34 | 2015-11-30 06:25:31 -0800 | [diff] [blame] | 930 | } |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 931 | |
| 932 | // wbmp images have a header that can be arbitrarily large, depending on the |
| 933 | // size of the image. We cap the size at 65535, meaning we only need to look at |
| 934 | // 8 bytes to determine whether we can read the image. This is important |
Leon Scroggins III | 04be2b5 | 2017-08-17 15:13:20 -0400 | [diff] [blame] | 935 | // because SkCodec only passes a limited number of bytes to SkWbmpCodec to |
| 936 | // determine whether the image is a wbmp. |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 937 | DEF_TEST(Codec_wbmp_max_size, r) { |
| 938 | const unsigned char maxSizeWbmp[] = { 0x00, 0x00, // Header |
| 939 | 0x83, 0xFF, 0x7F, // W: 65535 |
| 940 | 0x83, 0xFF, 0x7F }; // H: 65535 |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 941 | std::unique_ptr<SkStream> stream(new SkMemoryStream(maxSizeWbmp, sizeof(maxSizeWbmp), false)); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 942 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 943 | |
| 944 | REPORTER_ASSERT(r, codec); |
| 945 | if (!codec) return; |
| 946 | |
| 947 | REPORTER_ASSERT(r, codec->getInfo().width() == 65535); |
| 948 | REPORTER_ASSERT(r, codec->getInfo().height() == 65535); |
| 949 | |
| 950 | // Now test an image which is too big. Any image with a larger header (i.e. |
| 951 | // has bigger width/height) is also too big. |
| 952 | const unsigned char tooBigWbmp[] = { 0x00, 0x00, // Header |
| 953 | 0x84, 0x80, 0x00, // W: 65536 |
| 954 | 0x84, 0x80, 0x00 }; // H: 65536 |
| 955 | stream.reset(new SkMemoryStream(tooBigWbmp, sizeof(tooBigWbmp), false)); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 956 | codec = SkCodec::MakeFromStream(std::move(stream)); |
scroggo | db30be2 | 2015-12-08 18:54:13 -0800 | [diff] [blame] | 957 | |
| 958 | REPORTER_ASSERT(r, !codec); |
| 959 | } |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 960 | |
| 961 | DEF_TEST(Codec_jpeg_rewind, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 962 | const char* path = "images/mandrill_512_q075.jpg"; |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 963 | sk_sp<SkData> data(GetResourceAsData(path)); |
| 964 | if (!data) { |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 965 | return; |
| 966 | } |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 967 | |
| 968 | data = SkData::MakeSubset(data.get(), 0, data->size() / 2); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 969 | std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromData(data)); |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 970 | if (!codec) { |
| 971 | ERRORF(r, "Unable to create codec '%s'.", path); |
| 972 | return; |
| 973 | } |
| 974 | |
| 975 | const int width = codec->getInfo().width(); |
| 976 | const int height = codec->getInfo().height(); |
| 977 | size_t rowBytes = sizeof(SkPMColor) * width; |
| 978 | SkAutoMalloc pixelStorage(height * rowBytes); |
| 979 | |
| 980 | // Perform a sampled decode. |
| 981 | SkAndroidCodec::AndroidOptions opts; |
| 982 | opts.fSampleSize = 12; |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 983 | auto sampledInfo = codec->getInfo().makeWH(width / 12, height / 12); |
| 984 | auto result = codec->getAndroidPixels(sampledInfo, pixelStorage.get(), rowBytes, &opts); |
| 985 | REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result); |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 986 | |
| 987 | // Rewind the codec and perform a full image decode. |
Matt Sarett | 74b16ed | 2017-01-25 11:58:11 -0500 | [diff] [blame] | 988 | result = codec->getPixels(codec->getInfo(), pixelStorage.get(), rowBytes); |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 989 | REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result); |
Matt Sarett | 74b16ed | 2017-01-25 11:58:11 -0500 | [diff] [blame] | 990 | |
| 991 | // Now perform a subset decode. |
| 992 | { |
| 993 | opts.fSampleSize = 1; |
| 994 | SkIRect subset = SkIRect::MakeWH(100, 100); |
| 995 | opts.fSubset = ⊂ |
| 996 | result = codec->getAndroidPixels(codec->getInfo().makeWH(100, 100), pixelStorage.get(), |
| 997 | rowBytes, &opts); |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 998 | // Though we only have half the data, it is enough to decode this subset. |
Matt Sarett | 74b16ed | 2017-01-25 11:58:11 -0500 | [diff] [blame] | 999 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 1000 | } |
| 1001 | |
| 1002 | // Perform another full image decode. ASAN will detect if we look at the subset when it is |
| 1003 | // out of scope. This would happen if we depend on the old state in the codec. |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 1004 | // This tests two layers of bugs: both SkJpegCodec::readRows and SkCodec::fillIncompleteImage |
| 1005 | // used to look at the old subset. |
Matt Sarett | 74b16ed | 2017-01-25 11:58:11 -0500 | [diff] [blame] | 1006 | opts.fSubset = nullptr; |
| 1007 | result = codec->getAndroidPixels(codec->getInfo(), pixelStorage.get(), rowBytes, &opts); |
Leon Scroggins III | 4288657 | 2017-01-27 13:16:28 -0500 | [diff] [blame] | 1008 | REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result); |
msarett | 2812f03 | 2016-07-18 15:56:08 -0700 | [diff] [blame] | 1009 | } |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 1010 | |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 1011 | static void check_color_xform(skiatest::Reporter* r, const char* path) { |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1012 | std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(GetResourceAsStream(path))); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 1013 | |
| 1014 | SkAndroidCodec::AndroidOptions opts; |
| 1015 | opts.fSampleSize = 3; |
| 1016 | const int subsetWidth = codec->getInfo().width() / 2; |
| 1017 | const int subsetHeight = codec->getInfo().height() / 2; |
| 1018 | SkIRect subset = SkIRect::MakeWH(subsetWidth, subsetHeight); |
| 1019 | opts.fSubset = ⊂ |
| 1020 | |
| 1021 | const int dstWidth = subsetWidth / opts.fSampleSize; |
| 1022 | const int dstHeight = subsetHeight / opts.fSampleSize; |
Brian Osman | 499afea | 2018-05-23 13:12:18 -0400 | [diff] [blame] | 1023 | auto colorSpace = SkColorSpace::MakeRGB(g2Dot2_TransferFn, SkColorSpace::kAdobeRGB_Gamut); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 1024 | SkImageInfo dstInfo = codec->getInfo().makeWH(dstWidth, dstHeight) |
| 1025 | .makeColorType(kN32_SkColorType) |
| 1026 | .makeColorSpace(colorSpace); |
| 1027 | |
| 1028 | size_t rowBytes = dstInfo.minRowBytes(); |
Mike Reed | f0ffb89 | 2017-10-03 14:47:21 -0400 | [diff] [blame] | 1029 | SkAutoMalloc pixelStorage(dstInfo.computeByteSize(rowBytes)); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 1030 | SkCodec::Result result = codec->getAndroidPixels(dstInfo, pixelStorage.get(), rowBytes, &opts); |
| 1031 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 1032 | } |
| 1033 | |
| 1034 | DEF_TEST(Codec_ColorXform, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1035 | check_color_xform(r, "images/mandrill_512_q075.jpg"); |
| 1036 | check_color_xform(r, "images/mandrill_512.png"); |
msarett | 35bb74b | 2016-08-22 07:41:28 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1039 | static bool color_type_match(SkColorType origColorType, SkColorType codecColorType) { |
| 1040 | switch (origColorType) { |
| 1041 | case kRGBA_8888_SkColorType: |
| 1042 | case kBGRA_8888_SkColorType: |
| 1043 | return kRGBA_8888_SkColorType == codecColorType || |
| 1044 | kBGRA_8888_SkColorType == codecColorType; |
| 1045 | default: |
| 1046 | return origColorType == codecColorType; |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | static bool alpha_type_match(SkAlphaType origAlphaType, SkAlphaType codecAlphaType) { |
| 1051 | switch (origAlphaType) { |
| 1052 | case kUnpremul_SkAlphaType: |
| 1053 | case kPremul_SkAlphaType: |
| 1054 | return kUnpremul_SkAlphaType == codecAlphaType || |
| 1055 | kPremul_SkAlphaType == codecAlphaType; |
| 1056 | default: |
| 1057 | return origAlphaType == codecAlphaType; |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | static void check_round_trip(skiatest::Reporter* r, SkCodec* origCodec, const SkImageInfo& info) { |
| 1062 | SkBitmap bm1; |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 1063 | bm1.allocPixels(info); |
| 1064 | SkCodec::Result result = origCodec->getPixels(info, bm1.getPixels(), bm1.rowBytes()); |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1065 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
msarett | 9b09cd8 | 2016-08-29 14:47:49 -0700 | [diff] [blame] | 1066 | |
| 1067 | // Encode the image to png. |
Leon Scroggins III | 0098ccb | 2018-09-24 15:24:31 -0400 | [diff] [blame] | 1068 | auto data = SkEncodeBitmap(bm1, SkEncodedImageFormat::kPNG, 100); |
msarett | 9b09cd8 | 2016-08-29 14:47:49 -0700 | [diff] [blame] | 1069 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1070 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(data)); |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1071 | REPORTER_ASSERT(r, color_type_match(info.colorType(), codec->getInfo().colorType())); |
| 1072 | REPORTER_ASSERT(r, alpha_type_match(info.alphaType(), codec->getInfo().alphaType())); |
msarett | 9b09cd8 | 2016-08-29 14:47:49 -0700 | [diff] [blame] | 1073 | |
| 1074 | SkBitmap bm2; |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 1075 | bm2.allocPixels(info); |
| 1076 | result = codec->getPixels(info, bm2.getPixels(), bm2.rowBytes()); |
msarett | 9b09cd8 | 2016-08-29 14:47:49 -0700 | [diff] [blame] | 1077 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 1078 | |
| 1079 | SkMD5::Digest d1, d2; |
| 1080 | md5(bm1, &d1); |
| 1081 | md5(bm2, &d2); |
| 1082 | REPORTER_ASSERT(r, d1 == d2); |
| 1083 | } |
| 1084 | |
| 1085 | DEF_TEST(Codec_PngRoundTrip, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1086 | auto codec = SkCodec::MakeFromStream(GetResourceAsStream("images/mandrill_512_q075.jpg")); |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 1087 | |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1088 | SkColorType colorTypesOpaque[] = { |
| 1089 | kRGB_565_SkColorType, kRGBA_8888_SkColorType, kBGRA_8888_SkColorType |
| 1090 | }; |
| 1091 | for (SkColorType colorType : colorTypesOpaque) { |
| 1092 | SkImageInfo newInfo = codec->getInfo().makeColorType(colorType); |
| 1093 | check_round_trip(r, codec.get(), newInfo); |
| 1094 | } |
| 1095 | |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1096 | codec = SkCodec::MakeFromStream(GetResourceAsStream("images/grayscale.jpg")); |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1097 | check_round_trip(r, codec.get(), codec->getInfo()); |
| 1098 | |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1099 | codec = SkCodec::MakeFromStream(GetResourceAsStream("images/yellow_rose.png")); |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1100 | |
| 1101 | SkColorType colorTypesWithAlpha[] = { |
| 1102 | kRGBA_8888_SkColorType, kBGRA_8888_SkColorType |
| 1103 | }; |
| 1104 | SkAlphaType alphaTypes[] = { |
| 1105 | kUnpremul_SkAlphaType, kPremul_SkAlphaType |
| 1106 | }; |
| 1107 | for (SkColorType colorType : colorTypesWithAlpha) { |
| 1108 | for (SkAlphaType alphaType : alphaTypes) { |
| 1109 | // Set color space to nullptr because color correct premultiplies do not round trip. |
| 1110 | SkImageInfo newInfo = codec->getInfo().makeColorType(colorType) |
| 1111 | .makeAlphaType(alphaType) |
| 1112 | .makeColorSpace(nullptr); |
| 1113 | check_round_trip(r, codec.get(), newInfo); |
| 1114 | } |
| 1115 | } |
| 1116 | |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1117 | codec = SkCodec::MakeFromStream(GetResourceAsStream("images/index8.png")); |
msarett | f17b71f | 2016-09-12 14:30:03 -0700 | [diff] [blame] | 1118 | |
| 1119 | for (SkAlphaType alphaType : alphaTypes) { |
| 1120 | SkImageInfo newInfo = codec->getInfo().makeAlphaType(alphaType) |
| 1121 | .makeColorSpace(nullptr); |
| 1122 | check_round_trip(r, codec.get(), newInfo); |
| 1123 | } |
msarett | 549ca32 | 2016-08-17 08:54:08 -0700 | [diff] [blame] | 1124 | } |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1125 | |
| 1126 | static void test_conversion_possible(skiatest::Reporter* r, const char* path, |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1127 | bool supportsScanlineDecoder, |
| 1128 | bool supportsIncrementalDecoder) { |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1129 | std::unique_ptr<SkStream> stream(GetResourceAsStream(path)); |
Leon Scroggins III | c9942a1 | 2017-01-30 09:59:28 -0500 | [diff] [blame] | 1130 | if (!stream) { |
| 1131 | return; |
| 1132 | } |
| 1133 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1134 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
Leon Scroggins III | c9942a1 | 2017-01-30 09:59:28 -0500 | [diff] [blame] | 1135 | if (!codec) { |
| 1136 | ERRORF(r, "failed to create a codec for %s", path); |
| 1137 | return; |
| 1138 | } |
| 1139 | |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1140 | SkImageInfo infoF16 = codec->getInfo().makeColorType(kRGBA_F16_SkColorType); |
| 1141 | |
| 1142 | SkBitmap bm; |
| 1143 | bm.allocPixels(infoF16); |
| 1144 | SkCodec::Result result = codec->getPixels(infoF16, bm.getPixels(), bm.rowBytes()); |
Mike Klein | ce4cf72 | 2018-05-10 11:29:15 -0400 | [diff] [blame] | 1145 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1146 | |
| 1147 | result = codec->startScanlineDecode(infoF16); |
| 1148 | if (supportsScanlineDecoder) { |
Mike Klein | ce4cf72 | 2018-05-10 11:29:15 -0400 | [diff] [blame] | 1149 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1150 | } else { |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 1151 | REPORTER_ASSERT(r, SkCodec::kUnimplemented == result |
Mike Klein | ce4cf72 | 2018-05-10 11:29:15 -0400 | [diff] [blame] | 1152 | || SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | result = codec->startIncrementalDecode(infoF16, bm.getPixels(), bm.rowBytes()); |
| 1156 | if (supportsIncrementalDecoder) { |
Mike Klein | ce4cf72 | 2018-05-10 11:29:15 -0400 | [diff] [blame] | 1157 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1158 | } else { |
Leon Scroggins III | 0741818 | 2017-08-15 12:24:02 -0400 | [diff] [blame] | 1159 | REPORTER_ASSERT(r, SkCodec::kUnimplemented == result |
Mike Klein | ce4cf72 | 2018-05-10 11:29:15 -0400 | [diff] [blame] | 1160 | || SkCodec::kSuccess == result); |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1161 | } |
| 1162 | |
Brian Osman | 36703d9 | 2017-12-12 14:09:31 -0500 | [diff] [blame] | 1163 | infoF16 = infoF16.makeColorSpace(infoF16.colorSpace()->makeLinearGamma()); |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1164 | result = codec->getPixels(infoF16, bm.getPixels(), bm.rowBytes()); |
| 1165 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1166 | result = codec->startScanlineDecode(infoF16); |
| 1167 | if (supportsScanlineDecoder) { |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1168 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1169 | } else { |
| 1170 | REPORTER_ASSERT(r, SkCodec::kUnimplemented == result); |
| 1171 | } |
| 1172 | |
| 1173 | result = codec->startIncrementalDecode(infoF16, bm.getPixels(), bm.rowBytes()); |
| 1174 | if (supportsIncrementalDecoder) { |
| 1175 | REPORTER_ASSERT(r, SkCodec::kSuccess == result); |
| 1176 | } else { |
| 1177 | REPORTER_ASSERT(r, SkCodec::kUnimplemented == result); |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | DEF_TEST(Codec_F16ConversionPossible, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1182 | test_conversion_possible(r, "images/color_wheel.webp", false, false); |
| 1183 | test_conversion_possible(r, "images/mandrill_512_q075.jpg", true, false); |
| 1184 | test_conversion_possible(r, "images/yellow_rose.png", false, true); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1187 | static void decode_frame(skiatest::Reporter* r, SkCodec* codec, size_t frame) { |
| 1188 | SkBitmap bm; |
| 1189 | auto info = codec->getInfo().makeColorType(kN32_SkColorType); |
| 1190 | bm.allocPixels(info); |
| 1191 | |
| 1192 | SkCodec::Options opts; |
| 1193 | opts.fFrameIndex = frame; |
| 1194 | REPORTER_ASSERT(r, SkCodec::kSuccess == codec->getPixels(info, |
Leon Scroggins | 571b30f | 2017-07-11 17:35:31 +0000 | [diff] [blame] | 1195 | bm.getPixels(), bm.rowBytes(), &opts)); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
Leon Scroggins III | 1f6af6b | 2017-06-12 16:41:09 -0400 | [diff] [blame] | 1198 | // For an animated GIF, we should only read enough to decode frame 0 if the |
| 1199 | // client never calls getFrameInfo and only decodes frame 0. |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1200 | DEF_TEST(Codec_skipFullParse, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1201 | auto path = "images/test640x479.gif"; |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1202 | auto streamObj = GetResourceAsStream(path); |
| 1203 | if (!streamObj) { |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1204 | return; |
| 1205 | } |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1206 | SkStream* stream = streamObj.get(); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1207 | |
| 1208 | // Note that we cheat and hold on to the stream pointer, but SkCodec will |
| 1209 | // take ownership. We will not refer to the stream after the SkCodec |
| 1210 | // deletes it. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1211 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(streamObj))); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1212 | if (!codec) { |
| 1213 | ERRORF(r, "Failed to create codec for %s", path); |
| 1214 | return; |
| 1215 | } |
| 1216 | |
| 1217 | REPORTER_ASSERT(r, stream->hasPosition()); |
| 1218 | const size_t sizePosition = stream->getPosition(); |
| 1219 | REPORTER_ASSERT(r, stream->hasLength() && sizePosition < stream->getLength()); |
| 1220 | |
| 1221 | // This should read more of the stream, but not the whole stream. |
| 1222 | decode_frame(r, codec.get(), 0); |
| 1223 | const size_t positionAfterFirstFrame = stream->getPosition(); |
| 1224 | REPORTER_ASSERT(r, positionAfterFirstFrame > sizePosition |
| 1225 | && positionAfterFirstFrame < stream->getLength()); |
| 1226 | |
Leon Scroggins III | 1f6af6b | 2017-06-12 16:41:09 -0400 | [diff] [blame] | 1227 | // There is more data in the stream. |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1228 | auto frameInfo = codec->getFrameInfo(); |
| 1229 | REPORTER_ASSERT(r, frameInfo.size() == 4); |
Leon Scroggins III | 1f6af6b | 2017-06-12 16:41:09 -0400 | [diff] [blame] | 1230 | REPORTER_ASSERT(r, stream->getPosition() > positionAfterFirstFrame); |
scroggo | 19b9153 | 2016-10-24 09:03:26 -0700 | [diff] [blame] | 1231 | } |
| 1232 | |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1233 | // Only rewinds up to a limit. |
| 1234 | class LimitedRewindingStream : public SkStream { |
| 1235 | public: |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1236 | static std::unique_ptr<SkStream> Make(const char path[], size_t limit) { |
| 1237 | auto stream = GetResourceAsStream(path); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1238 | if (!stream) { |
| 1239 | return nullptr; |
| 1240 | } |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1241 | return std::unique_ptr<SkStream>(new LimitedRewindingStream(std::move(stream), limit)); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1242 | } |
| 1243 | |
| 1244 | size_t read(void* buffer, size_t size) override { |
| 1245 | const size_t bytes = fStream->read(buffer, size); |
| 1246 | fPosition += bytes; |
| 1247 | return bytes; |
| 1248 | } |
| 1249 | |
| 1250 | bool isAtEnd() const override { |
| 1251 | return fStream->isAtEnd(); |
| 1252 | } |
| 1253 | |
| 1254 | bool rewind() override { |
| 1255 | if (fPosition <= fLimit && fStream->rewind()) { |
| 1256 | fPosition = 0; |
| 1257 | return true; |
| 1258 | } |
| 1259 | |
| 1260 | return false; |
| 1261 | } |
| 1262 | |
| 1263 | private: |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 1264 | std::unique_ptr<SkStream> fStream; |
| 1265 | const size_t fLimit; |
| 1266 | size_t fPosition; |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1267 | |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1268 | LimitedRewindingStream(std::unique_ptr<SkStream> stream, size_t limit) |
| 1269 | : fStream(std::move(stream)) |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1270 | , fLimit(limit) |
| 1271 | , fPosition(0) |
| 1272 | { |
| 1273 | SkASSERT(fStream); |
| 1274 | } |
| 1275 | }; |
| 1276 | |
| 1277 | DEF_TEST(Codec_fallBack, r) { |
| 1278 | // SkAndroidCodec needs to be able to fall back to scanline decoding |
| 1279 | // if incremental decoding does not work. Make sure this does not |
| 1280 | // require a rewind. |
| 1281 | |
| 1282 | // Formats that currently do not support incremental decoding |
| 1283 | auto files = { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1284 | "images/CMYK.jpg", |
| 1285 | "images/color_wheel.ico", |
| 1286 | "images/mandrill.wbmp", |
| 1287 | "images/randPixels.bmp", |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1288 | }; |
| 1289 | for (auto file : files) { |
Leon Scroggins III | 04be2b5 | 2017-08-17 15:13:20 -0400 | [diff] [blame] | 1290 | auto stream = LimitedRewindingStream::Make(file, SkCodec::MinBufferedBytesNeeded()); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1291 | if (!stream) { |
| 1292 | SkDebugf("Missing resources (%s). Set --resourcePath.\n", file); |
| 1293 | return; |
| 1294 | } |
| 1295 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1296 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
scroggo | 8e6c7ad | 2016-09-16 08:20:38 -0700 | [diff] [blame] | 1297 | if (!codec) { |
| 1298 | ERRORF(r, "Failed to create codec for %s,", file); |
| 1299 | continue; |
| 1300 | } |
| 1301 | |
| 1302 | SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType); |
| 1303 | SkBitmap bm; |
| 1304 | bm.allocPixels(info); |
| 1305 | |
| 1306 | if (SkCodec::kUnimplemented != codec->startIncrementalDecode(info, bm.getPixels(), |
| 1307 | bm.rowBytes())) { |
| 1308 | ERRORF(r, "Is scanline decoding now implemented for %s?", file); |
| 1309 | continue; |
| 1310 | } |
| 1311 | |
| 1312 | // Scanline decoding should not require a rewind. |
| 1313 | SkCodec::Result result = codec->startScanlineDecode(info); |
| 1314 | if (SkCodec::kSuccess != result) { |
| 1315 | ERRORF(r, "Scanline decoding failed for %s with %i", file, result); |
| 1316 | } |
| 1317 | } |
msarett | 2ecc35f | 2016-09-08 11:55:16 -0700 | [diff] [blame] | 1318 | } |
scroggo | c46cdd4 | 2016-10-10 06:45:32 -0700 | [diff] [blame] | 1319 | |
| 1320 | // This test verifies that we fixed an assert statement that fired when reusing a png codec |
| 1321 | // after scaling. |
| 1322 | DEF_TEST(Codec_reusePng, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1323 | std::unique_ptr<SkStream> stream(GetResourceAsStream("images/plane.png")); |
scroggo | c46cdd4 | 2016-10-10 06:45:32 -0700 | [diff] [blame] | 1324 | if (!stream) { |
| 1325 | return; |
| 1326 | } |
| 1327 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1328 | std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(std::move(stream))); |
scroggo | c46cdd4 | 2016-10-10 06:45:32 -0700 | [diff] [blame] | 1329 | if (!codec) { |
| 1330 | ERRORF(r, "Failed to create codec\n"); |
| 1331 | return; |
| 1332 | } |
| 1333 | |
| 1334 | SkAndroidCodec::AndroidOptions opts; |
| 1335 | opts.fSampleSize = 5; |
| 1336 | auto size = codec->getSampledDimensions(opts.fSampleSize); |
| 1337 | auto info = codec->getInfo().makeWH(size.fWidth, size.fHeight).makeColorType(kN32_SkColorType); |
| 1338 | SkBitmap bm; |
| 1339 | bm.allocPixels(info); |
| 1340 | auto result = codec->getAndroidPixels(info, bm.getPixels(), bm.rowBytes(), &opts); |
| 1341 | REPORTER_ASSERT(r, result == SkCodec::kSuccess); |
| 1342 | |
| 1343 | info = codec->getInfo().makeColorType(kN32_SkColorType); |
| 1344 | bm.allocPixels(info); |
| 1345 | opts.fSampleSize = 1; |
| 1346 | result = codec->getAndroidPixels(info, bm.getPixels(), bm.rowBytes(), &opts); |
| 1347 | REPORTER_ASSERT(r, result == SkCodec::kSuccess); |
| 1348 | } |
scroggo | e61b3b4 | 2016-10-10 07:17:32 -0700 | [diff] [blame] | 1349 | |
| 1350 | DEF_TEST(Codec_rowsDecoded, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1351 | auto file = "images/plane_interlaced.png"; |
scroggo | e61b3b4 | 2016-10-10 07:17:32 -0700 | [diff] [blame] | 1352 | std::unique_ptr<SkStream> stream(GetResourceAsStream(file)); |
| 1353 | if (!stream) { |
| 1354 | return; |
| 1355 | } |
| 1356 | |
| 1357 | // This is enough to read the header etc, but no rows. |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1358 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(SkData::MakeFromStream(stream.get(), 99))); |
scroggo | e61b3b4 | 2016-10-10 07:17:32 -0700 | [diff] [blame] | 1359 | if (!codec) { |
| 1360 | ERRORF(r, "Failed to create codec\n"); |
| 1361 | return; |
| 1362 | } |
| 1363 | |
| 1364 | auto info = codec->getInfo().makeColorType(kN32_SkColorType); |
| 1365 | SkBitmap bm; |
| 1366 | bm.allocPixels(info); |
| 1367 | auto result = codec->startIncrementalDecode(info, bm.getPixels(), bm.rowBytes()); |
| 1368 | REPORTER_ASSERT(r, result == SkCodec::kSuccess); |
| 1369 | |
| 1370 | // This is an arbitrary value. The important fact is that it is not zero, and rowsDecoded |
| 1371 | // should get set to zero by incrementalDecode. |
| 1372 | int rowsDecoded = 77; |
| 1373 | result = codec->incrementalDecode(&rowsDecoded); |
| 1374 | REPORTER_ASSERT(r, result == SkCodec::kIncompleteInput); |
| 1375 | REPORTER_ASSERT(r, rowsDecoded == 0); |
| 1376 | } |
Matt Sarett | 29121eb | 2016-10-17 14:32:46 -0400 | [diff] [blame] | 1377 | |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1378 | static void test_invalid_images(skiatest::Reporter* r, const char* path, |
| 1379 | SkCodec::Result expectedResult) { |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1380 | auto stream = GetResourceAsStream(path); |
Leon Scroggins III | b3b2453 | 2017-01-18 12:39:07 -0500 | [diff] [blame] | 1381 | if (!stream) { |
| 1382 | return; |
| 1383 | } |
| 1384 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1385 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
Leon Scroggins III | b3b2453 | 2017-01-18 12:39:07 -0500 | [diff] [blame] | 1386 | REPORTER_ASSERT(r, codec); |
| 1387 | |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1388 | test_info(r, codec.get(), codec->getInfo().makeColorType(kN32_SkColorType), expectedResult, |
| 1389 | nullptr); |
| 1390 | } |
| 1391 | |
| 1392 | DEF_TEST(Codec_InvalidImages, r) { |
| 1393 | // ASAN will complain if there is an issue. |
Leon Scroggins III | 674a184 | 2017-07-06 12:26:09 -0400 | [diff] [blame] | 1394 | test_invalid_images(r, "invalid_images/skbug5887.gif", SkCodec::kErrorInInput); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1395 | test_invalid_images(r, "invalid_images/many-progressive-scans.jpg", SkCodec::kInvalidInput); |
| 1396 | test_invalid_images(r, "invalid_images/b33251605.bmp", SkCodec::kIncompleteInput); |
| 1397 | test_invalid_images(r, "invalid_images/bad_palette.png", SkCodec::kInvalidInput); |
| 1398 | } |
| 1399 | |
| 1400 | static void test_invalid_header(skiatest::Reporter* r, const char* path) { |
Mike Reed | 0933bc9 | 2017-12-09 01:27:41 +0000 | [diff] [blame] | 1401 | auto data = GetResourceAsData(path); |
| 1402 | if (!data) { |
| 1403 | return; |
| 1404 | } |
| 1405 | std::unique_ptr<SkStreamAsset> stream(new SkMemoryStream(std::move(data))); |
Mike Reed | 847068c | 2017-07-26 11:35:53 -0400 | [diff] [blame] | 1406 | if (!stream) { |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1407 | return; |
| 1408 | } |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1409 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
Matt Sarett | d59948a | 2017-04-26 10:59:48 -0400 | [diff] [blame] | 1410 | REPORTER_ASSERT(r, !codec); |
| 1411 | } |
| 1412 | |
| 1413 | DEF_TEST(Codec_InvalidHeader, r) { |
| 1414 | test_invalid_header(r, "invalid_images/int_overflow.ico"); |
| 1415 | |
| 1416 | // These files report values that have caused problems with SkFILEStreams. |
| 1417 | // They are invalid, and should not create SkCodecs. |
| 1418 | test_invalid_header(r, "invalid_images/b33651913.bmp"); |
| 1419 | test_invalid_header(r, "invalid_images/b34778578.bmp"); |
Leon Scroggins III | b3b2453 | 2017-01-18 12:39:07 -0500 | [diff] [blame] | 1420 | } |
| 1421 | |
Leon Scroggins III | e93ec68 | 2018-10-26 09:25:51 -0400 | [diff] [blame] | 1422 | /* |
| 1423 | For the Codec_InvalidAnimated test, immediately below, |
| 1424 | resources/invalid_images/skbug6046.gif is: |
| 1425 | |
| 1426 | 00000000: 4749 4638 3961 2000 0000 0000 002c ff00 GIF89a ......,.. |
| 1427 | 00000010: 7400 0600 0000 4001 0021 f904 0a00 0000 t.....@..!...... |
| 1428 | 00000020: 002c ff00 0000 ff00 7400 0606 0606 0601 .,......t....... |
| 1429 | 00000030: 0021 f904 0000 0000 002c ff00 0000 ffcc .!.......,...... |
| 1430 | 00000040: 1b36 5266 deba 543d .6Rf..T= |
| 1431 | |
| 1432 | It nominally contains 3 frames, but all of them are invalid. It came from a |
| 1433 | fuzzer doing random mutations and copies. The breakdown: |
| 1434 | |
| 1435 | @000 6 bytes magic "GIF89a" |
| 1436 | @006 7 bytes Logical Screen Descriptor: 0x20 0x00 ... 0x00 |
| 1437 | - width = 32 |
| 1438 | - height = 0 |
| 1439 | - flags = 0x00 |
| 1440 | - background color index, pixel aspect ratio bytes ignored |
| 1441 | @00D 10 bytes Image Descriptor header: 0x2C 0xFF ... 0x40 |
| 1442 | - origin_x = 255 |
| 1443 | - origin_y = 116 |
| 1444 | - width = 6 |
| 1445 | - height = 0 |
| 1446 | - flags = 0x40, interlaced |
| 1447 | @017 2 bytes Image Descriptor body (pixel data): 0x01 0x00 |
| 1448 | - lit_width = 1, INVALID, OUTSIDE THE RANGE [2, 8] |
| 1449 | - 0x00 byte means "end of data" for this frame |
| 1450 | @019 8 bytes Graphic Control Extension: 0x21 0xF9 ... 0x00 |
| 1451 | - valid, but irrelevant here. |
| 1452 | @021 10 bytes Image Descriptor header: 0x2C 0xFF ... 0x06 |
| 1453 | - origin_x = 255 |
| 1454 | - origin_y = 0 |
| 1455 | - width = 255 |
| 1456 | - height = 116 |
| 1457 | - flags = 0x06, INVALID, 0x80 BIT ZERO IMPLIES 0x07 BITS SHOULD BE ZERO |
| 1458 | @02B 14 bytes Image Descriptor body (pixel data): 0x06 0x06 ... 0x00 |
| 1459 | - lit_width = 6 |
| 1460 | - 0x06 precedes a 6 byte block of data |
| 1461 | - 0x04 precedes a 4 byte block of data |
| 1462 | - 0x00 byte means "end of data" for this frame |
| 1463 | @039 10 bytes Image Descriptor header: 0x2C 0xFF ... 0x06 |
| 1464 | - origin_x = 255 |
| 1465 | - origin_y = 0 |
| 1466 | - width = 52479 |
| 1467 | - height = 13851 |
| 1468 | - flags = 0x52, INVALID, 0x80 BIT ZERO IMPLIES 0x07 BITS SHOULD BE ZERO |
| 1469 | @043 5 bytes Image Descriptor body (pixel data): 0x66 0xDE ... unexpected-EOF |
| 1470 | - lit_width = 102, INVALID, OUTSIDE THE RANGE [2, 8] |
| 1471 | - 0xDE precedes a 222 byte block of data, INVALIDLY TRUNCATED |
| 1472 | |
| 1473 | On Image Descriptor flags INVALIDITY, |
| 1474 | https://www.w3.org/Graphics/GIF/spec-gif89a.txt section 20.c says that "Size of |
| 1475 | Local Color Table [the low 3 bits]... should be 0 if there is no Local Color |
| 1476 | Table specified [the high bit]." |
| 1477 | |
| 1478 | On LZW literal width (also known as Minimum Code Size) INVALIDITY outside of |
| 1479 | the range [2, 8], https://www.w3.org/Graphics/GIF/spec-gif89a.txt Appendix F |
| 1480 | says that "Normally this will be the same as the number of [palette index] |
| 1481 | bits. Because of some algorithmic constraints however, black & white images |
| 1482 | which have one color bit must be indicated as having a code size of 2." |
| 1483 | |
| 1484 | In practice, some GIF decoders, including the old third_party/gif code, don't |
| 1485 | enforce this. It says: "currentFrame->setDataSize(this->getOneByte())" with the |
| 1486 | only further check being against an upper bound of SK_MAX_DICTIONARY_ENTRY_BITS |
| 1487 | (the constant 12). |
| 1488 | */ |
| 1489 | |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1490 | DEF_TEST(Codec_InvalidAnimated, r) { |
| 1491 | // ASAN will complain if there is an issue. |
| 1492 | auto path = "invalid_images/skbug6046.gif"; |
Mike Reed | 71f867c | 2017-07-23 13:14:10 -0400 | [diff] [blame] | 1493 | auto stream = GetResourceAsStream(path); |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1494 | if (!stream) { |
| 1495 | return; |
| 1496 | } |
| 1497 | |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1498 | std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream))); |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1499 | REPORTER_ASSERT(r, codec); |
| 1500 | if (!codec) { |
| 1501 | return; |
| 1502 | } |
| 1503 | |
| 1504 | const auto info = codec->getInfo().makeColorType(kN32_SkColorType); |
| 1505 | SkBitmap bm; |
| 1506 | bm.allocPixels(info); |
| 1507 | |
| 1508 | auto frameInfos = codec->getFrameInfo(); |
| 1509 | SkCodec::Options opts; |
Leon Scroggins III | 249b8e3 | 2017-04-17 12:46:33 -0400 | [diff] [blame] | 1510 | for (int i = 0; static_cast<size_t>(i) < frameInfos.size(); i++) { |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1511 | opts.fFrameIndex = i; |
Leon Scroggins III | 33deb7e | 2017-06-07 12:31:51 -0400 | [diff] [blame] | 1512 | const auto reqFrame = frameInfos[i].fRequiredFrame; |
Nigel Tao | 66bc524 | 2018-08-22 10:56:03 +1000 | [diff] [blame] | 1513 | opts.fPriorFrame = reqFrame == i - 1 ? reqFrame : SkCodec::kNoFrame; |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1514 | auto result = codec->startIncrementalDecode(info, bm.getPixels(), bm.rowBytes(), &opts); |
Leon Scroggins III | e93ec68 | 2018-10-26 09:25:51 -0400 | [diff] [blame] | 1515 | |
| 1516 | #ifdef SK_HAS_WUFFS_LIBRARY |
| 1517 | // We are transitioning from an old GIF implementation to a new (Wuffs) |
| 1518 | // GIF implementation. |
| 1519 | // |
| 1520 | // This test (without SK_HAS_WUFFS_LIBRARY) is overly specific to the |
| 1521 | // old implementation. As a fuzzer-discovered test, it's likely that |
| 1522 | // what's fundamentally being tested isn't that decoding an invalid GIF |
| 1523 | // leads to kSuccess, but that decoding an invalid GIF doesn't lead to |
| 1524 | // an ASAN violation. |
| 1525 | // |
| 1526 | // Each of the 3 frames of the source GIF image is fundamentally |
| 1527 | // invalid, as per the "breakdown" comment above. The old |
| 1528 | // implementation is happy to call startIncrementalDecode 3 times. The |
| 1529 | // new implementation is happy for the first two times, but on the 3rd, |
| 1530 | // SkCodec::startIncrementalDecode calls SkCodec::handleFrameIndex |
| 1531 | // which calls SkCodec::getPixels on the requiredFrame (the 0'th |
| 1532 | // frame), and the new implementation subsequently hits the |
| 1533 | // invalid-ness and returns kErrorInInput instead of kSuccess. |
| 1534 | // |
| 1535 | // Once the transition is complete, we can remove the #ifdef and delete |
| 1536 | // the rest of the test function. |
| 1537 | if (i == 2) { |
| 1538 | if (result != SkCodec::kErrorInInput) { |
| 1539 | ERRORF(r, "Unexpected result for decoding frame %i (out of %i) with error %i\n", i, |
| 1540 | frameInfos.size(), result); |
| 1541 | } |
| 1542 | return; |
| 1543 | } |
| 1544 | #endif |
Leon Scroggins III | 56e3209 | 2016-12-12 17:10:46 -0500 | [diff] [blame] | 1545 | if (result != SkCodec::kSuccess) { |
| 1546 | ERRORF(r, "Failed to start decoding frame %i (out of %i) with error %i\n", i, |
| 1547 | frameInfos.size(), result); |
| 1548 | continue; |
| 1549 | } |
| 1550 | |
| 1551 | codec->incrementalDecode(); |
| 1552 | } |
| 1553 | } |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1554 | |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1555 | static void encode_format(SkDynamicMemoryWStream* stream, const SkPixmap& pixmap, |
Matt Sarett | c367d03 | 2017-05-05 11:13:26 -0400 | [diff] [blame] | 1556 | SkEncodedImageFormat format) { |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1557 | switch (format) { |
| 1558 | case SkEncodedImageFormat::kPNG: |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1559 | SkPngEncoder::Encode(stream, pixmap, SkPngEncoder::Options()); |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1560 | break; |
| 1561 | case SkEncodedImageFormat::kJPEG: |
Matt Sarett | 26b44df | 2017-05-02 16:04:56 -0400 | [diff] [blame] | 1562 | SkJpegEncoder::Encode(stream, pixmap, SkJpegEncoder::Options()); |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1563 | break; |
Matt Sarett | 3dbef9f | 2017-04-05 22:33:22 +0000 | [diff] [blame] | 1564 | case SkEncodedImageFormat::kWEBP: |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1565 | SkWebpEncoder::Encode(stream, pixmap, SkWebpEncoder::Options()); |
Matt Sarett | 3dbef9f | 2017-04-05 22:33:22 +0000 | [diff] [blame] | 1566 | break; |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1567 | default: |
| 1568 | SkASSERT(false); |
| 1569 | break; |
| 1570 | } |
| 1571 | } |
| 1572 | |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1573 | static void test_encode_icc(skiatest::Reporter* r, SkEncodedImageFormat format) { |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1574 | // Test with sRGB color space. |
| 1575 | SkBitmap srgbBitmap; |
| 1576 | SkImageInfo srgbInfo = SkImageInfo::MakeS32(1, 1, kOpaque_SkAlphaType); |
| 1577 | srgbBitmap.allocPixels(srgbInfo); |
| 1578 | *srgbBitmap.getAddr32(0, 0) = 0; |
| 1579 | SkPixmap pixmap; |
| 1580 | srgbBitmap.peekPixels(&pixmap); |
| 1581 | SkDynamicMemoryWStream srgbBuf; |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1582 | encode_format(&srgbBuf, pixmap, format); |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1583 | sk_sp<SkData> srgbData = srgbBuf.detachAsData(); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1584 | std::unique_ptr<SkCodec> srgbCodec(SkCodec::MakeFromData(srgbData)); |
Mike Klein | e28a6b5 | 2018-07-25 13:05:17 -0400 | [diff] [blame] | 1585 | REPORTER_ASSERT(r, srgbCodec->getInfo().colorSpace() == sk_srgb_singleton()); |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1586 | |
| 1587 | // Test with P3 color space. |
| 1588 | SkDynamicMemoryWStream p3Buf; |
| 1589 | sk_sp<SkColorSpace> p3 = SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma, |
| 1590 | SkColorSpace::kDCIP3_D65_Gamut); |
| 1591 | pixmap.setColorSpace(p3); |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1592 | encode_format(&p3Buf, pixmap, format); |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1593 | sk_sp<SkData> p3Data = p3Buf.detachAsData(); |
Mike Reed | ede7bac | 2017-07-23 15:30:02 -0400 | [diff] [blame] | 1594 | std::unique_ptr<SkCodec> p3Codec(SkCodec::MakeFromData(p3Data)); |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1595 | REPORTER_ASSERT(r, p3Codec->getInfo().colorSpace()->gammaCloseToSRGB()); |
Mike Klein | 4429a4f | 2018-10-04 09:06:00 -0400 | [diff] [blame] | 1596 | SkMatrix44 mat0, mat1; |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1597 | bool success = p3->toXYZD50(&mat0); |
| 1598 | REPORTER_ASSERT(r, success); |
| 1599 | success = p3Codec->getInfo().colorSpace()->toXYZD50(&mat1); |
| 1600 | REPORTER_ASSERT(r, success); |
| 1601 | |
| 1602 | for (int i = 0; i < 4; i++) { |
| 1603 | for (int j = 0; j < 4; j++) { |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1604 | REPORTER_ASSERT(r, color_space_almost_equal(mat0.get(i, j), mat1.get(i, j))); |
Matt Sarett | 0e032be | 2017-03-15 17:50:08 -0400 | [diff] [blame] | 1605 | } |
| 1606 | } |
| 1607 | } |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1608 | |
| 1609 | DEF_TEST(Codec_EncodeICC, r) { |
Brian Osman | b62f50c | 2018-07-12 14:44:27 -0400 | [diff] [blame] | 1610 | test_encode_icc(r, SkEncodedImageFormat::kPNG); |
| 1611 | test_encode_icc(r, SkEncodedImageFormat::kJPEG); |
| 1612 | test_encode_icc(r, SkEncodedImageFormat::kWEBP); |
Matt Sarett | 5df93de | 2017-03-22 21:52:47 +0000 | [diff] [blame] | 1613 | } |
Leon Scroggins III | e567746 | 2017-09-27 16:31:08 -0400 | [diff] [blame] | 1614 | |
| 1615 | DEF_TEST(Codec_webp_rowsDecoded, r) { |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 1616 | const char* path = "images/baby_tux.webp"; |
Leon Scroggins III | e567746 | 2017-09-27 16:31:08 -0400 | [diff] [blame] | 1617 | sk_sp<SkData> data(GetResourceAsData(path)); |
| 1618 | if (!data) { |
| 1619 | return; |
| 1620 | } |
| 1621 | |
| 1622 | // Truncate this file so that the header is available but no rows can be |
| 1623 | // decoded. This should create a codec but fail to decode. |
| 1624 | size_t truncatedSize = 5000; |
| 1625 | sk_sp<SkData> subset = SkData::MakeSubset(data.get(), 0, truncatedSize); |
| 1626 | std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(std::move(subset)); |
| 1627 | if (!codec) { |
| 1628 | ERRORF(r, "Failed to create a codec for %s truncated to only %lu bytes", |
| 1629 | path, truncatedSize); |
| 1630 | return; |
| 1631 | } |
| 1632 | |
| 1633 | test_info(r, codec.get(), codec->getInfo(), SkCodec::kInvalidInput, nullptr); |
| 1634 | } |
Leon Scroggins III | cbf66a2 | 2018-02-16 12:03:03 -0500 | [diff] [blame] | 1635 | |
Leon Scroggins III | e93ec68 | 2018-10-26 09:25:51 -0400 | [diff] [blame] | 1636 | /* |
| 1637 | For the Codec_ossfuzz6274 test, immediately below, |
| 1638 | resources/invalid_images/ossfuzz6274.gif is: |
| 1639 | |
| 1640 | 00000000: 4749 4638 3961 2000 2000 f120 2020 2020 GIF89a . .. |
| 1641 | 00000010: 2020 2020 2020 2020 2021 f903 ff20 2020 !... |
| 1642 | 00000020: 002c 0000 0000 2000 2000 2000 00 .,.... . . .. |
| 1643 | |
| 1644 | @000 6 bytes magic "GIF89a" |
| 1645 | @006 7 bytes Logical Screen Descriptor: 0x20 0x00 ... 0x00 |
| 1646 | - width = 32 |
| 1647 | - height = 32 |
| 1648 | - flags = 0xF1, global color table, 4 RGB entries |
| 1649 | - background color index, pixel aspect ratio bytes ignored |
| 1650 | @00D 12 bytes Color Table: 0x20 0x20 ... 0x20 |
| 1651 | @019 20 bytes Graphic Control Extension: 0x21 0xF9 ... unexpected-EOF |
| 1652 | - 0x03 precedes a 3 byte block of data, INVALID, MUST BE 4 |
| 1653 | - 0x20 precedes a 32 byte block of data, INVALIDly truncated |
| 1654 | |
| 1655 | https://www.w3.org/Graphics/GIF/spec-gif89a.txt section 23.c says that the |
| 1656 | block size (for an 0x21 0xF9 Graphic Control Extension) must be "the fixed |
| 1657 | value 4". |
| 1658 | */ |
| 1659 | |
Leon Scroggins III | cbf66a2 | 2018-02-16 12:03:03 -0500 | [diff] [blame] | 1660 | DEF_TEST(Codec_ossfuzz6274, r) { |
| 1661 | if (GetResourcePath().isEmpty()) { |
| 1662 | return; |
| 1663 | } |
| 1664 | |
| 1665 | const char* file = "invalid_images/ossfuzz6274.gif"; |
| 1666 | auto image = GetResourceAsImage(file); |
Leon Scroggins III | e93ec68 | 2018-10-26 09:25:51 -0400 | [diff] [blame] | 1667 | |
| 1668 | #ifdef SK_HAS_WUFFS_LIBRARY |
| 1669 | // We are transitioning from an old GIF implementation to a new (Wuffs) GIF |
| 1670 | // implementation. |
| 1671 | // |
| 1672 | // This test (without SK_HAS_WUFFS_LIBRARY) is overly specific to the old |
| 1673 | // implementation. In the new implementation, the MakeFromStream factory |
| 1674 | // method returns a nullptr SkImage*, instead of returning a non-null but |
| 1675 | // otherwise all-transparent SkImage*. |
| 1676 | // |
| 1677 | // Either way, the end-to-end result is the same - the source input is |
| 1678 | // rejected as an invalid GIF image - but the two implementations differ in |
| 1679 | // how that's represented. |
| 1680 | // |
| 1681 | // Once the transition is complete, we can remove the #ifdef and delete the |
| 1682 | // rest of the test function. |
| 1683 | // |
| 1684 | // See Codec_GifTruncated3 for the equivalent of the rest of the test |
| 1685 | // function, on different (but still truncated) source data. |
| 1686 | if (image) { |
| 1687 | ERRORF(r, "Invalid data gave non-nullptr image"); |
| 1688 | } |
| 1689 | return; |
| 1690 | #endif |
| 1691 | |
Leon Scroggins III | cbf66a2 | 2018-02-16 12:03:03 -0500 | [diff] [blame] | 1692 | if (!image) { |
| 1693 | ERRORF(r, "Missing %s", file); |
| 1694 | return; |
| 1695 | } |
| 1696 | |
| 1697 | REPORTER_ASSERT(r, image->width() == 32); |
| 1698 | REPORTER_ASSERT(r, image->height() == 32); |
| 1699 | |
| 1700 | SkBitmap bm; |
| 1701 | if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(32, 32))) { |
| 1702 | ERRORF(r, "Failed to allocate pixels"); |
| 1703 | return; |
| 1704 | } |
| 1705 | |
| 1706 | bm.eraseColor(SK_ColorTRANSPARENT); |
| 1707 | |
| 1708 | SkCanvas canvas(bm); |
| 1709 | canvas.drawImage(image, 0, 0, nullptr); |
| 1710 | |
| 1711 | for (int i = 0; i < image->width(); ++i) |
| 1712 | for (int j = 0; j < image->height(); ++j) { |
| 1713 | SkColor actual = SkUnPreMultiply::PMColorToColor(*bm.getAddr32(i, j)); |
| 1714 | if (actual != SK_ColorTRANSPARENT) { |
| 1715 | ERRORF(r, "did not initialize pixels! %i, %i is %x", i, j, actual); |
| 1716 | } |
| 1717 | } |
| 1718 | } |
Leon Scroggins III | 9e8a594 | 2018-02-28 16:24:18 -0500 | [diff] [blame] | 1719 | |
Leon Scroggins III | 665949a | 2018-06-26 10:49:42 -0400 | [diff] [blame] | 1720 | DEF_TEST(Codec_78329453, r) { |
| 1721 | if (GetResourcePath().isEmpty()) { |
| 1722 | return; |
| 1723 | } |
| 1724 | |
| 1725 | const char* file = "images/b78329453.jpeg"; |
| 1726 | auto data = GetResourceAsData(file); |
| 1727 | if (!data) { |
| 1728 | ERRORF(r, "Missing %s", file); |
| 1729 | return; |
| 1730 | } |
| 1731 | |
| 1732 | auto codec = SkAndroidCodec::MakeFromCodec(SkCodec::MakeFromData(data)); |
| 1733 | if (!codec) { |
| 1734 | ERRORF(r, "failed to create codec from %s", file); |
| 1735 | return; |
| 1736 | } |
| 1737 | |
| 1738 | // A bug in jpeg_skip_scanlines resulted in an infinite loop for this specific |
| 1739 | // sample size on this image. Other sample sizes could have had the same result, |
| 1740 | // but the ones tested by DM happen to not. |
| 1741 | constexpr int kSampleSize = 19; |
| 1742 | const auto size = codec->getSampledDimensions(kSampleSize); |
| 1743 | auto info = codec->getInfo().makeWH(size.width(), size.height()); |
| 1744 | SkBitmap bm; |
| 1745 | bm.allocPixels(info); |
| 1746 | bm.eraseColor(SK_ColorTRANSPARENT); |
| 1747 | |
| 1748 | SkAndroidCodec::AndroidOptions options; |
| 1749 | options.fSampleSize = kSampleSize; |
| 1750 | auto result = codec->getAndroidPixels(info, bm.getPixels(), bm.rowBytes(), &options); |
| 1751 | if (result != SkCodec::kSuccess) { |
| 1752 | ERRORF(r, "failed to decode with error %s", SkCodec::ResultToString(result)); |
| 1753 | } |
| 1754 | } |
| 1755 | |
Leon Scroggins III | 36f7e32 | 2018-08-27 11:55:46 -0400 | [diff] [blame] | 1756 | DEF_TEST(Codec_A8, r) { |
| 1757 | if (GetResourcePath().isEmpty()) { |
| 1758 | return; |
| 1759 | } |
| 1760 | |
| 1761 | const char* file = "images/mandrill_cmyk.jpg"; |
| 1762 | auto data = GetResourceAsData(file); |
| 1763 | if (!data) { |
| 1764 | ERRORF(r, "missing %s", file); |
| 1765 | return; |
| 1766 | } |
| 1767 | |
| 1768 | auto codec = SkCodec::MakeFromData(std::move(data)); |
| 1769 | auto info = codec->getInfo().makeColorType(kAlpha_8_SkColorType); |
| 1770 | SkBitmap bm; |
| 1771 | bm.allocPixels(info); |
| 1772 | REPORTER_ASSERT(r, codec->getPixels(bm.pixmap()) == SkCodec::kInvalidConversion); |
| 1773 | } |
| 1774 | |
Leon Scroggins III | 9e8a594 | 2018-02-28 16:24:18 -0500 | [diff] [blame] | 1775 | DEF_TEST(Codec_crbug807324, r) { |
| 1776 | if (GetResourcePath().isEmpty()) { |
| 1777 | return; |
| 1778 | } |
| 1779 | |
| 1780 | const char* file = "images/crbug807324.png"; |
| 1781 | auto image = GetResourceAsImage(file); |
| 1782 | if (!image) { |
| 1783 | ERRORF(r, "Missing %s", file); |
| 1784 | return; |
| 1785 | } |
| 1786 | |
| 1787 | const int kWidth = image->width(); |
| 1788 | const int kHeight = image->height(); |
| 1789 | |
| 1790 | SkBitmap bm; |
| 1791 | if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(kWidth, kHeight))) { |
| 1792 | ERRORF(r, "Could not allocate pixels (%i x %i)", kWidth, kHeight); |
| 1793 | return; |
| 1794 | } |
| 1795 | |
| 1796 | bm.eraseColor(SK_ColorTRANSPARENT); |
| 1797 | |
| 1798 | SkCanvas canvas(bm); |
| 1799 | canvas.drawImage(image, 0, 0, nullptr); |
| 1800 | |
| 1801 | for (int i = 0; i < kWidth; ++i) |
| 1802 | for (int j = 0; j < kHeight; ++j) { |
| 1803 | if (*bm.getAddr32(i, j) == SK_ColorTRANSPARENT) { |
| 1804 | ERRORF(r, "image should not be transparent! %i, %i is 0", i, j); |
| 1805 | return; |
| 1806 | } |
| 1807 | } |
| 1808 | } |