blob: e8d38c7aea13bf50b4655abb2c169488742387e4 [file] [log] [blame]
halcanarya096d7a2015-03-27 12:16:53 -07001/*
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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/codec/SkAndroidCodec.h"
9#include "include/codec/SkCodec.h"
10#include "include/core/SkBitmap.h"
11#include "include/core/SkCanvas.h"
12#include "include/core/SkColor.h"
13#include "include/core/SkColorSpace.h"
14#include "include/core/SkData.h"
15#include "include/core/SkEncodedImageFormat.h"
16#include "include/core/SkImage.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040017#include "include/core/SkImageEncoder.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "include/core/SkImageGenerator.h"
19#include "include/core/SkImageInfo.h"
20#include "include/core/SkPixmap.h"
21#include "include/core/SkPngChunkReader.h"
22#include "include/core/SkRect.h"
23#include "include/core/SkRefCnt.h"
24#include "include/core/SkSize.h"
25#include "include/core/SkStream.h"
26#include "include/core/SkString.h"
27#include "include/core/SkTypes.h"
28#include "include/core/SkUnPreMultiply.h"
29#include "include/encode/SkJpegEncoder.h"
30#include "include/encode/SkPngEncoder.h"
31#include "include/encode/SkWebpEncoder.h"
32#include "include/private/SkMalloc.h"
33#include "include/private/SkTemplates.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040034#include "include/third_party/skcms/skcms.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050035#include "include/utils/SkFrontBufferedStream.h"
36#include "include/utils/SkRandom.h"
37#include "src/codec/SkCodecImageGenerator.h"
38#include "src/core/SkAutoMalloc.h"
39#include "src/core/SkColorSpacePriv.h"
40#include "src/core/SkMD5.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050041#include "src/core/SkStreamPriv.h"
42#include "tests/FakeStreams.h"
43#include "tests/Test.h"
44#include "tools/Resources.h"
45#include "tools/ToolUtils.h"
Ben Wagner9707a7e2019-05-06 17:17:19 -040046
Ben Wagner501c17c2018-03-12 20:04:31 +000047#include "png.h"
Ben Wagner1a462bd2018-03-12 13:46:21 -040048
Ben Wagnerb607a8f2018-03-12 13:46:21 -040049#include <setjmp.h>
50#include <cstring>
Ben Wagner9707a7e2019-05-06 17:17:19 -040051#include <initializer_list>
Ben Wagnerb607a8f2018-03-12 13:46:21 -040052#include <memory>
53#include <utility>
54#include <vector>
55
scroggo8e6c7ad2016-09-16 08:20:38 -070056#if PNG_LIBPNG_VER_MAJOR == 1 && PNG_LIBPNG_VER_MINOR < 5
57 // FIXME (scroggo): Google3 needs to be updated to use a newer version of libpng. In
58 // the meantime, we had to break some pieces of SkPngCodec in order to support Google3.
59 // The parts that are broken are likely not used by Google3.
60 #define SK_PNG_DISABLE_TESTS
61#endif
62
Hal Canary0f2f5222019-04-03 10:13:45 -040063static SkMD5::Digest md5(const SkBitmap& bm) {
halcanarya096d7a2015-03-27 12:16:53 -070064 SkASSERT(bm.getPixels());
65 SkMD5 md5;
66 size_t rowLen = bm.info().bytesPerPixel() * bm.width();
67 for (int y = 0; y < bm.height(); ++y) {
halcanary1e903042016-04-25 10:29:36 -070068 md5.write(bm.getAddr(0, y), rowLen);
halcanarya096d7a2015-03-27 12:16:53 -070069 }
Hal Canary0f2f5222019-04-03 10:13:45 -040070 return md5.finish();
halcanarya096d7a2015-03-27 12:16:53 -070071}
72
scroggo9b2cdbf42015-07-10 12:07:02 -070073/**
74 * Compute the digest for bm and compare it to a known good digest.
75 * @param r Reporter to assert that bm's digest matches goodDigest.
76 * @param goodDigest The known good digest to compare to.
77 * @param bm The bitmap to test.
78 */
79static void compare_to_good_digest(skiatest::Reporter* r, const SkMD5::Digest& goodDigest,
80 const SkBitmap& bm) {
Hal Canary0f2f5222019-04-03 10:13:45 -040081 SkMD5::Digest digest = md5(bm);
scroggo9b2cdbf42015-07-10 12:07:02 -070082 REPORTER_ASSERT(r, digest == goodDigest);
83}
84
scroggod1bc5742015-08-12 08:31:44 -070085/**
86 * Test decoding an SkCodec to a particular SkImageInfo.
87 *
halcanary96fcdcc2015-08-27 07:41:13 -070088 * Calling getPixels(info) should return expectedResult, and if goodDigest is non nullptr,
scroggod1bc5742015-08-12 08:31:44 -070089 * the resulting decode should match.
90 */
scroggo7b5e5532016-02-04 06:14:24 -080091template<typename Codec>
92static void test_info(skiatest::Reporter* r, Codec* codec, const SkImageInfo& info,
scroggod1bc5742015-08-12 08:31:44 -070093 SkCodec::Result expectedResult, const SkMD5::Digest* goodDigest) {
94 SkBitmap bm;
95 bm.allocPixels(info);
scroggod1bc5742015-08-12 08:31:44 -070096
97 SkCodec::Result result = codec->getPixels(info, bm.getPixels(), bm.rowBytes());
98 REPORTER_ASSERT(r, result == expectedResult);
99
100 if (goodDigest) {
101 compare_to_good_digest(r, *goodDigest, bm);
102 }
103}
104
scroggob636b452015-07-22 07:16:20 -0700105SkIRect generate_random_subset(SkRandom* rand, int w, int h) {
106 SkIRect rect;
107 do {
108 rect.fLeft = rand->nextRangeU(0, w);
109 rect.fTop = rand->nextRangeU(0, h);
110 rect.fRight = rand->nextRangeU(0, w);
111 rect.fBottom = rand->nextRangeU(0, h);
112 rect.sort();
113 } while (rect.isEmpty());
114 return rect;
115}
116
scroggo8e6c7ad2016-09-16 08:20:38 -0700117static void test_incremental_decode(skiatest::Reporter* r, SkCodec* codec, const SkImageInfo& info,
118 const SkMD5::Digest& goodDigest) {
119 SkBitmap bm;
120 bm.allocPixels(info);
scroggo8e6c7ad2016-09-16 08:20:38 -0700121
122 REPORTER_ASSERT(r, SkCodec::kSuccess == codec->startIncrementalDecode(info, bm.getPixels(),
123 bm.rowBytes()));
124
125 REPORTER_ASSERT(r, SkCodec::kSuccess == codec->incrementalDecode());
126
127 compare_to_good_digest(r, goodDigest, bm);
128}
129
130// Test in stripes, similar to DM's kStripe_Mode
131static void test_in_stripes(skiatest::Reporter* r, SkCodec* codec, const SkImageInfo& info,
132 const SkMD5::Digest& goodDigest) {
133 SkBitmap bm;
134 bm.allocPixels(info);
135 bm.eraseColor(SK_ColorYELLOW);
136
137 const int height = info.height();
138 // Note that if numStripes does not evenly divide height there will be an extra
139 // stripe.
140 const int numStripes = 4;
141
142 if (numStripes > height) {
143 // Image is too small.
144 return;
145 }
146
147 const int stripeHeight = height / numStripes;
148
149 // Iterate through the image twice. Once to decode odd stripes, and once for even.
150 for (int oddEven = 1; oddEven >= 0; oddEven--) {
151 for (int y = oddEven * stripeHeight; y < height; y += 2 * stripeHeight) {
152 SkIRect subset = SkIRect::MakeLTRB(0, y, info.width(),
153 SkTMin(y + stripeHeight, height));
154 SkCodec::Options options;
155 options.fSubset = &subset;
156 if (SkCodec::kSuccess != codec->startIncrementalDecode(info, bm.getAddr(0, y),
157 bm.rowBytes(), &options)) {
158 ERRORF(r, "failed to start incremental decode!\ttop: %i\tbottom%i\n",
159 subset.top(), subset.bottom());
160 return;
161 }
162 if (SkCodec::kSuccess != codec->incrementalDecode()) {
163 ERRORF(r, "failed incremental decode starting from line %i\n", y);
164 return;
165 }
166 }
167 }
168
169 compare_to_good_digest(r, goodDigest, bm);
170}
171
scroggo7b5e5532016-02-04 06:14:24 -0800172template<typename Codec>
Leon Scroggins IIIb41321b2018-12-11 10:37:07 -0500173static void test_codec(skiatest::Reporter* r, const char* path, Codec* codec, SkBitmap& bm,
174 const SkImageInfo& info, const SkISize& size, SkCodec::Result expectedResult,
175 SkMD5::Digest* digest, const SkMD5::Digest* goodDigest) {
msarette6dd0042015-10-09 11:07:34 -0700176
halcanarya096d7a2015-03-27 12:16:53 -0700177 REPORTER_ASSERT(r, info.dimensions() == size);
halcanarya096d7a2015-03-27 12:16:53 -0700178 bm.allocPixels(info);
msarettcc7f3052015-10-05 14:20:27 -0700179
180 SkCodec::Result result = codec->getPixels(info, bm.getPixels(), bm.rowBytes());
msarette6dd0042015-10-09 11:07:34 -0700181 REPORTER_ASSERT(r, result == expectedResult);
halcanarya096d7a2015-03-27 12:16:53 -0700182
Hal Canary0f2f5222019-04-03 10:13:45 -0400183 *digest = md5(bm);
msarettcc7f3052015-10-05 14:20:27 -0700184 if (goodDigest) {
185 REPORTER_ASSERT(r, *digest == *goodDigest);
186 }
halcanarya096d7a2015-03-27 12:16:53 -0700187
msarett8ff6ca62015-09-18 12:06:04 -0700188 {
189 // Test decoding to 565
190 SkImageInfo info565 = info.makeColorType(kRGB_565_SkColorType);
scroggoba584892016-05-20 13:56:13 -0700191 if (info.alphaType() == kOpaque_SkAlphaType) {
192 // Decoding to 565 should succeed.
193 SkBitmap bm565;
194 bm565.allocPixels(info565);
scroggoba584892016-05-20 13:56:13 -0700195
196 // This will allow comparison even if the image is incomplete.
197 bm565.eraseColor(SK_ColorBLACK);
198
Leon Scroggins IIIb41321b2018-12-11 10:37:07 -0500199 auto actualResult = codec->getPixels(info565, bm565.getPixels(), bm565.rowBytes());
200 if (actualResult == expectedResult) {
Hal Canary0f2f5222019-04-03 10:13:45 -0400201 SkMD5::Digest digest565 = md5(bm565);
scroggoba584892016-05-20 13:56:13 -0700202
Leon Scroggins IIIb41321b2018-12-11 10:37:07 -0500203 // A request for non-opaque should also succeed.
204 for (auto alpha : { kPremul_SkAlphaType, kUnpremul_SkAlphaType }) {
205 info565 = info565.makeAlphaType(alpha);
206 test_info(r, codec, info565, expectedResult, &digest565);
207 }
208 } else {
209 ERRORF(r, "Decoding %s to 565 failed with result \"%s\"\n\t\t\t\texpected:\"%s\"",
210 path,
211 SkCodec::ResultToString(actualResult),
212 SkCodec::ResultToString(expectedResult));
scroggoba584892016-05-20 13:56:13 -0700213 }
214 } else {
215 test_info(r, codec, info565, SkCodec::kInvalidConversion, nullptr);
216 }
217 }
218
219 if (codec->getInfo().colorType() == kGray_8_SkColorType) {
220 SkImageInfo grayInfo = codec->getInfo();
221 SkBitmap grayBm;
222 grayBm.allocPixels(grayInfo);
scroggoba584892016-05-20 13:56:13 -0700223
224 grayBm.eraseColor(SK_ColorBLACK);
225
226 REPORTER_ASSERT(r, expectedResult == codec->getPixels(grayInfo,
227 grayBm.getPixels(), grayBm.rowBytes()));
228
Hal Canary0f2f5222019-04-03 10:13:45 -0400229 SkMD5::Digest grayDigest = md5(grayBm);
scroggoba584892016-05-20 13:56:13 -0700230
231 for (auto alpha : { kPremul_SkAlphaType, kUnpremul_SkAlphaType }) {
232 grayInfo = grayInfo.makeAlphaType(alpha);
233 test_info(r, codec, grayInfo, expectedResult, &grayDigest);
234 }
msarett8ff6ca62015-09-18 12:06:04 -0700235 }
236
237 // Verify that re-decoding gives the same result. It is interesting to check this after
238 // a decode to 565, since choosing to decode to 565 may result in some of the decode
239 // options being modified. These options should return to their defaults on another
240 // decode to kN32, so the new digest should match the old digest.
msarette6dd0042015-10-09 11:07:34 -0700241 test_info(r, codec, info, expectedResult, digest);
scroggod1bc5742015-08-12 08:31:44 -0700242
243 {
244 // Check alpha type conversions
245 if (info.alphaType() == kOpaque_SkAlphaType) {
246 test_info(r, codec, info.makeAlphaType(kUnpremul_SkAlphaType),
scroggoc5560be2016-02-03 09:42:42 -0800247 expectedResult, digest);
scroggod1bc5742015-08-12 08:31:44 -0700248 test_info(r, codec, info.makeAlphaType(kPremul_SkAlphaType),
scroggoc5560be2016-02-03 09:42:42 -0800249 expectedResult, digest);
scroggod1bc5742015-08-12 08:31:44 -0700250 } else {
251 // Decoding to opaque should fail
252 test_info(r, codec, info.makeAlphaType(kOpaque_SkAlphaType),
halcanary96fcdcc2015-08-27 07:41:13 -0700253 SkCodec::kInvalidConversion, nullptr);
scroggod1bc5742015-08-12 08:31:44 -0700254 SkAlphaType otherAt = info.alphaType();
255 if (kPremul_SkAlphaType == otherAt) {
256 otherAt = kUnpremul_SkAlphaType;
257 } else {
258 otherAt = kPremul_SkAlphaType;
259 }
260 // The other non-opaque alpha type should always succeed, but not match.
msarette6dd0042015-10-09 11:07:34 -0700261 test_info(r, codec, info.makeAlphaType(otherAt), expectedResult, nullptr);
scroggod1bc5742015-08-12 08:31:44 -0700262 }
263 }
msarettcc7f3052015-10-05 14:20:27 -0700264}
265
scroggobed1ed62016-02-11 10:24:55 -0800266static bool supports_partial_scanlines(const char path[]) {
scroggo2c3b2182015-10-09 08:40:59 -0700267 static const char* const exts[] = {
268 "jpg", "jpeg", "png", "webp"
269 "JPG", "JPEG", "PNG", "WEBP"
270 };
271
272 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
273 if (SkStrEndsWith(path, exts[i])) {
274 return true;
275 }
276 }
277 return false;
278}
279
scroggo8e6c7ad2016-09-16 08:20:38 -0700280// FIXME: Break up this giant function
msarettcc7f3052015-10-05 14:20:27 -0700281static void check(skiatest::Reporter* r,
282 const char path[],
283 SkISize size,
284 bool supportsScanlineDecoding,
285 bool supportsSubsetDecoding,
scroggo8e6c7ad2016-09-16 08:20:38 -0700286 bool supportsIncomplete,
287 bool supportsNewScanlineDecoding = false) {
Nigel Tao9b9453e2018-08-01 09:59:38 +1000288 // If we're testing incomplete decodes, let's run the same test on full decodes.
289 if (supportsIncomplete) {
290 check(r, path, size, supportsScanlineDecoding, supportsSubsetDecoding, false,
291 supportsNewScanlineDecoding);
292 }
msarettcc7f3052015-10-05 14:20:27 -0700293
Ben Wagner145dbcd2016-11-03 14:40:50 -0400294 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
msarettcc7f3052015-10-05 14:20:27 -0700295 if (!stream) {
msarettcc7f3052015-10-05 14:20:27 -0700296 return;
297 }
msarette6dd0042015-10-09 11:07:34 -0700298
Ben Wagner145dbcd2016-11-03 14:40:50 -0400299 std::unique_ptr<SkCodec> codec(nullptr);
Nigel Tao9b9453e2018-08-01 09:59:38 +1000300 if (supportsIncomplete) {
msarette6dd0042015-10-09 11:07:34 -0700301 size_t size = stream->getLength();
Mike Reedede7bac2017-07-23 15:30:02 -0400302 codec = SkCodec::MakeFromData(SkData::MakeFromStream(stream.get(), 2 * size / 3));
msarette6dd0042015-10-09 11:07:34 -0700303 } else {
Mike Reedede7bac2017-07-23 15:30:02 -0400304 codec = SkCodec::MakeFromStream(std::move(stream));
msarette6dd0042015-10-09 11:07:34 -0700305 }
msarettcc7f3052015-10-05 14:20:27 -0700306 if (!codec) {
307 ERRORF(r, "Unable to decode '%s'", path);
308 return;
309 }
310
311 // Test full image decodes with SkCodec
312 SkMD5::Digest codecDigest;
scroggoef0fed32016-02-18 05:59:25 -0800313 const SkImageInfo info = codec->getInfo().makeColorType(kN32_SkColorType);
msarettcc7f3052015-10-05 14:20:27 -0700314 SkBitmap bm;
Nigel Tao9b9453e2018-08-01 09:59:38 +1000315 SkCodec::Result expectedResult =
316 supportsIncomplete ? SkCodec::kIncompleteInput : SkCodec::kSuccess;
Leon Scroggins IIIb41321b2018-12-11 10:37:07 -0500317 test_codec(r, path, codec.get(), bm, info, size, expectedResult, &codecDigest, nullptr);
scroggod1bc5742015-08-12 08:31:44 -0700318
319 // Scanline decoding follows.
scroggod8d68552016-06-06 11:26:17 -0700320
Nigel Tao9b9453e2018-08-01 09:59:38 +1000321 if (supportsNewScanlineDecoding && !supportsIncomplete) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400322 test_incremental_decode(r, codec.get(), info, codecDigest);
scroggo19b91532016-10-24 09:03:26 -0700323 // This is only supported by codecs that use incremental decoding to
324 // support subset decodes - png and jpeg (once SkJpegCodec is
325 // converted).
326 if (SkStrEndsWith(path, "png") || SkStrEndsWith(path, "PNG")) {
Ben Wagner145dbcd2016-11-03 14:40:50 -0400327 test_in_stripes(r, codec.get(), info, codecDigest);
scroggo19b91532016-10-24 09:03:26 -0700328 }
scroggo8e6c7ad2016-09-16 08:20:38 -0700329 }
330
331 // Need to call startScanlineDecode() first.
332 REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0) == 0);
333 REPORTER_ASSERT(r, !codec->skipScanlines(1));
scroggo46c57472015-09-30 08:57:13 -0700334 const SkCodec::Result startResult = codec->startScanlineDecode(info);
scroggo58421542015-04-01 11:25:20 -0700335 if (supportsScanlineDecoding) {
336 bm.eraseColor(SK_ColorYELLOW);
msarettc0e80c12015-07-01 06:50:35 -0700337
scroggo46c57472015-09-30 08:57:13 -0700338 REPORTER_ASSERT(r, startResult == SkCodec::kSuccess);
scroggo9b2cdbf42015-07-10 12:07:02 -0700339
scroggo58421542015-04-01 11:25:20 -0700340 for (int y = 0; y < info.height(); y++) {
msarette6dd0042015-10-09 11:07:34 -0700341 const int lines = codec->getScanlines(bm.getAddr(0, y), 1, 0);
Nigel Tao9b9453e2018-08-01 09:59:38 +1000342 if (!supportsIncomplete) {
msarette6dd0042015-10-09 11:07:34 -0700343 REPORTER_ASSERT(r, 1 == lines);
344 }
scroggo58421542015-04-01 11:25:20 -0700345 }
346 // verify that scanline decoding gives the same result.
scroggo46c57472015-09-30 08:57:13 -0700347 if (SkCodec::kTopDown_SkScanlineOrder == codec->getScanlineOrder()) {
msarettcc7f3052015-10-05 14:20:27 -0700348 compare_to_good_digest(r, codecDigest, bm);
msarett5406d6f2015-08-31 06:55:13 -0700349 }
scroggo46c57472015-09-30 08:57:13 -0700350
351 // Cannot continue to decode scanlines beyond the end
352 REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0)
msarette6dd0042015-10-09 11:07:34 -0700353 == 0);
scroggo46c57472015-09-30 08:57:13 -0700354
355 // Interrupting a scanline decode with a full decode starts from
356 // scratch
357 REPORTER_ASSERT(r, codec->startScanlineDecode(info) == SkCodec::kSuccess);
msarette6dd0042015-10-09 11:07:34 -0700358 const int lines = codec->getScanlines(bm.getAddr(0, 0), 1, 0);
Nigel Tao9b9453e2018-08-01 09:59:38 +1000359 if (!supportsIncomplete) {
msarette6dd0042015-10-09 11:07:34 -0700360 REPORTER_ASSERT(r, lines == 1);
361 }
scroggo46c57472015-09-30 08:57:13 -0700362 REPORTER_ASSERT(r, codec->getPixels(bm.info(), bm.getPixels(), bm.rowBytes())
msarette6dd0042015-10-09 11:07:34 -0700363 == expectedResult);
scroggo46c57472015-09-30 08:57:13 -0700364 REPORTER_ASSERT(r, codec->getScanlines(bm.getAddr(0, 0), 1, 0)
msarette6dd0042015-10-09 11:07:34 -0700365 == 0);
scroggo46c57472015-09-30 08:57:13 -0700366 REPORTER_ASSERT(r, codec->skipScanlines(1)
msarette6dd0042015-10-09 11:07:34 -0700367 == 0);
msarett80803ff2015-10-16 10:54:12 -0700368
369 // Test partial scanline decodes
scroggobed1ed62016-02-11 10:24:55 -0800370 if (supports_partial_scanlines(path) && info.width() >= 3) {
msarett80803ff2015-10-16 10:54:12 -0700371 SkCodec::Options options;
372 int width = info.width();
373 int height = info.height();
374 SkIRect subset = SkIRect::MakeXYWH(2 * (width / 3), 0, width / 3, height);
375 options.fSubset = &subset;
376
Leon Scroggins571b30f2017-07-11 17:35:31 +0000377 const auto partialStartResult = codec->startScanlineDecode(info, &options);
msarett80803ff2015-10-16 10:54:12 -0700378 REPORTER_ASSERT(r, partialStartResult == SkCodec::kSuccess);
379
380 for (int y = 0; y < height; y++) {
381 const int lines = codec->getScanlines(bm.getAddr(0, y), 1, 0);
Nigel Tao9b9453e2018-08-01 09:59:38 +1000382 if (!supportsIncomplete) {
msarett80803ff2015-10-16 10:54:12 -0700383 REPORTER_ASSERT(r, 1 == lines);
384 }
385 }
386 }
scroggo58421542015-04-01 11:25:20 -0700387 } else {
scroggo46c57472015-09-30 08:57:13 -0700388 REPORTER_ASSERT(r, startResult == SkCodec::kUnimplemented);
halcanarya096d7a2015-03-27 12:16:53 -0700389 }
scroggob636b452015-07-22 07:16:20 -0700390
391 // The rest of this function tests decoding subsets, and will decode an arbitrary number of
392 // random subsets.
393 // Do not attempt to decode subsets of an image of only once pixel, since there is no
394 // meaningful subset.
395 if (size.width() * size.height() == 1) {
396 return;
397 }
398
399 SkRandom rand;
400 SkIRect subset;
401 SkCodec::Options opts;
402 opts.fSubset = &subset;
403 for (int i = 0; i < 5; i++) {
404 subset = generate_random_subset(&rand, size.width(), size.height());
405 SkASSERT(!subset.isEmpty());
406 const bool supported = codec->getValidSubset(&subset);
407 REPORTER_ASSERT(r, supported == supportsSubsetDecoding);
408
Brian Salomon9241a6d2019-10-03 13:26:54 -0400409 SkImageInfo subsetInfo = info.makeDimensions(subset.size());
scroggob636b452015-07-22 07:16:20 -0700410 SkBitmap bm;
411 bm.allocPixels(subsetInfo);
Leon Scroggins571b30f2017-07-11 17:35:31 +0000412 const auto result = codec->getPixels(bm.info(), bm.getPixels(), bm.rowBytes(), &opts);
scroggob636b452015-07-22 07:16:20 -0700413
414 if (supportsSubsetDecoding) {
Leon Scroggins III58f100c2016-12-20 09:49:25 -0500415 if (expectedResult == SkCodec::kSuccess) {
416 REPORTER_ASSERT(r, result == expectedResult);
Leon Scroggins III58f100c2016-12-20 09:49:25 -0500417 }
scroggob636b452015-07-22 07:16:20 -0700418 // Webp is the only codec that supports subsets, and it will have modified the subset
419 // to have even left/top.
420 REPORTER_ASSERT(r, SkIsAlign2(subset.fLeft) && SkIsAlign2(subset.fTop));
421 } else {
422 // No subsets will work.
423 REPORTER_ASSERT(r, result == SkCodec::kUnimplemented);
424 }
425 }
msarettcc7f3052015-10-05 14:20:27 -0700426
scroggobed1ed62016-02-11 10:24:55 -0800427 // SkAndroidCodec tests
scroggo8e6c7ad2016-09-16 08:20:38 -0700428 if (supportsScanlineDecoding || supportsSubsetDecoding || supportsNewScanlineDecoding) {
scroggo2c3b2182015-10-09 08:40:59 -0700429
Ben Wagner145dbcd2016-11-03 14:40:50 -0400430 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
msarettcc7f3052015-10-05 14:20:27 -0700431 if (!stream) {
msarettcc7f3052015-10-05 14:20:27 -0700432 return;
433 }
msarette6dd0042015-10-09 11:07:34 -0700434
Leon Scroggins III7397d7a2018-01-04 13:26:30 -0500435 auto androidCodec = SkAndroidCodec::MakeFromCodec(std::move(codec));
scroggo7b5e5532016-02-04 06:14:24 -0800436 if (!androidCodec) {
msarettcc7f3052015-10-05 14:20:27 -0700437 ERRORF(r, "Unable to decode '%s'", path);
438 return;
439 }
440
441 SkBitmap bm;
scroggobed1ed62016-02-11 10:24:55 -0800442 SkMD5::Digest androidCodecDigest;
Leon Scroggins IIIb41321b2018-12-11 10:37:07 -0500443 test_codec(r, path, androidCodec.get(), bm, info, size, expectedResult, &androidCodecDigest,
scroggo7b5e5532016-02-04 06:14:24 -0800444 &codecDigest);
msarette6dd0042015-10-09 11:07:34 -0700445 }
446
Nigel Tao9b9453e2018-08-01 09:59:38 +1000447 if (!supportsIncomplete) {
scroggoef0fed32016-02-18 05:59:25 -0800448 // Test SkCodecImageGenerator
Ben Wagner145dbcd2016-11-03 14:40:50 -0400449 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
450 sk_sp<SkData> fullData(SkData::MakeFromStream(stream.get(), stream->getLength()));
451 std::unique_ptr<SkImageGenerator> gen(
Mike Reed185130c2017-02-15 15:14:16 -0500452 SkCodecImageGenerator::MakeFromEncodedCodec(fullData));
msarettedd2dcf2016-01-14 13:12:26 -0800453 SkBitmap bm;
454 bm.allocPixels(info);
msarettedd2dcf2016-01-14 13:12:26 -0800455 REPORTER_ASSERT(r, gen->getPixels(info, bm.getPixels(), bm.rowBytes()));
456 compare_to_good_digest(r, codecDigest, bm);
scroggoef0fed32016-02-18 05:59:25 -0800457
scroggo8e6c7ad2016-09-16 08:20:38 -0700458#ifndef SK_PNG_DISABLE_TESTS
scroggod8d68552016-06-06 11:26:17 -0700459 // Test using SkFrontBufferedStream, as Android does
Mike Reed98c5d922017-09-15 21:39:47 -0400460 auto bufferedStream = SkFrontBufferedStream::Make(
461 SkMemoryStream::Make(std::move(fullData)), SkCodec::MinBufferedBytesNeeded());
scroggod8d68552016-06-06 11:26:17 -0700462 REPORTER_ASSERT(r, bufferedStream);
Mike Reed98c5d922017-09-15 21:39:47 -0400463 codec = SkCodec::MakeFromStream(std::move(bufferedStream));
scroggod8d68552016-06-06 11:26:17 -0700464 REPORTER_ASSERT(r, codec);
465 if (codec) {
466 test_info(r, codec.get(), info, SkCodec::kSuccess, &codecDigest);
scroggoef0fed32016-02-18 05:59:25 -0800467 }
scroggo8e6c7ad2016-09-16 08:20:38 -0700468#endif
msarettedd2dcf2016-01-14 13:12:26 -0800469 }
halcanarya096d7a2015-03-27 12:16:53 -0700470}
471
Leon Scroggins III83926342016-12-06 10:58:02 -0500472DEF_TEST(Codec_wbmp, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500473 check(r, "images/mandrill.wbmp", SkISize::Make(512, 512), true, false, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500474}
halcanarya096d7a2015-03-27 12:16:53 -0700475
Leon Scroggins III83926342016-12-06 10:58:02 -0500476DEF_TEST(Codec_webp, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500477 check(r, "images/baby_tux.webp", SkISize::Make(386, 395), false, true, true);
478 check(r, "images/color_wheel.webp", SkISize::Make(128, 128), false, true, true);
479 check(r, "images/yellow_rose.webp", SkISize::Make(400, 301), false, true, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500480}
scroggo6f5e6192015-06-18 12:53:43 -0700481
Leon Scroggins III83926342016-12-06 10:58:02 -0500482DEF_TEST(Codec_bmp, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500483 check(r, "images/randPixels.bmp", SkISize::Make(8, 8), true, false, true);
484 check(r, "images/rle.bmp", SkISize::Make(320, 240), true, false, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500485}
halcanarya096d7a2015-03-27 12:16:53 -0700486
Leon Scroggins III83926342016-12-06 10:58:02 -0500487DEF_TEST(Codec_ico, r) {
msarette6dd0042015-10-09 11:07:34 -0700488 // FIXME: We are not ready to test incomplete ICOs
msarett68b204e2015-04-01 12:09:21 -0700489 // These two tests examine interestingly different behavior:
490 // Decodes an embedded BMP image
Hal Canaryc465d132017-12-08 10:21:31 -0500491 check(r, "images/color_wheel.ico", SkISize::Make(128, 128), true, false, false);
msarett68b204e2015-04-01 12:09:21 -0700492 // Decodes an embedded PNG image
Hal Canaryc465d132017-12-08 10:21:31 -0500493 check(r, "images/google_chrome.ico", SkISize::Make(256, 256), false, false, false, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500494}
halcanarya096d7a2015-03-27 12:16:53 -0700495
Leon Scroggins III83926342016-12-06 10:58:02 -0500496DEF_TEST(Codec_gif, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500497 check(r, "images/box.gif", SkISize::Make(200, 55), false, false, true, true);
498 check(r, "images/color_wheel.gif", SkISize::Make(128, 128), false, false, true, true);
msarette6dd0042015-10-09 11:07:34 -0700499 // randPixels.gif is too small to test incomplete
Hal Canaryc465d132017-12-08 10:21:31 -0500500 check(r, "images/randPixels.gif", SkISize::Make(8, 8), false, false, false, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500501}
msarett438b2ad2015-04-09 12:43:10 -0700502
Leon Scroggins III83926342016-12-06 10:58:02 -0500503DEF_TEST(Codec_jpg, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500504 check(r, "images/CMYK.jpg", SkISize::Make(642, 516), true, false, true);
505 check(r, "images/color_wheel.jpg", SkISize::Make(128, 128), true, false, true);
msarette6dd0042015-10-09 11:07:34 -0700506 // grayscale.jpg is too small to test incomplete
Hal Canaryc465d132017-12-08 10:21:31 -0500507 check(r, "images/grayscale.jpg", SkISize::Make(128, 128), true, false, false);
508 check(r, "images/mandrill_512_q075.jpg", SkISize::Make(512, 512), true, false, true);
msarette6dd0042015-10-09 11:07:34 -0700509 // randPixels.jpg is too small to test incomplete
Hal Canaryc465d132017-12-08 10:21:31 -0500510 check(r, "images/randPixels.jpg", SkISize::Make(8, 8), true, false, false);
Leon Scroggins III83926342016-12-06 10:58:02 -0500511}
msarette16b04a2015-04-15 07:32:19 -0700512
Leon Scroggins III83926342016-12-06 10:58:02 -0500513DEF_TEST(Codec_png, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500514 check(r, "images/arrow.png", SkISize::Make(187, 312), false, false, true, true);
515 check(r, "images/baby_tux.png", SkISize::Make(240, 246), false, false, true, true);
516 check(r, "images/color_wheel.png", SkISize::Make(128, 128), false, false, true, true);
scroggo8e6c7ad2016-09-16 08:20:38 -0700517 // half-transparent-white-pixel.png is too small to test incomplete
Hal Canaryc465d132017-12-08 10:21:31 -0500518 check(r, "images/half-transparent-white-pixel.png", SkISize::Make(1, 1), false, false, false, true);
519 check(r, "images/mandrill_128.png", SkISize::Make(128, 128), false, false, true, true);
Brian Osmanccb21bf2018-07-09 14:57:48 -0400520 // mandrill_16.png is too small (relative to embedded sRGB profile) to test incomplete
521 check(r, "images/mandrill_16.png", SkISize::Make(16, 16), false, false, false, true);
Hal Canaryc465d132017-12-08 10:21:31 -0500522 check(r, "images/mandrill_256.png", SkISize::Make(256, 256), false, false, true, true);
523 check(r, "images/mandrill_32.png", SkISize::Make(32, 32), false, false, true, true);
524 check(r, "images/mandrill_512.png", SkISize::Make(512, 512), false, false, true, true);
525 check(r, "images/mandrill_64.png", SkISize::Make(64, 64), false, false, true, true);
526 check(r, "images/plane.png", SkISize::Make(250, 126), false, false, true, true);
527 check(r, "images/plane_interlaced.png", SkISize::Make(250, 126), false, false, true, true);
528 check(r, "images/randPixels.png", SkISize::Make(8, 8), false, false, true, true);
529 check(r, "images/yellow_rose.png", SkISize::Make(400, 301), false, false, true, true);
Leon Scroggins III83926342016-12-06 10:58:02 -0500530}
yujieqin916de9f2016-01-25 08:26:16 -0800531
yujieqinf236ee42016-02-29 07:14:42 -0800532// Disable RAW tests for Win32.
533#if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32))
Leon Scroggins III83926342016-12-06 10:58:02 -0500534DEF_TEST(Codec_raw, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500535 check(r, "images/sample_1mp.dng", SkISize::Make(600, 338), false, false, false);
536 check(r, "images/sample_1mp_rotated.dng", SkISize::Make(600, 338), false, false, false);
537 check(r, "images/dng_with_preview.dng", SkISize::Make(600, 338), true, false, false);
halcanarya096d7a2015-03-27 12:16:53 -0700538}
Leon Scroggins III83926342016-12-06 10:58:02 -0500539#endif
scroggo0a7e69c2015-04-03 07:22:22 -0700540
541static void test_invalid_stream(skiatest::Reporter* r, const void* stream, size_t len) {
scroggo2c3b2182015-10-09 08:40:59 -0700542 // Neither of these calls should return a codec. Bots should catch us if we leaked anything.
Mike Reedede7bac2017-07-23 15:30:02 -0400543 REPORTER_ASSERT(r, !SkCodec::MakeFromStream(
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500544 std::make_unique<SkMemoryStream>(stream, len, false)));
Mike Reedede7bac2017-07-23 15:30:02 -0400545 REPORTER_ASSERT(r, !SkAndroidCodec::MakeFromStream(
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500546 std::make_unique<SkMemoryStream>(stream, len, false)));
scroggo0a7e69c2015-04-03 07:22:22 -0700547}
548
549// Ensure that SkCodec::NewFromStream handles freeing the passed in SkStream,
550// even on failure. Test some bad streams.
551DEF_TEST(Codec_leaks, r) {
552 // No codec should claim this as their format, so this tests SkCodec::NewFromStream.
553 const char nonSupportedStream[] = "hello world";
554 // The other strings should look like the beginning of a file type, so we'll call some
555 // internal version of NewFromStream, which must also delete the stream on failure.
556 const unsigned char emptyPng[] = { 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a };
557 const unsigned char emptyJpeg[] = { 0xFF, 0xD8, 0xFF };
558 const char emptyWebp[] = "RIFF1234WEBPVP";
559 const char emptyBmp[] = { 'B', 'M' };
560 const char emptyIco[] = { '\x00', '\x00', '\x01', '\x00' };
561 const char emptyGif[] = "GIFVER";
562
563 test_invalid_stream(r, nonSupportedStream, sizeof(nonSupportedStream));
564 test_invalid_stream(r, emptyPng, sizeof(emptyPng));
565 test_invalid_stream(r, emptyJpeg, sizeof(emptyJpeg));
566 test_invalid_stream(r, emptyWebp, sizeof(emptyWebp));
567 test_invalid_stream(r, emptyBmp, sizeof(emptyBmp));
568 test_invalid_stream(r, emptyIco, sizeof(emptyIco));
569 test_invalid_stream(r, emptyGif, sizeof(emptyGif));
570}
msarette16b04a2015-04-15 07:32:19 -0700571
scroggo2c3b2182015-10-09 08:40:59 -0700572DEF_TEST(Codec_null, r) {
scroggobed1ed62016-02-11 10:24:55 -0800573 // Attempting to create an SkCodec or an SkAndroidCodec with null should not
scroggo2c3b2182015-10-09 08:40:59 -0700574 // crash.
Mike Reedede7bac2017-07-23 15:30:02 -0400575 REPORTER_ASSERT(r, !SkCodec::MakeFromStream(nullptr));
576 REPORTER_ASSERT(r, !SkAndroidCodec::MakeFromStream(nullptr));
scroggo2c3b2182015-10-09 08:40:59 -0700577}
578
msarette16b04a2015-04-15 07:32:19 -0700579static void test_dimensions(skiatest::Reporter* r, const char path[]) {
580 // Create the codec from the resource file
Ben Wagner145dbcd2016-11-03 14:40:50 -0400581 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
msarette16b04a2015-04-15 07:32:19 -0700582 if (!stream) {
msarette16b04a2015-04-15 07:32:19 -0700583 return;
584 }
Mike Reedede7bac2017-07-23 15:30:02 -0400585 std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(std::move(stream)));
msarette16b04a2015-04-15 07:32:19 -0700586 if (!codec) {
587 ERRORF(r, "Unable to create codec '%s'", path);
588 return;
589 }
590
591 // Check that the decode is successful for a variety of scales
scroggo501b7342015-11-03 07:55:11 -0800592 for (int sampleSize = 1; sampleSize < 32; sampleSize++) {
msarette16b04a2015-04-15 07:32:19 -0700593 // Scale the output dimensions
msarett3d9d7a72015-10-21 10:27:10 -0700594 SkISize scaledDims = codec->getSampledDimensions(sampleSize);
msarettb32758a2015-08-18 13:22:46 -0700595 SkImageInfo scaledInfo = codec->getInfo()
Brian Salomon9241a6d2019-10-03 13:26:54 -0400596 .makeDimensions(scaledDims)
msarettb32758a2015-08-18 13:22:46 -0700597 .makeColorType(kN32_SkColorType);
msarette16b04a2015-04-15 07:32:19 -0700598
599 // Set up for the decode
600 size_t rowBytes = scaledDims.width() * sizeof(SkPMColor);
Mike Reedf0ffb892017-10-03 14:47:21 -0400601 size_t totalBytes = scaledInfo.computeByteSize(rowBytes);
msarette16b04a2015-04-15 07:32:19 -0700602 SkAutoTMalloc<SkPMColor> pixels(totalBytes);
603
msarett3d9d7a72015-10-21 10:27:10 -0700604 SkAndroidCodec::AndroidOptions options;
605 options.fSampleSize = sampleSize;
scroggoeb602a52015-07-09 08:16:03 -0700606 SkCodec::Result result =
msarett3d9d7a72015-10-21 10:27:10 -0700607 codec->getAndroidPixels(scaledInfo, pixels.get(), rowBytes, &options);
scroggoeb602a52015-07-09 08:16:03 -0700608 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
msarette16b04a2015-04-15 07:32:19 -0700609 }
610}
611
612// Ensure that onGetScaledDimensions returns valid image dimensions to use for decodes
613DEF_TEST(Codec_Dimensions, r) {
614 // JPG
Hal Canaryc465d132017-12-08 10:21:31 -0500615 test_dimensions(r, "images/CMYK.jpg");
616 test_dimensions(r, "images/color_wheel.jpg");
617 test_dimensions(r, "images/grayscale.jpg");
618 test_dimensions(r, "images/mandrill_512_q075.jpg");
619 test_dimensions(r, "images/randPixels.jpg");
msarettb32758a2015-08-18 13:22:46 -0700620
621 // Decoding small images with very large scaling factors is a potential
622 // source of bugs and crashes. We disable these tests in Gold because
623 // tiny images are not very useful to look at.
624 // Here we make sure that we do not crash or access illegal memory when
625 // performing scaled decodes on small images.
Hal Canaryc465d132017-12-08 10:21:31 -0500626 test_dimensions(r, "images/1x1.png");
627 test_dimensions(r, "images/2x2.png");
628 test_dimensions(r, "images/3x3.png");
629 test_dimensions(r, "images/3x1.png");
630 test_dimensions(r, "images/1x1.png");
631 test_dimensions(r, "images/16x1.png");
632 test_dimensions(r, "images/1x16.png");
633 test_dimensions(r, "images/mandrill_16.png");
msarettb32758a2015-08-18 13:22:46 -0700634
yujieqin916de9f2016-01-25 08:26:16 -0800635 // RAW
yujieqinf236ee42016-02-29 07:14:42 -0800636// Disable RAW tests for Win32.
637#if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32))
Hal Canaryc465d132017-12-08 10:21:31 -0500638 test_dimensions(r, "images/sample_1mp.dng");
639 test_dimensions(r, "images/sample_1mp_rotated.dng");
640 test_dimensions(r, "images/dng_with_preview.dng");
msarett8e49ca32016-01-25 13:10:58 -0800641#endif
msarette16b04a2015-04-15 07:32:19 -0700642}
643
msarettd0375bc2015-08-12 08:08:56 -0700644static void test_invalid(skiatest::Reporter* r, const char path[]) {
Leon Scroggins IIIfee7cba2018-02-13 16:41:03 -0500645 auto data = GetResourceAsData(path);
646 if (!data) {
Leon Scroggins IIIce6d93a2018-02-15 09:25:11 -0500647 ERRORF(r, "Failed to get resource %s", path);
msarett4b17fa32015-04-23 08:53:39 -0700648 return;
649 }
Leon Scroggins IIIfee7cba2018-02-13 16:41:03 -0500650
651 REPORTER_ASSERT(r, !SkCodec::MakeFromData(data));
msarett4b17fa32015-04-23 08:53:39 -0700652}
msarette16b04a2015-04-15 07:32:19 -0700653
msarett4b17fa32015-04-23 08:53:39 -0700654DEF_TEST(Codec_Empty, r) {
Leon Scroggins IIIfee7cba2018-02-13 16:41:03 -0500655 if (GetResourcePath().isEmpty()) {
656 return;
657 }
658
msarett4b17fa32015-04-23 08:53:39 -0700659 // Test images that should not be able to create a codec
msarettd0375bc2015-08-12 08:08:56 -0700660 test_invalid(r, "empty_images/zero-dims.gif");
661 test_invalid(r, "empty_images/zero-embedded.ico");
662 test_invalid(r, "empty_images/zero-width.bmp");
663 test_invalid(r, "empty_images/zero-height.bmp");
664 test_invalid(r, "empty_images/zero-width.jpg");
665 test_invalid(r, "empty_images/zero-height.jpg");
666 test_invalid(r, "empty_images/zero-width.png");
667 test_invalid(r, "empty_images/zero-height.png");
668 test_invalid(r, "empty_images/zero-width.wbmp");
669 test_invalid(r, "empty_images/zero-height.wbmp");
670 // This image is an ico with an embedded mask-bmp. This is illegal.
671 test_invalid(r, "invalid_images/mask-bmp-ico.ico");
Matt Sarett5c496172017-02-07 17:01:16 -0500672 // It is illegal for a webp frame to not be fully contained by the canvas.
673 test_invalid(r, "invalid_images/invalid-offset.webp");
Leon Scroggins IIId87fbee2016-12-02 16:47:53 -0500674#if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32))
675 test_invalid(r, "empty_images/zero_height.tiff");
676#endif
Leon Scroggins IIIfc4ee222017-07-14 11:48:52 -0400677 test_invalid(r, "invalid_images/b37623797.ico");
Leon Scroggins IIIfee7cba2018-02-13 16:41:03 -0500678 test_invalid(r, "invalid_images/osfuzz6295.webp");
Leon Scroggins IIIce6d93a2018-02-15 09:25:11 -0500679 test_invalid(r, "invalid_images/osfuzz6288.bmp");
Leon Scroggins III31476b72018-02-22 16:09:33 -0500680 test_invalid(r, "invalid_images/ossfuzz6347");
msarett4b17fa32015-04-23 08:53:39 -0700681}
msarett99f567e2015-08-05 12:58:26 -0700682
scroggo8e6c7ad2016-09-16 08:20:38 -0700683#ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
684
685#ifndef SK_PNG_DISABLE_TESTS // reading chunks does not work properly with older versions.
686 // It does not appear that anyone in Google3 is reading chunks.
687
scroggocf98fa92015-11-23 08:14:40 -0800688static void codex_test_write_fn(png_structp png_ptr, png_bytep data, png_size_t len) {
689 SkWStream* sk_stream = (SkWStream*)png_get_io_ptr(png_ptr);
690 if (!sk_stream->write(data, len)) {
691 png_error(png_ptr, "sk_write_fn Error!");
692 }
693}
694
scroggocf98fa92015-11-23 08:14:40 -0800695DEF_TEST(Codec_pngChunkReader, r) {
696 // Create a dummy bitmap. Use unpremul RGBA for libpng.
697 SkBitmap bm;
698 const int w = 1;
699 const int h = 1;
700 const SkImageInfo bmInfo = SkImageInfo::Make(w, h, kRGBA_8888_SkColorType,
701 kUnpremul_SkAlphaType);
702 bm.setInfo(bmInfo);
703 bm.allocPixels();
704 bm.eraseColor(SK_ColorBLUE);
Hal Canary0f2f5222019-04-03 10:13:45 -0400705 SkMD5::Digest goodDigest = md5(bm);
scroggocf98fa92015-11-23 08:14:40 -0800706
707 // Write to a png file.
708 png_structp png = png_create_write_struct(PNG_LIBPNG_VER_STRING, nullptr, nullptr, nullptr);
709 REPORTER_ASSERT(r, png);
710 if (!png) {
711 return;
712 }
713
714 png_infop info = png_create_info_struct(png);
715 REPORTER_ASSERT(r, info);
716 if (!info) {
717 png_destroy_write_struct(&png, nullptr);
718 return;
719 }
720
721 if (setjmp(png_jmpbuf(png))) {
722 ERRORF(r, "failed writing png");
723 png_destroy_write_struct(&png, &info);
724 return;
725 }
726
727 SkDynamicMemoryWStream wStream;
728 png_set_write_fn(png, (void*) (&wStream), codex_test_write_fn, nullptr);
729
730 png_set_IHDR(png, info, (png_uint_32)w, (png_uint_32)h, 8,
731 PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE,
732 PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
733
734 // Create some chunks that match the Android framework's use.
735 static png_unknown_chunk gUnknowns[] = {
msarett133eaaa2016-01-07 11:03:25 -0800736 { "npOl", (png_byte*)"outline", sizeof("outline"), PNG_HAVE_IHDR },
737 { "npLb", (png_byte*)"layoutBounds", sizeof("layoutBounds"), PNG_HAVE_IHDR },
738 { "npTc", (png_byte*)"ninePatchData", sizeof("ninePatchData"), PNG_HAVE_IHDR },
scroggocf98fa92015-11-23 08:14:40 -0800739 };
740
741 png_set_keep_unknown_chunks(png, PNG_HANDLE_CHUNK_ALWAYS, (png_byte*)"npOl\0npLb\0npTc\0", 3);
742 png_set_unknown_chunks(png, info, gUnknowns, SK_ARRAY_COUNT(gUnknowns));
743#if PNG_LIBPNG_VER < 10600
744 /* Deal with unknown chunk location bug in 1.5.x and earlier */
msarett133eaaa2016-01-07 11:03:25 -0800745 png_set_unknown_chunk_location(png, info, 0, PNG_HAVE_IHDR);
746 png_set_unknown_chunk_location(png, info, 1, PNG_HAVE_IHDR);
scroggocf98fa92015-11-23 08:14:40 -0800747#endif
748
749 png_write_info(png, info);
750
751 for (int j = 0; j < h; j++) {
752 png_bytep row = (png_bytep)(bm.getAddr(0, j));
753 png_write_rows(png, &row, 1);
754 }
755 png_write_end(png, info);
756 png_destroy_write_struct(&png, &info);
757
758 class ChunkReader : public SkPngChunkReader {
759 public:
760 ChunkReader(skiatest::Reporter* r)
761 : fReporter(r)
762 {
763 this->reset();
764 }
765
766 bool readChunk(const char tag[], const void* data, size_t length) override {
767 for (size_t i = 0; i < SK_ARRAY_COUNT(gUnknowns); ++i) {
768 if (!strcmp(tag, (const char*) gUnknowns[i].name)) {
769 // Tag matches. This should have been the first time we see it.
770 REPORTER_ASSERT(fReporter, !fSeen[i]);
771 fSeen[i] = true;
772
773 // Data and length should match
774 REPORTER_ASSERT(fReporter, length == gUnknowns[i].size);
775 REPORTER_ASSERT(fReporter, !strcmp((const char*) data,
776 (const char*) gUnknowns[i].data));
777 return true;
778 }
779 }
780 ERRORF(fReporter, "Saw an unexpected unknown chunk.");
781 return true;
782 }
783
784 bool allHaveBeenSeen() {
785 bool ret = true;
786 for (auto seen : fSeen) {
787 ret &= seen;
788 }
789 return ret;
790 }
791
792 void reset() {
793 sk_bzero(fSeen, sizeof(fSeen));
794 }
795
796 private:
797 skiatest::Reporter* fReporter; // Unowned
798 bool fSeen[3];
799 };
800
801 ChunkReader chunkReader(r);
802
803 // Now read the file with SkCodec.
Mike Reedede7bac2017-07-23 15:30:02 -0400804 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(wStream.detachAsData(), &chunkReader));
scroggocf98fa92015-11-23 08:14:40 -0800805 REPORTER_ASSERT(r, codec);
806 if (!codec) {
807 return;
808 }
809
810 // Now compare to the original.
811 SkBitmap decodedBm;
812 decodedBm.setInfo(codec->getInfo());
813 decodedBm.allocPixels();
814 SkCodec::Result result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(),
815 decodedBm.rowBytes());
816 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
817
818 if (decodedBm.colorType() != bm.colorType()) {
819 SkBitmap tmp;
Mike Kleinea3f0142019-03-20 11:12:10 -0500820 bool success = ToolUtils::copy_to(&tmp, bm.colorType(), decodedBm);
scroggocf98fa92015-11-23 08:14:40 -0800821 REPORTER_ASSERT(r, success);
822 if (!success) {
823 return;
824 }
825
826 tmp.swap(decodedBm);
827 }
828
829 compare_to_good_digest(r, goodDigest, decodedBm);
830 REPORTER_ASSERT(r, chunkReader.allHaveBeenSeen());
831
832 // Decoding again will read the chunks again.
833 chunkReader.reset();
834 REPORTER_ASSERT(r, !chunkReader.allHaveBeenSeen());
835 result = codec->getPixels(codec->getInfo(), decodedBm.getPixels(), decodedBm.rowBytes());
836 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
837 REPORTER_ASSERT(r, chunkReader.allHaveBeenSeen());
838}
scroggo8e6c7ad2016-09-16 08:20:38 -0700839#endif // SK_PNG_DISABLE_TESTS
scroggocf98fa92015-11-23 08:14:40 -0800840#endif // PNG_READ_UNKNOWN_CHUNKS_SUPPORTED
scroggob9a1e342015-11-30 06:25:31 -0800841
scroggodb30be22015-12-08 18:54:13 -0800842// Stream that can only peek up to a limit
843class LimitedPeekingMemStream : public SkStream {
844public:
reed42943c82016-09-12 12:01:44 -0700845 LimitedPeekingMemStream(sk_sp<SkData> data, size_t limit)
846 : fStream(std::move(data))
scroggodb30be22015-12-08 18:54:13 -0800847 , fLimit(limit) {}
848
849 size_t peek(void* buf, size_t bytes) const override {
850 return fStream.peek(buf, SkTMin(bytes, fLimit));
851 }
852 size_t read(void* buf, size_t bytes) override {
853 return fStream.read(buf, bytes);
854 }
855 bool rewind() override {
856 return fStream.rewind();
857 }
858 bool isAtEnd() const override {
msarettff2a6c82016-09-07 11:23:28 -0700859 return fStream.isAtEnd();
scroggodb30be22015-12-08 18:54:13 -0800860 }
861private:
862 SkMemoryStream fStream;
863 const size_t fLimit;
864};
865
yujieqinf236ee42016-02-29 07:14:42 -0800866// Disable RAW tests for Win32.
867#if defined(SK_CODEC_DECODES_RAW) && (!defined(_WIN32))
yujieqin9c7a8a42016-02-05 08:21:19 -0800868// Test that the RawCodec works also for not asset stream. This will test the code path using
869// SkRawBufferedStream instead of SkRawAssetStream.
yujieqin9c7a8a42016-02-05 08:21:19 -0800870DEF_TEST(Codec_raw_notseekable, r) {
Mike Reed0933bc92017-12-09 01:27:41 +0000871 constexpr char path[] = "images/dng_with_preview.dng";
872 sk_sp<SkData> data(GetResourceAsData(path));
yujieqin9c7a8a42016-02-05 08:21:19 -0800873 if (!data) {
874 SkDebugf("Missing resource '%s'\n", path);
875 return;
876 }
877
Mike Reedede7bac2017-07-23 15:30:02 -0400878 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500879 std::make_unique<NotAssetMemStream>(std::move(data))));
yujieqin9c7a8a42016-02-05 08:21:19 -0800880 REPORTER_ASSERT(r, codec);
881
882 test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr);
883}
884#endif
885
scroggodb30be22015-12-08 18:54:13 -0800886// Test that even if webp_parse_header fails to peek enough, it will fall back to read()
887// + rewind() and succeed.
888DEF_TEST(Codec_webp_peek, r) {
Mike Reed0933bc92017-12-09 01:27:41 +0000889 constexpr char path[] = "images/baby_tux.webp";
890 auto data = GetResourceAsData(path);
scroggodb30be22015-12-08 18:54:13 -0800891 if (!data) {
892 SkDebugf("Missing resource '%s'\n", path);
893 return;
894 }
895
896 // The limit is less than webp needs to peek or read.
Mike Reedede7bac2017-07-23 15:30:02 -0400897 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500898 std::make_unique<LimitedPeekingMemStream>(data, 25)));
scroggodb30be22015-12-08 18:54:13 -0800899 REPORTER_ASSERT(r, codec);
900
scroggo7b5e5532016-02-04 06:14:24 -0800901 test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr);
scroggodb30be22015-12-08 18:54:13 -0800902
903 // Similarly, a stream which does not peek should still succeed.
Mike Kleinf46d5ca2019-12-11 10:45:01 -0500904 codec = SkCodec::MakeFromStream(std::make_unique<LimitedPeekingMemStream>(data, 0));
scroggodb30be22015-12-08 18:54:13 -0800905 REPORTER_ASSERT(r, codec);
906
scroggo7b5e5532016-02-04 06:14:24 -0800907 test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr);
scroggodb30be22015-12-08 18:54:13 -0800908}
909
msarett7f7ec202016-03-01 12:12:27 -0800910// SkCodec's wbmp decoder was initially unnecessarily restrictive.
911// It required the second byte to be zero. The wbmp specification allows
912// a couple of bits to be 1 (so long as they do not overlap with 0x9F).
913// Test that SkCodec now supports an image with these bits set.
Leon Scroggins III83926342016-12-06 10:58:02 -0500914DEF_TEST(Codec_wbmp_restrictive, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500915 const char* path = "images/mandrill.wbmp";
Ben Wagner145dbcd2016-11-03 14:40:50 -0400916 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
scroggob9a1e342015-11-30 06:25:31 -0800917 if (!stream) {
scroggob9a1e342015-11-30 06:25:31 -0800918 return;
919 }
920
921 // Modify the stream to contain a second byte with some bits set.
Ben Wagner145dbcd2016-11-03 14:40:50 -0400922 auto data = SkCopyStreamToData(stream.get());
scroggob9a1e342015-11-30 06:25:31 -0800923 uint8_t* writeableData = static_cast<uint8_t*>(data->writable_data());
924 writeableData[1] = static_cast<uint8_t>(~0x9F);
925
msarett7f7ec202016-03-01 12:12:27 -0800926 // SkCodec should support this.
Mike Reedede7bac2017-07-23 15:30:02 -0400927 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(data));
scroggob9a1e342015-11-30 06:25:31 -0800928 REPORTER_ASSERT(r, codec);
929 if (!codec) {
930 return;
931 }
scroggo7b5e5532016-02-04 06:14:24 -0800932 test_info(r, codec.get(), codec->getInfo(), SkCodec::kSuccess, nullptr);
scroggob9a1e342015-11-30 06:25:31 -0800933}
scroggodb30be22015-12-08 18:54:13 -0800934
935// wbmp images have a header that can be arbitrarily large, depending on the
936// size of the image. We cap the size at 65535, meaning we only need to look at
937// 8 bytes to determine whether we can read the image. This is important
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400938// because SkCodec only passes a limited number of bytes to SkWbmpCodec to
939// determine whether the image is a wbmp.
scroggodb30be22015-12-08 18:54:13 -0800940DEF_TEST(Codec_wbmp_max_size, r) {
941 const unsigned char maxSizeWbmp[] = { 0x00, 0x00, // Header
942 0x83, 0xFF, 0x7F, // W: 65535
943 0x83, 0xFF, 0x7F }; // H: 65535
Ben Wagner145dbcd2016-11-03 14:40:50 -0400944 std::unique_ptr<SkStream> stream(new SkMemoryStream(maxSizeWbmp, sizeof(maxSizeWbmp), false));
Mike Reedede7bac2017-07-23 15:30:02 -0400945 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
scroggodb30be22015-12-08 18:54:13 -0800946
947 REPORTER_ASSERT(r, codec);
948 if (!codec) return;
949
950 REPORTER_ASSERT(r, codec->getInfo().width() == 65535);
951 REPORTER_ASSERT(r, codec->getInfo().height() == 65535);
952
953 // Now test an image which is too big. Any image with a larger header (i.e.
954 // has bigger width/height) is also too big.
955 const unsigned char tooBigWbmp[] = { 0x00, 0x00, // Header
956 0x84, 0x80, 0x00, // W: 65536
957 0x84, 0x80, 0x00 }; // H: 65536
958 stream.reset(new SkMemoryStream(tooBigWbmp, sizeof(tooBigWbmp), false));
Mike Reedede7bac2017-07-23 15:30:02 -0400959 codec = SkCodec::MakeFromStream(std::move(stream));
scroggodb30be22015-12-08 18:54:13 -0800960
961 REPORTER_ASSERT(r, !codec);
962}
msarett2812f032016-07-18 15:56:08 -0700963
964DEF_TEST(Codec_jpeg_rewind, r) {
Hal Canaryc465d132017-12-08 10:21:31 -0500965 const char* path = "images/mandrill_512_q075.jpg";
Leon Scroggins III42886572017-01-27 13:16:28 -0500966 sk_sp<SkData> data(GetResourceAsData(path));
967 if (!data) {
msarett2812f032016-07-18 15:56:08 -0700968 return;
969 }
Leon Scroggins III42886572017-01-27 13:16:28 -0500970
971 data = SkData::MakeSubset(data.get(), 0, data->size() / 2);
Mike Reedede7bac2017-07-23 15:30:02 -0400972 std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromData(data));
msarett2812f032016-07-18 15:56:08 -0700973 if (!codec) {
974 ERRORF(r, "Unable to create codec '%s'.", path);
975 return;
976 }
977
978 const int width = codec->getInfo().width();
979 const int height = codec->getInfo().height();
980 size_t rowBytes = sizeof(SkPMColor) * width;
981 SkAutoMalloc pixelStorage(height * rowBytes);
982
983 // Perform a sampled decode.
984 SkAndroidCodec::AndroidOptions opts;
985 opts.fSampleSize = 12;
Leon Scroggins III42886572017-01-27 13:16:28 -0500986 auto sampledInfo = codec->getInfo().makeWH(width / 12, height / 12);
987 auto result = codec->getAndroidPixels(sampledInfo, pixelStorage.get(), rowBytes, &opts);
988 REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result);
msarett2812f032016-07-18 15:56:08 -0700989
990 // Rewind the codec and perform a full image decode.
Matt Sarett74b16ed2017-01-25 11:58:11 -0500991 result = codec->getPixels(codec->getInfo(), pixelStorage.get(), rowBytes);
Leon Scroggins III42886572017-01-27 13:16:28 -0500992 REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result);
Matt Sarett74b16ed2017-01-25 11:58:11 -0500993
994 // Now perform a subset decode.
995 {
996 opts.fSampleSize = 1;
997 SkIRect subset = SkIRect::MakeWH(100, 100);
998 opts.fSubset = &subset;
999 result = codec->getAndroidPixels(codec->getInfo().makeWH(100, 100), pixelStorage.get(),
1000 rowBytes, &opts);
Leon Scroggins III42886572017-01-27 13:16:28 -05001001 // Though we only have half the data, it is enough to decode this subset.
Matt Sarett74b16ed2017-01-25 11:58:11 -05001002 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
1003 }
1004
1005 // Perform another full image decode. ASAN will detect if we look at the subset when it is
1006 // out of scope. This would happen if we depend on the old state in the codec.
Leon Scroggins III42886572017-01-27 13:16:28 -05001007 // This tests two layers of bugs: both SkJpegCodec::readRows and SkCodec::fillIncompleteImage
1008 // used to look at the old subset.
Matt Sarett74b16ed2017-01-25 11:58:11 -05001009 opts.fSubset = nullptr;
1010 result = codec->getAndroidPixels(codec->getInfo(), pixelStorage.get(), rowBytes, &opts);
Leon Scroggins III42886572017-01-27 13:16:28 -05001011 REPORTER_ASSERT(r, SkCodec::kIncompleteInput == result);
msarett2812f032016-07-18 15:56:08 -07001012}
msarett549ca322016-08-17 08:54:08 -07001013
msarett35bb74b2016-08-22 07:41:28 -07001014static void check_color_xform(skiatest::Reporter* r, const char* path) {
Mike Reedede7bac2017-07-23 15:30:02 -04001015 std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(GetResourceAsStream(path)));
msarett35bb74b2016-08-22 07:41:28 -07001016
1017 SkAndroidCodec::AndroidOptions opts;
1018 opts.fSampleSize = 3;
1019 const int subsetWidth = codec->getInfo().width() / 2;
1020 const int subsetHeight = codec->getInfo().height() / 2;
1021 SkIRect subset = SkIRect::MakeWH(subsetWidth, subsetHeight);
1022 opts.fSubset = &subset;
1023
1024 const int dstWidth = subsetWidth / opts.fSampleSize;
1025 const int dstHeight = subsetHeight / opts.fSampleSize;
Brian Osman82ebe042019-01-04 17:03:00 -05001026 auto colorSpace = SkColorSpace::MakeRGB(SkNamedTransferFn::k2Dot2, SkNamedGamut::kAdobeRGB);
msarett35bb74b2016-08-22 07:41:28 -07001027 SkImageInfo dstInfo = codec->getInfo().makeWH(dstWidth, dstHeight)
1028 .makeColorType(kN32_SkColorType)
1029 .makeColorSpace(colorSpace);
1030
1031 size_t rowBytes = dstInfo.minRowBytes();
Mike Reedf0ffb892017-10-03 14:47:21 -04001032 SkAutoMalloc pixelStorage(dstInfo.computeByteSize(rowBytes));
msarett35bb74b2016-08-22 07:41:28 -07001033 SkCodec::Result result = codec->getAndroidPixels(dstInfo, pixelStorage.get(), rowBytes, &opts);
1034 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
1035}
1036
1037DEF_TEST(Codec_ColorXform, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001038 check_color_xform(r, "images/mandrill_512_q075.jpg");
1039 check_color_xform(r, "images/mandrill_512.png");
msarett35bb74b2016-08-22 07:41:28 -07001040}
1041
msarettf17b71f2016-09-12 14:30:03 -07001042static bool color_type_match(SkColorType origColorType, SkColorType codecColorType) {
1043 switch (origColorType) {
1044 case kRGBA_8888_SkColorType:
1045 case kBGRA_8888_SkColorType:
1046 return kRGBA_8888_SkColorType == codecColorType ||
1047 kBGRA_8888_SkColorType == codecColorType;
1048 default:
1049 return origColorType == codecColorType;
1050 }
1051}
1052
1053static bool alpha_type_match(SkAlphaType origAlphaType, SkAlphaType codecAlphaType) {
1054 switch (origAlphaType) {
1055 case kUnpremul_SkAlphaType:
1056 case kPremul_SkAlphaType:
1057 return kUnpremul_SkAlphaType == codecAlphaType ||
1058 kPremul_SkAlphaType == codecAlphaType;
1059 default:
1060 return origAlphaType == codecAlphaType;
1061 }
1062}
1063
1064static void check_round_trip(skiatest::Reporter* r, SkCodec* origCodec, const SkImageInfo& info) {
1065 SkBitmap bm1;
Leon Scroggins571b30f2017-07-11 17:35:31 +00001066 bm1.allocPixels(info);
1067 SkCodec::Result result = origCodec->getPixels(info, bm1.getPixels(), bm1.rowBytes());
msarettf17b71f2016-09-12 14:30:03 -07001068 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
msarett9b09cd82016-08-29 14:47:49 -07001069
1070 // Encode the image to png.
Leon Scroggins III0098ccb2018-09-24 15:24:31 -04001071 auto data = SkEncodeBitmap(bm1, SkEncodedImageFormat::kPNG, 100);
msarett9b09cd82016-08-29 14:47:49 -07001072
Mike Reedede7bac2017-07-23 15:30:02 -04001073 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(data));
msarettf17b71f2016-09-12 14:30:03 -07001074 REPORTER_ASSERT(r, color_type_match(info.colorType(), codec->getInfo().colorType()));
1075 REPORTER_ASSERT(r, alpha_type_match(info.alphaType(), codec->getInfo().alphaType()));
msarett9b09cd82016-08-29 14:47:49 -07001076
1077 SkBitmap bm2;
Leon Scroggins571b30f2017-07-11 17:35:31 +00001078 bm2.allocPixels(info);
1079 result = codec->getPixels(info, bm2.getPixels(), bm2.rowBytes());
msarett9b09cd82016-08-29 14:47:49 -07001080 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
1081
Hal Canary0f2f5222019-04-03 10:13:45 -04001082 REPORTER_ASSERT(r, md5(bm1) == md5(bm2));
msarett9b09cd82016-08-29 14:47:49 -07001083}
1084
1085DEF_TEST(Codec_PngRoundTrip, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001086 auto codec = SkCodec::MakeFromStream(GetResourceAsStream("images/mandrill_512_q075.jpg"));
msarett549ca322016-08-17 08:54:08 -07001087
msarettf17b71f2016-09-12 14:30:03 -07001088 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 Canaryc465d132017-12-08 10:21:31 -05001096 codec = SkCodec::MakeFromStream(GetResourceAsStream("images/grayscale.jpg"));
msarettf17b71f2016-09-12 14:30:03 -07001097 check_round_trip(r, codec.get(), codec->getInfo());
1098
Hal Canaryc465d132017-12-08 10:21:31 -05001099 codec = SkCodec::MakeFromStream(GetResourceAsStream("images/yellow_rose.png"));
msarettf17b71f2016-09-12 14:30:03 -07001100
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 Canaryc465d132017-12-08 10:21:31 -05001117 codec = SkCodec::MakeFromStream(GetResourceAsStream("images/index8.png"));
msarettf17b71f2016-09-12 14:30:03 -07001118
1119 for (SkAlphaType alphaType : alphaTypes) {
1120 SkImageInfo newInfo = codec->getInfo().makeAlphaType(alphaType)
1121 .makeColorSpace(nullptr);
1122 check_round_trip(r, codec.get(), newInfo);
1123 }
msarett549ca322016-08-17 08:54:08 -07001124}
msarett2ecc35f2016-09-08 11:55:16 -07001125
1126static void test_conversion_possible(skiatest::Reporter* r, const char* path,
scroggo8e6c7ad2016-09-16 08:20:38 -07001127 bool supportsScanlineDecoder,
1128 bool supportsIncrementalDecoder) {
Ben Wagner145dbcd2016-11-03 14:40:50 -04001129 std::unique_ptr<SkStream> stream(GetResourceAsStream(path));
Leon Scroggins IIIc9942a12017-01-30 09:59:28 -05001130 if (!stream) {
1131 return;
1132 }
1133
Mike Reedede7bac2017-07-23 15:30:02 -04001134 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
Leon Scroggins IIIc9942a12017-01-30 09:59:28 -05001135 if (!codec) {
1136 ERRORF(r, "failed to create a codec for %s", path);
1137 return;
1138 }
1139
msarett2ecc35f2016-09-08 11:55:16 -07001140 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 Kleince4cf722018-05-10 11:29:15 -04001145 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001146
1147 result = codec->startScanlineDecode(infoF16);
1148 if (supportsScanlineDecoder) {
Mike Kleince4cf722018-05-10 11:29:15 -04001149 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001150 } else {
Leon Scroggins III07418182017-08-15 12:24:02 -04001151 REPORTER_ASSERT(r, SkCodec::kUnimplemented == result
Mike Kleince4cf722018-05-10 11:29:15 -04001152 || SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001153 }
1154
1155 result = codec->startIncrementalDecode(infoF16, bm.getPixels(), bm.rowBytes());
1156 if (supportsIncrementalDecoder) {
Mike Kleince4cf722018-05-10 11:29:15 -04001157 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001158 } else {
Leon Scroggins III07418182017-08-15 12:24:02 -04001159 REPORTER_ASSERT(r, SkCodec::kUnimplemented == result
Mike Kleince4cf722018-05-10 11:29:15 -04001160 || SkCodec::kSuccess == result);
msarett2ecc35f2016-09-08 11:55:16 -07001161 }
1162
Brian Osman36703d92017-12-12 14:09:31 -05001163 infoF16 = infoF16.makeColorSpace(infoF16.colorSpace()->makeLinearGamma());
msarett2ecc35f2016-09-08 11:55:16 -07001164 result = codec->getPixels(infoF16, bm.getPixels(), bm.rowBytes());
1165 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001166 result = codec->startScanlineDecode(infoF16);
1167 if (supportsScanlineDecoder) {
msarett2ecc35f2016-09-08 11:55:16 -07001168 REPORTER_ASSERT(r, SkCodec::kSuccess == result);
scroggo8e6c7ad2016-09-16 08:20:38 -07001169 } 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);
msarett2ecc35f2016-09-08 11:55:16 -07001178 }
1179}
1180
1181DEF_TEST(Codec_F16ConversionPossible, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001182 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);
scroggo8e6c7ad2016-09-16 08:20:38 -07001185}
1186
scroggo19b91532016-10-24 09:03:26 -07001187static 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 Scroggins571b30f2017-07-11 17:35:31 +00001195 bm.getPixels(), bm.rowBytes(), &opts));
scroggo19b91532016-10-24 09:03:26 -07001196}
1197
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -04001198// 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.
scroggo19b91532016-10-24 09:03:26 -07001200DEF_TEST(Codec_skipFullParse, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001201 auto path = "images/test640x479.gif";
Mike Reed71f867c2017-07-23 13:14:10 -04001202 auto streamObj = GetResourceAsStream(path);
1203 if (!streamObj) {
scroggo19b91532016-10-24 09:03:26 -07001204 return;
1205 }
Mike Reed71f867c2017-07-23 13:14:10 -04001206 SkStream* stream = streamObj.get();
scroggo19b91532016-10-24 09:03:26 -07001207
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 Reedede7bac2017-07-23 15:30:02 -04001211 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(streamObj)));
scroggo19b91532016-10-24 09:03:26 -07001212 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 III1f6af6b2017-06-12 16:41:09 -04001227 // There is more data in the stream.
scroggo19b91532016-10-24 09:03:26 -07001228 auto frameInfo = codec->getFrameInfo();
1229 REPORTER_ASSERT(r, frameInfo.size() == 4);
Leon Scroggins III1f6af6b2017-06-12 16:41:09 -04001230 REPORTER_ASSERT(r, stream->getPosition() > positionAfterFirstFrame);
scroggo19b91532016-10-24 09:03:26 -07001231}
1232
scroggo8e6c7ad2016-09-16 08:20:38 -07001233// Only rewinds up to a limit.
1234class LimitedRewindingStream : public SkStream {
1235public:
Mike Reed71f867c2017-07-23 13:14:10 -04001236 static std::unique_ptr<SkStream> Make(const char path[], size_t limit) {
1237 auto stream = GetResourceAsStream(path);
scroggo8e6c7ad2016-09-16 08:20:38 -07001238 if (!stream) {
1239 return nullptr;
1240 }
Mike Reed71f867c2017-07-23 13:14:10 -04001241 return std::unique_ptr<SkStream>(new LimitedRewindingStream(std::move(stream), limit));
scroggo8e6c7ad2016-09-16 08:20:38 -07001242 }
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
1263private:
Ben Wagner145dbcd2016-11-03 14:40:50 -04001264 std::unique_ptr<SkStream> fStream;
1265 const size_t fLimit;
1266 size_t fPosition;
scroggo8e6c7ad2016-09-16 08:20:38 -07001267
Mike Reed71f867c2017-07-23 13:14:10 -04001268 LimitedRewindingStream(std::unique_ptr<SkStream> stream, size_t limit)
1269 : fStream(std::move(stream))
scroggo8e6c7ad2016-09-16 08:20:38 -07001270 , fLimit(limit)
1271 , fPosition(0)
1272 {
1273 SkASSERT(fStream);
1274 }
1275};
1276
1277DEF_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 Canaryc465d132017-12-08 10:21:31 -05001284 "images/CMYK.jpg",
1285 "images/color_wheel.ico",
1286 "images/mandrill.wbmp",
1287 "images/randPixels.bmp",
scroggo8e6c7ad2016-09-16 08:20:38 -07001288 };
1289 for (auto file : files) {
Leon Scroggins III04be2b52017-08-17 15:13:20 -04001290 auto stream = LimitedRewindingStream::Make(file, SkCodec::MinBufferedBytesNeeded());
scroggo8e6c7ad2016-09-16 08:20:38 -07001291 if (!stream) {
1292 SkDebugf("Missing resources (%s). Set --resourcePath.\n", file);
1293 return;
1294 }
1295
Mike Reedede7bac2017-07-23 15:30:02 -04001296 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
scroggo8e6c7ad2016-09-16 08:20:38 -07001297 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 }
msarett2ecc35f2016-09-08 11:55:16 -07001318}
scroggoc46cdd42016-10-10 06:45:32 -07001319
1320// This test verifies that we fixed an assert statement that fired when reusing a png codec
1321// after scaling.
1322DEF_TEST(Codec_reusePng, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001323 std::unique_ptr<SkStream> stream(GetResourceAsStream("images/plane.png"));
scroggoc46cdd42016-10-10 06:45:32 -07001324 if (!stream) {
1325 return;
1326 }
1327
Mike Reedede7bac2017-07-23 15:30:02 -04001328 std::unique_ptr<SkAndroidCodec> codec(SkAndroidCodec::MakeFromStream(std::move(stream)));
scroggoc46cdd42016-10-10 06:45:32 -07001329 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);
Brian Salomon9241a6d2019-10-03 13:26:54 -04001337 auto info = codec->getInfo().makeDimensions(size).makeColorType(kN32_SkColorType);
scroggoc46cdd42016-10-10 06:45:32 -07001338 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}
scroggoe61b3b42016-10-10 07:17:32 -07001349
1350DEF_TEST(Codec_rowsDecoded, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001351 auto file = "images/plane_interlaced.png";
scroggoe61b3b42016-10-10 07:17:32 -07001352 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 Reedede7bac2017-07-23 15:30:02 -04001358 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromData(SkData::MakeFromStream(stream.get(), 99)));
scroggoe61b3b42016-10-10 07:17:32 -07001359 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 Sarett29121eb2016-10-17 14:32:46 -04001377
Matt Sarettd59948a2017-04-26 10:59:48 -04001378static void test_invalid_images(skiatest::Reporter* r, const char* path,
1379 SkCodec::Result expectedResult) {
Mike Reed71f867c2017-07-23 13:14:10 -04001380 auto stream = GetResourceAsStream(path);
Leon Scroggins IIIb3b24532017-01-18 12:39:07 -05001381 if (!stream) {
1382 return;
1383 }
1384
Mike Reedede7bac2017-07-23 15:30:02 -04001385 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
Leon Scroggins IIIb3b24532017-01-18 12:39:07 -05001386 REPORTER_ASSERT(r, codec);
1387
Matt Sarettd59948a2017-04-26 10:59:48 -04001388 test_info(r, codec.get(), codec->getInfo().makeColorType(kN32_SkColorType), expectedResult,
1389 nullptr);
1390}
1391
1392DEF_TEST(Codec_InvalidImages, r) {
1393 // ASAN will complain if there is an issue.
Leon Scroggins III674a1842017-07-06 12:26:09 -04001394 test_invalid_images(r, "invalid_images/skbug5887.gif", SkCodec::kErrorInInput);
Matt Sarettd59948a2017-04-26 10:59:48 -04001395 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
1400static void test_invalid_header(skiatest::Reporter* r, const char* path) {
Mike Reed0933bc92017-12-09 01:27:41 +00001401 auto data = GetResourceAsData(path);
1402 if (!data) {
1403 return;
1404 }
1405 std::unique_ptr<SkStreamAsset> stream(new SkMemoryStream(std::move(data)));
Mike Reed847068c2017-07-26 11:35:53 -04001406 if (!stream) {
Matt Sarettd59948a2017-04-26 10:59:48 -04001407 return;
1408 }
Mike Reedede7bac2017-07-23 15:30:02 -04001409 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
Matt Sarettd59948a2017-04-26 10:59:48 -04001410 REPORTER_ASSERT(r, !codec);
1411}
1412
1413DEF_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 IIIb3b24532017-01-18 12:39:07 -05001420}
1421
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001422/*
1423For the Codec_InvalidAnimated test, immediately below,
1424resources/invalid_images/skbug6046.gif is:
1425
142600000000: 4749 4638 3961 2000 0000 0000 002c ff00 GIF89a ......,..
142700000010: 7400 0600 0000 4001 0021 f904 0a00 0000 t.....@..!......
142800000020: 002c ff00 0000 ff00 7400 0606 0606 0601 .,......t.......
142900000030: 0021 f904 0000 0000 002c ff00 0000 ffcc .!.......,......
143000000040: 1b36 5266 deba 543d .6Rf..T=
1431
Leon Scroggins980d03b2019-07-11 20:47:16 +00001432It nominally contains 3 frames, but only the first one is valid. It came from a
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001433fuzzer 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
Leon Scroggins980d03b2019-07-11 20:47:16 +00001448 - lit_width = 1
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001449 - 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
Leon Scroggins980d03b2019-07-11 20:47:16 +00001470 - lit_width = 102, INVALID, GREATER THAN 8
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001471 - 0xDE precedes a 222 byte block of data, INVALIDLY TRUNCATED
1472
1473On Image Descriptor flags INVALIDITY,
1474https://www.w3.org/Graphics/GIF/spec-gif89a.txt section 20.c says that "Size of
1475Local Color Table [the low 3 bits]... should be 0 if there is no Local Color
1476Table specified [the high bit]."
1477
Leon Scroggins980d03b2019-07-11 20:47:16 +00001478On LZW literal width (also known as Minimum Code Size) INVALIDITY,
1479https://www.w3.org/Graphics/GIF/spec-gif89a.txt Appendix F says that "Normally
1480this will be the same as the number of [palette index] bits. Because of some
1481algorithmic constraints however, black & white images which have one color bit
1482must be indicated as having a code size of 2." In practice, some GIF decoders,
1483including both the old third_party/gif code and the Wuffs GIF decoder, don't
1484enforce this "at least 2" constraint. Nonetheless, any width greater than 8 is
1485invalid, as there are only 8 bits in a byte.
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001486*/
1487
Leon Scroggins III56e32092016-12-12 17:10:46 -05001488DEF_TEST(Codec_InvalidAnimated, r) {
1489 // ASAN will complain if there is an issue.
1490 auto path = "invalid_images/skbug6046.gif";
Mike Reed71f867c2017-07-23 13:14:10 -04001491 auto stream = GetResourceAsStream(path);
Leon Scroggins III56e32092016-12-12 17:10:46 -05001492 if (!stream) {
1493 return;
1494 }
1495
Mike Reedede7bac2017-07-23 15:30:02 -04001496 std::unique_ptr<SkCodec> codec(SkCodec::MakeFromStream(std::move(stream)));
Leon Scroggins III56e32092016-12-12 17:10:46 -05001497 REPORTER_ASSERT(r, codec);
1498 if (!codec) {
1499 return;
1500 }
1501
1502 const auto info = codec->getInfo().makeColorType(kN32_SkColorType);
1503 SkBitmap bm;
1504 bm.allocPixels(info);
1505
1506 auto frameInfos = codec->getFrameInfo();
1507 SkCodec::Options opts;
Leon Scroggins III249b8e32017-04-17 12:46:33 -04001508 for (int i = 0; static_cast<size_t>(i) < frameInfos.size(); i++) {
Leon Scroggins III56e32092016-12-12 17:10:46 -05001509 opts.fFrameIndex = i;
Leon Scroggins III33deb7e2017-06-07 12:31:51 -04001510 const auto reqFrame = frameInfos[i].fRequiredFrame;
Nigel Tao66bc5242018-08-22 10:56:03 +10001511 opts.fPriorFrame = reqFrame == i - 1 ? reqFrame : SkCodec::kNoFrame;
Leon Scroggins III56e32092016-12-12 17:10:46 -05001512 auto result = codec->startIncrementalDecode(info, bm.getPixels(), bm.rowBytes(), &opts);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001513
Leon Scroggins III56e32092016-12-12 17:10:46 -05001514 if (result != SkCodec::kSuccess) {
1515 ERRORF(r, "Failed to start decoding frame %i (out of %i) with error %i\n", i,
1516 frameInfos.size(), result);
1517 continue;
1518 }
1519
1520 codec->incrementalDecode();
1521 }
1522}
Matt Sarett0e032be2017-03-15 17:50:08 -04001523
Matt Sarett5df93de2017-03-22 21:52:47 +00001524static void encode_format(SkDynamicMemoryWStream* stream, const SkPixmap& pixmap,
Matt Sarettc367d032017-05-05 11:13:26 -04001525 SkEncodedImageFormat format) {
Matt Sarett5df93de2017-03-22 21:52:47 +00001526 switch (format) {
1527 case SkEncodedImageFormat::kPNG:
Brian Osmanb62f50c2018-07-12 14:44:27 -04001528 SkPngEncoder::Encode(stream, pixmap, SkPngEncoder::Options());
Matt Sarett5df93de2017-03-22 21:52:47 +00001529 break;
1530 case SkEncodedImageFormat::kJPEG:
Matt Sarett26b44df2017-05-02 16:04:56 -04001531 SkJpegEncoder::Encode(stream, pixmap, SkJpegEncoder::Options());
Matt Sarett5df93de2017-03-22 21:52:47 +00001532 break;
Matt Sarett3dbef9f2017-04-05 22:33:22 +00001533 case SkEncodedImageFormat::kWEBP:
Brian Osmanb62f50c2018-07-12 14:44:27 -04001534 SkWebpEncoder::Encode(stream, pixmap, SkWebpEncoder::Options());
Matt Sarett3dbef9f2017-04-05 22:33:22 +00001535 break;
Matt Sarett5df93de2017-03-22 21:52:47 +00001536 default:
1537 SkASSERT(false);
1538 break;
1539 }
1540}
1541
Brian Osmanb62f50c2018-07-12 14:44:27 -04001542static void test_encode_icc(skiatest::Reporter* r, SkEncodedImageFormat format) {
Matt Sarett0e032be2017-03-15 17:50:08 -04001543 // Test with sRGB color space.
1544 SkBitmap srgbBitmap;
1545 SkImageInfo srgbInfo = SkImageInfo::MakeS32(1, 1, kOpaque_SkAlphaType);
1546 srgbBitmap.allocPixels(srgbInfo);
1547 *srgbBitmap.getAddr32(0, 0) = 0;
1548 SkPixmap pixmap;
1549 srgbBitmap.peekPixels(&pixmap);
1550 SkDynamicMemoryWStream srgbBuf;
Brian Osmanb62f50c2018-07-12 14:44:27 -04001551 encode_format(&srgbBuf, pixmap, format);
Matt Sarett0e032be2017-03-15 17:50:08 -04001552 sk_sp<SkData> srgbData = srgbBuf.detachAsData();
Mike Reedede7bac2017-07-23 15:30:02 -04001553 std::unique_ptr<SkCodec> srgbCodec(SkCodec::MakeFromData(srgbData));
Mike Kleine28a6b52018-07-25 13:05:17 -04001554 REPORTER_ASSERT(r, srgbCodec->getInfo().colorSpace() == sk_srgb_singleton());
Matt Sarett0e032be2017-03-15 17:50:08 -04001555
1556 // Test with P3 color space.
1557 SkDynamicMemoryWStream p3Buf;
Mike Kleinb147ace2020-01-16 11:11:06 -06001558 sk_sp<SkColorSpace> p3 = SkColorSpace::MakeRGB(SkNamedTransferFn::kSRGB, SkNamedGamut::kDisplayP3);
Matt Sarett0e032be2017-03-15 17:50:08 -04001559 pixmap.setColorSpace(p3);
Brian Osmanb62f50c2018-07-12 14:44:27 -04001560 encode_format(&p3Buf, pixmap, format);
Matt Sarett0e032be2017-03-15 17:50:08 -04001561 sk_sp<SkData> p3Data = p3Buf.detachAsData();
Mike Reedede7bac2017-07-23 15:30:02 -04001562 std::unique_ptr<SkCodec> p3Codec(SkCodec::MakeFromData(p3Data));
Matt Sarett0e032be2017-03-15 17:50:08 -04001563 REPORTER_ASSERT(r, p3Codec->getInfo().colorSpace()->gammaCloseToSRGB());
Brian Osman82ebe042019-01-04 17:03:00 -05001564 skcms_Matrix3x3 mat0, mat1;
Matt Sarett0e032be2017-03-15 17:50:08 -04001565 bool success = p3->toXYZD50(&mat0);
1566 REPORTER_ASSERT(r, success);
1567 success = p3Codec->getInfo().colorSpace()->toXYZD50(&mat1);
1568 REPORTER_ASSERT(r, success);
1569
Brian Osman82ebe042019-01-04 17:03:00 -05001570 for (int i = 0; i < 3; i++) {
1571 for (int j = 0; j < 3; j++) {
1572 REPORTER_ASSERT(r, color_space_almost_equal(mat0.vals[i][j], mat1.vals[i][j]));
Matt Sarett0e032be2017-03-15 17:50:08 -04001573 }
1574 }
1575}
Matt Sarett5df93de2017-03-22 21:52:47 +00001576
1577DEF_TEST(Codec_EncodeICC, r) {
Brian Osmanb62f50c2018-07-12 14:44:27 -04001578 test_encode_icc(r, SkEncodedImageFormat::kPNG);
1579 test_encode_icc(r, SkEncodedImageFormat::kJPEG);
1580 test_encode_icc(r, SkEncodedImageFormat::kWEBP);
Matt Sarett5df93de2017-03-22 21:52:47 +00001581}
Leon Scroggins IIIe5677462017-09-27 16:31:08 -04001582
1583DEF_TEST(Codec_webp_rowsDecoded, r) {
Hal Canaryc465d132017-12-08 10:21:31 -05001584 const char* path = "images/baby_tux.webp";
Leon Scroggins IIIe5677462017-09-27 16:31:08 -04001585 sk_sp<SkData> data(GetResourceAsData(path));
1586 if (!data) {
1587 return;
1588 }
1589
1590 // Truncate this file so that the header is available but no rows can be
1591 // decoded. This should create a codec but fail to decode.
1592 size_t truncatedSize = 5000;
1593 sk_sp<SkData> subset = SkData::MakeSubset(data.get(), 0, truncatedSize);
1594 std::unique_ptr<SkCodec> codec = SkCodec::MakeFromData(std::move(subset));
1595 if (!codec) {
1596 ERRORF(r, "Failed to create a codec for %s truncated to only %lu bytes",
1597 path, truncatedSize);
1598 return;
1599 }
1600
1601 test_info(r, codec.get(), codec->getInfo(), SkCodec::kInvalidInput, nullptr);
1602}
Leon Scroggins IIIcbf66a22018-02-16 12:03:03 -05001603
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001604/*
1605For the Codec_ossfuzz6274 test, immediately below,
1606resources/invalid_images/ossfuzz6274.gif is:
1607
160800000000: 4749 4638 3961 2000 2000 f120 2020 2020 GIF89a . ..
160900000010: 2020 2020 2020 2020 2021 f903 ff20 2020 !...
161000000020: 002c 0000 0000 2000 2000 2000 00 .,.... . . ..
1611
1612@000 6 bytes magic "GIF89a"
1613@006 7 bytes Logical Screen Descriptor: 0x20 0x00 ... 0x00
1614 - width = 32
1615 - height = 32
1616 - flags = 0xF1, global color table, 4 RGB entries
1617 - background color index, pixel aspect ratio bytes ignored
1618@00D 12 bytes Color Table: 0x20 0x20 ... 0x20
1619@019 20 bytes Graphic Control Extension: 0x21 0xF9 ... unexpected-EOF
1620 - 0x03 precedes a 3 byte block of data, INVALID, MUST BE 4
1621 - 0x20 precedes a 32 byte block of data, INVALIDly truncated
1622
1623https://www.w3.org/Graphics/GIF/spec-gif89a.txt section 23.c says that the
1624block size (for an 0x21 0xF9 Graphic Control Extension) must be "the fixed
1625value 4".
1626*/
1627
Leon Scroggins IIIcbf66a22018-02-16 12:03:03 -05001628DEF_TEST(Codec_ossfuzz6274, r) {
1629 if (GetResourcePath().isEmpty()) {
1630 return;
1631 }
1632
1633 const char* file = "invalid_images/ossfuzz6274.gif";
1634 auto image = GetResourceAsImage(file);
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001635
1636#ifdef SK_HAS_WUFFS_LIBRARY
1637 // We are transitioning from an old GIF implementation to a new (Wuffs) GIF
1638 // implementation.
1639 //
1640 // This test (without SK_HAS_WUFFS_LIBRARY) is overly specific to the old
1641 // implementation. In the new implementation, the MakeFromStream factory
1642 // method returns a nullptr SkImage*, instead of returning a non-null but
1643 // otherwise all-transparent SkImage*.
1644 //
1645 // Either way, the end-to-end result is the same - the source input is
1646 // rejected as an invalid GIF image - but the two implementations differ in
1647 // how that's represented.
1648 //
1649 // Once the transition is complete, we can remove the #ifdef and delete the
1650 // rest of the test function.
1651 //
1652 // See Codec_GifTruncated3 for the equivalent of the rest of the test
1653 // function, on different (but still truncated) source data.
1654 if (image) {
1655 ERRORF(r, "Invalid data gave non-nullptr image");
1656 }
1657 return;
1658#endif
1659
Leon Scroggins IIIcbf66a22018-02-16 12:03:03 -05001660 if (!image) {
1661 ERRORF(r, "Missing %s", file);
1662 return;
1663 }
1664
1665 REPORTER_ASSERT(r, image->width() == 32);
1666 REPORTER_ASSERT(r, image->height() == 32);
1667
1668 SkBitmap bm;
1669 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(32, 32))) {
1670 ERRORF(r, "Failed to allocate pixels");
1671 return;
1672 }
1673
1674 bm.eraseColor(SK_ColorTRANSPARENT);
1675
1676 SkCanvas canvas(bm);
1677 canvas.drawImage(image, 0, 0, nullptr);
1678
1679 for (int i = 0; i < image->width(); ++i)
1680 for (int j = 0; j < image->height(); ++j) {
1681 SkColor actual = SkUnPreMultiply::PMColorToColor(*bm.getAddr32(i, j));
1682 if (actual != SK_ColorTRANSPARENT) {
1683 ERRORF(r, "did not initialize pixels! %i, %i is %x", i, j, actual);
1684 }
1685 }
1686}
Leon Scroggins III9e8a5942018-02-28 16:24:18 -05001687
Leon Scroggins III665949a2018-06-26 10:49:42 -04001688DEF_TEST(Codec_78329453, r) {
1689 if (GetResourcePath().isEmpty()) {
1690 return;
1691 }
1692
1693 const char* file = "images/b78329453.jpeg";
1694 auto data = GetResourceAsData(file);
1695 if (!data) {
1696 ERRORF(r, "Missing %s", file);
1697 return;
1698 }
1699
1700 auto codec = SkAndroidCodec::MakeFromCodec(SkCodec::MakeFromData(data));
1701 if (!codec) {
1702 ERRORF(r, "failed to create codec from %s", file);
1703 return;
1704 }
1705
1706 // A bug in jpeg_skip_scanlines resulted in an infinite loop for this specific
1707 // sample size on this image. Other sample sizes could have had the same result,
1708 // but the ones tested by DM happen to not.
1709 constexpr int kSampleSize = 19;
1710 const auto size = codec->getSampledDimensions(kSampleSize);
Brian Salomon9241a6d2019-10-03 13:26:54 -04001711 auto info = codec->getInfo().makeDimensions(size);
Leon Scroggins III665949a2018-06-26 10:49:42 -04001712 SkBitmap bm;
1713 bm.allocPixels(info);
1714 bm.eraseColor(SK_ColorTRANSPARENT);
1715
1716 SkAndroidCodec::AndroidOptions options;
1717 options.fSampleSize = kSampleSize;
1718 auto result = codec->getAndroidPixels(info, bm.getPixels(), bm.rowBytes(), &options);
1719 if (result != SkCodec::kSuccess) {
1720 ERRORF(r, "failed to decode with error %s", SkCodec::ResultToString(result));
1721 }
1722}
1723
Leon Scroggins III36f7e322018-08-27 11:55:46 -04001724DEF_TEST(Codec_A8, r) {
1725 if (GetResourcePath().isEmpty()) {
1726 return;
1727 }
1728
1729 const char* file = "images/mandrill_cmyk.jpg";
1730 auto data = GetResourceAsData(file);
1731 if (!data) {
1732 ERRORF(r, "missing %s", file);
1733 return;
1734 }
1735
1736 auto codec = SkCodec::MakeFromData(std::move(data));
1737 auto info = codec->getInfo().makeColorType(kAlpha_8_SkColorType);
1738 SkBitmap bm;
1739 bm.allocPixels(info);
1740 REPORTER_ASSERT(r, codec->getPixels(bm.pixmap()) == SkCodec::kInvalidConversion);
1741}
1742
Leon Scroggins III9e8a5942018-02-28 16:24:18 -05001743DEF_TEST(Codec_crbug807324, r) {
1744 if (GetResourcePath().isEmpty()) {
1745 return;
1746 }
1747
1748 const char* file = "images/crbug807324.png";
1749 auto image = GetResourceAsImage(file);
1750 if (!image) {
1751 ERRORF(r, "Missing %s", file);
1752 return;
1753 }
1754
1755 const int kWidth = image->width();
1756 const int kHeight = image->height();
1757
1758 SkBitmap bm;
1759 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(kWidth, kHeight))) {
1760 ERRORF(r, "Could not allocate pixels (%i x %i)", kWidth, kHeight);
1761 return;
1762 }
1763
1764 bm.eraseColor(SK_ColorTRANSPARENT);
1765
1766 SkCanvas canvas(bm);
1767 canvas.drawImage(image, 0, 0, nullptr);
1768
1769 for (int i = 0; i < kWidth; ++i)
1770 for (int j = 0; j < kHeight; ++j) {
1771 if (*bm.getAddr32(i, j) == SK_ColorTRANSPARENT) {
1772 ERRORF(r, "image should not be transparent! %i, %i is 0", i, j);
1773 return;
1774 }
1775 }
1776}