blob: c4e1ea124ce151415f11d6e9cba804109a925722 [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,
msarett9a0e3462015-12-11 07:38:50 -080020 const SkIRect& desiredSubset, int sampleSize, SkColorType prefColorType,
Matt Sarett68feef42017-04-11 09:51:32 -040021 bool requireUnpremul, sk_sp<SkColorSpace> prefColorSpace) {
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 SkColorType dstColorType = fCodec->computeOutputColorType(prefColorType);
54 SkAlphaType dstAlphaType = fCodec->computeOutputAlphaType(requireUnpremul);
Matt Sarett68feef42017-04-11 09:51:32 -040055 sk_sp<SkColorSpace> dstColorSpace = fCodec->computeOutputColorSpace(dstColorType,
56 prefColorSpace);
msarette26a8ad2016-09-01 17:47:46 -070057 SkImageInfo decodeInfo = SkImageInfo::Make(scaledSize.width(), scaledSize.height(),
Matt Sarett966bb342016-12-12 16:30:13 -050058 dstColorType, dstAlphaType, dstColorSpace);
msarett26ad17b2015-10-22 07:29:19 -070059
Leon Scroggins III742a3e22017-07-10 11:51:37 -040060 SkASSERT(dstColorType != kIndex_8_SkColorType);
msarett26ad17b2015-10-22 07:29:19 -070061
62 // Initialize the destination bitmap
msarett26ad17b2015-10-22 07:29:19 -070063 int scaledOutX = 0;
64 int scaledOutY = 0;
65 int scaledOutWidth = scaledSize.width();
66 int scaledOutHeight = scaledSize.height();
67 if (SubsetType::kPartiallyInside_SubsetType == type) {
68 scaledOutX = outX / sampleSize;
69 scaledOutY = outY / sampleSize;
70 // We need to be safe here because getSupportedSubset() may have modified the subset.
msarett35e5d1b2015-10-27 12:50:25 -070071 const int extraX = SkTMax(0, desiredSubset.width() - outX - subset.width());
72 const int extraY = SkTMax(0, desiredSubset.height() - outY - subset.height());
msarett26ad17b2015-10-22 07:29:19 -070073 const int scaledExtraX = extraX / sampleSize;
74 const int scaledExtraY = extraY / sampleSize;
75 scaledOutWidth += scaledOutX + scaledExtraX;
76 scaledOutHeight += scaledOutY + scaledExtraY;
77 }
78 SkImageInfo outInfo = decodeInfo.makeWH(scaledOutWidth, scaledOutHeight);
msarett9a0e3462015-12-11 07:38:50 -080079 if (kGray_8_SkColorType == dstColorType) {
80 // The legacy implementations of BitmapFactory and BitmapRegionDecoder
81 // used kAlpha8 for grayscale images (before kGray8 existed). While
82 // the codec recognizes kGray8, we need to decode into a kAlpha8
83 // bitmap in order to avoid a behavior change.
msarett577967c2016-06-03 08:23:40 -070084 outInfo = outInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType);
msarett9a0e3462015-12-11 07:38:50 -080085 }
msarettfcff08c2015-11-05 15:00:56 -080086 bitmap->setInfo(outInfo);
Leon Scroggins III742a3e22017-07-10 11:51:37 -040087 if (!bitmap->tryAllocPixels(allocator, nullptr)) {
msarett26ad17b2015-10-22 07:29:19 -070088 SkCodecPrintf("Error: Could not allocate pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -070089 return false;
msarett26ad17b2015-10-22 07:29:19 -070090 }
91
92 // Zero the bitmap if the region is not completely within the image.
93 // TODO (msarett): Can we make this faster by implementing it to only
94 // zero parts of the image that we won't overwrite with
95 // pixels?
msarettcb8d7192015-11-11 13:30:43 -080096 SkCodec::ZeroInitialized zeroInit = allocator ? allocator->zeroInit() :
97 SkCodec::kNo_ZeroInitialized;
98 if (SubsetType::kPartiallyInside_SubsetType == type &&
99 SkCodec::kNo_ZeroInitialized == zeroInit) {
msarett26ad17b2015-10-22 07:29:19 -0700100 void* pixels = bitmap->getPixels();
101 size_t bytes = outInfo.getSafeSize(bitmap->rowBytes());
102 memset(pixels, 0, bytes);
103 }
104
105 // Decode into the destination bitmap
106 SkAndroidCodec::AndroidOptions options;
107 options.fSampleSize = sampleSize;
108 options.fSubset = &subset;
msarettcb8d7192015-11-11 13:30:43 -0800109 options.fZeroInitialized = zeroInit;
msarett26ad17b2015-10-22 07:29:19 -0700110 void* dst = bitmap->getAddr(scaledOutX, scaledOutY);
msarettfcff08c2015-11-05 15:00:56 -0800111
msarett3d477322016-05-19 07:50:24 -0700112 SkCodec::Result result = fCodec->getAndroidPixels(decodeInfo, dst, bitmap->rowBytes(),
113 &options);
msarett26ad17b2015-10-22 07:29:19 -0700114 if (SkCodec::kSuccess != result && SkCodec::kIncompleteInput != result) {
115 SkCodecPrintf("Error: Could not get pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -0700116 return false;
msarett26ad17b2015-10-22 07:29:19 -0700117 }
118
msarett35e5d1b2015-10-27 12:50:25 -0700119 return true;
msarett26ad17b2015-10-22 07:29:19 -0700120}
121
122bool SkBitmapRegionCodec::conversionSupported(SkColorType colorType) {
Matt Sarett966bb342016-12-12 16:30:13 -0500123 SkImageInfo dstInfo = fCodec->getInfo().makeColorType(colorType);
Matt Saretta225e9b2016-11-07 10:26:17 -0500124 return conversion_possible(dstInfo, fCodec->getInfo());
msarett26ad17b2015-10-22 07:29:19 -0700125}