blob: 682c70526a905e404a329708555767c42be37974 [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
msarett26ad17b2015-10-22 07:29:19 -07008#include "SkAndroidCodec.h"
msarett84a80652015-11-10 15:49:46 -08009#include "SkBitmapRegionCodec.h"
10#include "SkBitmapRegionDecoderPriv.h"
msarett26ad17b2015-10-22 07:29:19 -070011#include "SkCodecPriv.h"
msarettfcff08c2015-11-05 15:00:56 -080012#include "SkPixelRef.h"
msarett26ad17b2015-10-22 07:29:19 -070013
14SkBitmapRegionCodec::SkBitmapRegionCodec(SkAndroidCodec* codec)
15 : INHERITED(codec->getInfo().width(), codec->getInfo().height())
16 , fCodec(codec)
17{}
18
msarettcb8d7192015-11-11 13:30:43 -080019bool SkBitmapRegionCodec::decodeRegion(SkBitmap* bitmap, SkBRDAllocator* allocator,
Leon Scroggins III0118e972018-03-13 11:14:33 -040020 const SkIRect& desiredSubset, int sampleSize, SkColorType dstColorType,
21 bool requireUnpremul, sk_sp<SkColorSpace> dstColorSpace) {
msarett26ad17b2015-10-22 07:29:19 -070022
23 // Fix the input sampleSize if necessary.
24 if (sampleSize < 1) {
25 sampleSize = 1;
26 }
27
28 // The size of the output bitmap is determined by the size of the
29 // requested subset, not by the size of the intersection of the subset
30 // and the image dimensions.
31 // If inputX is negative, we will need to place decoded pixels into the
32 // output bitmap starting at a left offset. Call this outX.
33 // If outX is non-zero, subsetX must be zero.
34 // If inputY is negative, we will need to place decoded pixels into the
35 // output bitmap starting at a top offset. Call this outY.
36 // If outY is non-zero, subsetY must be zero.
37 int outX;
38 int outY;
msarett35e5d1b2015-10-27 12:50:25 -070039 SkIRect subset = desiredSubset;
msarett26ad17b2015-10-22 07:29:19 -070040 SubsetType type = adjust_subset_rect(fCodec->getInfo().dimensions(), &subset, &outX, &outY);
41 if (SubsetType::kOutside_SubsetType == type) {
msarett35e5d1b2015-10-27 12:50:25 -070042 return false;
msarett26ad17b2015-10-22 07:29:19 -070043 }
44
45 // Ask the codec for a scaled subset
46 if (!fCodec->getSupportedSubset(&subset)) {
47 SkCodecPrintf("Error: Could not get subset.\n");
msarett35e5d1b2015-10-27 12:50:25 -070048 return false;
msarett26ad17b2015-10-22 07:29:19 -070049 }
50 SkISize scaledSize = fCodec->getSampledSubsetDimensions(sampleSize, subset);
51
52 // Create the image info for the decode
msarett9a0e3462015-12-11 07:38:50 -080053 SkAlphaType dstAlphaType = fCodec->computeOutputAlphaType(requireUnpremul);
msarette26a8ad2016-09-01 17:47:46 -070054 SkImageInfo decodeInfo = SkImageInfo::Make(scaledSize.width(), scaledSize.height(),
Matt Sarett966bb342016-12-12 16:30:13 -050055 dstColorType, dstAlphaType, dstColorSpace);
msarett26ad17b2015-10-22 07:29:19 -070056
msarett26ad17b2015-10-22 07:29:19 -070057 // Initialize the destination bitmap
msarett26ad17b2015-10-22 07:29:19 -070058 int scaledOutX = 0;
59 int scaledOutY = 0;
60 int scaledOutWidth = scaledSize.width();
61 int scaledOutHeight = scaledSize.height();
62 if (SubsetType::kPartiallyInside_SubsetType == type) {
63 scaledOutX = outX / sampleSize;
64 scaledOutY = outY / sampleSize;
65 // We need to be safe here because getSupportedSubset() may have modified the subset.
msarett35e5d1b2015-10-27 12:50:25 -070066 const int extraX = SkTMax(0, desiredSubset.width() - outX - subset.width());
67 const int extraY = SkTMax(0, desiredSubset.height() - outY - subset.height());
msarett26ad17b2015-10-22 07:29:19 -070068 const int scaledExtraX = extraX / sampleSize;
69 const int scaledExtraY = extraY / sampleSize;
70 scaledOutWidth += scaledOutX + scaledExtraX;
71 scaledOutHeight += scaledOutY + scaledExtraY;
72 }
73 SkImageInfo outInfo = decodeInfo.makeWH(scaledOutWidth, scaledOutHeight);
msarett9a0e3462015-12-11 07:38:50 -080074 if (kGray_8_SkColorType == dstColorType) {
75 // The legacy implementations of BitmapFactory and BitmapRegionDecoder
76 // used kAlpha8 for grayscale images (before kGray8 existed). While
77 // the codec recognizes kGray8, we need to decode into a kAlpha8
78 // bitmap in order to avoid a behavior change.
msarett577967c2016-06-03 08:23:40 -070079 outInfo = outInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType);
msarett9a0e3462015-12-11 07:38:50 -080080 }
msarettfcff08c2015-11-05 15:00:56 -080081 bitmap->setInfo(outInfo);
Mike Reed086a4272017-07-18 10:53:11 -040082 if (!bitmap->tryAllocPixels(allocator)) {
msarett26ad17b2015-10-22 07:29:19 -070083 SkCodecPrintf("Error: Could not allocate pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -070084 return false;
msarett26ad17b2015-10-22 07:29:19 -070085 }
86
87 // Zero the bitmap if the region is not completely within the image.
88 // TODO (msarett): Can we make this faster by implementing it to only
89 // zero parts of the image that we won't overwrite with
90 // pixels?
msarettcb8d7192015-11-11 13:30:43 -080091 SkCodec::ZeroInitialized zeroInit = allocator ? allocator->zeroInit() :
92 SkCodec::kNo_ZeroInitialized;
93 if (SubsetType::kPartiallyInside_SubsetType == type &&
94 SkCodec::kNo_ZeroInitialized == zeroInit) {
msarett26ad17b2015-10-22 07:29:19 -070095 void* pixels = bitmap->getPixels();
Mike Reedf0ffb892017-10-03 14:47:21 -040096 size_t bytes = outInfo.computeByteSize(bitmap->rowBytes());
msarett26ad17b2015-10-22 07:29:19 -070097 memset(pixels, 0, bytes);
98 }
99
100 // Decode into the destination bitmap
101 SkAndroidCodec::AndroidOptions options;
102 options.fSampleSize = sampleSize;
103 options.fSubset = &subset;
msarettcb8d7192015-11-11 13:30:43 -0800104 options.fZeroInitialized = zeroInit;
msarett26ad17b2015-10-22 07:29:19 -0700105 void* dst = bitmap->getAddr(scaledOutX, scaledOutY);
msarettfcff08c2015-11-05 15:00:56 -0800106
msarett3d477322016-05-19 07:50:24 -0700107 SkCodec::Result result = fCodec->getAndroidPixels(decodeInfo, dst, bitmap->rowBytes(),
108 &options);
Leon Scroggins III6e45ce72018-10-16 15:29:11 -0400109 switch (result) {
110 case SkCodec::kSuccess:
111 case SkCodec::kIncompleteInput:
112 case SkCodec::kErrorInInput:
113 return true;
114 default:
115 SkCodecPrintf("Error: Could not get pixels with message \"%s\".\n",
116 SkCodec::ResultToString(result));
117 return false;
msarett26ad17b2015-10-22 07:29:19 -0700118 }
msarett26ad17b2015-10-22 07:29:19 -0700119}