blob: 5cb9ccb0c48eb6fb8fca74c5caebab7a8983c2a9 [file] [log] [blame]
msarett26ad17b2015-10-22 07:29:19 -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 "src/android/SkBitmapRegionCodec.h"
10#include "src/android/SkBitmapRegionDecoderPriv.h"
11#include "src/codec/SkCodecPriv.h"
msarett26ad17b2015-10-22 07:29:19 -070012
13SkBitmapRegionCodec::SkBitmapRegionCodec(SkAndroidCodec* codec)
14 : INHERITED(codec->getInfo().width(), codec->getInfo().height())
15 , fCodec(codec)
16{}
17
msarettcb8d7192015-11-11 13:30:43 -080018bool SkBitmapRegionCodec::decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
Leon Scroggins III0118e972018-03-13 11:14:33 -040019 const SkIRect& desiredSubset, int sampleSize, SkColorType dstColorType,
20 bool requireUnpremul, sk_sp<SkColorSpace> dstColorSpace) {
msarett26ad17b2015-10-22 07:29:19 -070021
22 // Fix the input sampleSize if necessary.
23 if (sampleSize < 1) {
24 sampleSize = 1;
25 }
26
27 // The size of the output bitmap is determined by the size of the
28 // requested subset, not by the size of the intersection of the subset
29 // and the image dimensions.
30 // If inputX is negative, we will need to place decoded pixels into the
31 // output bitmap starting at a left offset. Call this outX.
32 // If outX is non-zero, subsetX must be zero.
33 // If inputY is negative, we will need to place decoded pixels into the
34 // output bitmap starting at a top offset. Call this outY.
35 // If outY is non-zero, subsetY must be zero.
36 int outX;
37 int outY;
msarett35e5d1b2015-10-27 12:50:25 -070038 SkIRect subset = desiredSubset;
msarett26ad17b2015-10-22 07:29:19 -070039 SubsetType type = adjust_subset_rect(fCodec->getInfo().dimensions(), &subset, &outX, &outY);
40 if (SubsetType::kOutside_SubsetType == type) {
msarett35e5d1b2015-10-27 12:50:25 -070041 return false;
msarett26ad17b2015-10-22 07:29:19 -070042 }
43
44 // Ask the codec for a scaled subset
45 if (!fCodec->getSupportedSubset(&subset)) {
46 SkCodecPrintf("Error: Could not get subset.\n");
msarett35e5d1b2015-10-27 12:50:25 -070047 return false;
msarett26ad17b2015-10-22 07:29:19 -070048 }
49 SkISize scaledSize = fCodec->getSampledSubsetDimensions(sampleSize, subset);
50
51 // Create the image info for the decode
msarett9a0e3462015-12-11 07:38:50 -080052 SkAlphaType dstAlphaType = fCodec->computeOutputAlphaType(requireUnpremul);
Brian Salomon4bc0c1f2019-09-30 15:12:27 -040053 SkImageInfo decodeInfo =
54 SkImageInfo::Make(scaledSize, dstColorType, dstAlphaType, dstColorSpace);
msarett26ad17b2015-10-22 07:29:19 -070055
msarett26ad17b2015-10-22 07:29:19 -070056 // Initialize the destination bitmap
msarett26ad17b2015-10-22 07:29:19 -070057 int scaledOutX = 0;
58 int scaledOutY = 0;
59 int scaledOutWidth = scaledSize.width();
60 int scaledOutHeight = scaledSize.height();
61 if (SubsetType::kPartiallyInside_SubsetType == type) {
62 scaledOutX = outX / sampleSize;
63 scaledOutY = outY / sampleSize;
64 // We need to be safe here because getSupportedSubset() may have modified the subset.
msarett35e5d1b2015-10-27 12:50:25 -070065 const int extraX = SkTMax(0, desiredSubset.width() - outX - subset.width());
66 const int extraY = SkTMax(0, desiredSubset.height() - outY - subset.height());
msarett26ad17b2015-10-22 07:29:19 -070067 const int scaledExtraX = extraX / sampleSize;
68 const int scaledExtraY = extraY / sampleSize;
69 scaledOutWidth += scaledOutX + scaledExtraX;
70 scaledOutHeight += scaledOutY + scaledExtraY;
71 }
72 SkImageInfo outInfo = decodeInfo.makeWH(scaledOutWidth, scaledOutHeight);
msarett9a0e3462015-12-11 07:38:50 -080073 if (kGray_8_SkColorType == dstColorType) {
74 // The legacy implementations of BitmapFactory and BitmapRegionDecoder
75 // used kAlpha8 for grayscale images (before kGray8 existed). While
76 // the codec recognizes kGray8, we need to decode into a kAlpha8
77 // bitmap in order to avoid a behavior change.
msarett577967c2016-06-03 08:23:40 -070078 outInfo = outInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType);
msarett9a0e3462015-12-11 07:38:50 -080079 }
msarettfcff08c2015-11-05 15:00:56 -080080 bitmap->setInfo(outInfo);
Mike Reed086a4272017-07-18 10:53:11 -040081 if (!bitmap->tryAllocPixels(allocator)) {
msarett26ad17b2015-10-22 07:29:19 -070082 SkCodecPrintf("Error: Could not allocate pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -070083 return false;
msarett26ad17b2015-10-22 07:29:19 -070084 }
85
86 // Zero the bitmap if the region is not completely within the image.
87 // TODO (msarett): Can we make this faster by implementing it to only
88 // zero parts of the image that we won't overwrite with
89 // pixels?
msarettcb8d7192015-11-11 13:30:43 -080090 SkCodec::ZeroInitialized zeroInit = allocator ? allocator->zeroInit() :
91 SkCodec::kNo_ZeroInitialized;
92 if (SubsetType::kPartiallyInside_SubsetType == type &&
93 SkCodec::kNo_ZeroInitialized == zeroInit) {
msarett26ad17b2015-10-22 07:29:19 -070094 void* pixels = bitmap->getPixels();
Mike Reedf0ffb892017-10-03 14:47:21 -040095 size_t bytes = outInfo.computeByteSize(bitmap->rowBytes());
msarett26ad17b2015-10-22 07:29:19 -070096 memset(pixels, 0, bytes);
97 }
98
99 // Decode into the destination bitmap
100 SkAndroidCodec::AndroidOptions options;
101 options.fSampleSize = sampleSize;
102 options.fSubset = &subset;
msarettcb8d7192015-11-11 13:30:43 -0800103 options.fZeroInitialized = zeroInit;
msarett26ad17b2015-10-22 07:29:19 -0700104 void* dst = bitmap->getAddr(scaledOutX, scaledOutY);
msarettfcff08c2015-11-05 15:00:56 -0800105
msarett3d477322016-05-19 07:50:24 -0700106 SkCodec::Result result = fCodec->getAndroidPixels(decodeInfo, dst, bitmap->rowBytes(),
107 &options);
Leon Scroggins III6e45ce72018-10-16 15:29:11 -0400108 switch (result) {
109 case SkCodec::kSuccess:
110 case SkCodec::kIncompleteInput:
111 case SkCodec::kErrorInInput:
112 return true;
113 default:
114 SkCodecPrintf("Error: Could not get pixels with message \"%s\".\n",
115 SkCodec::ResultToString(result));
116 return false;
msarett26ad17b2015-10-22 07:29:19 -0700117 }
msarett26ad17b2015-10-22 07:29:19 -0700118}