blob: 973e3c9470d8871f3b7a839415e343d39ec87eea [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,
msarett35e5d1b2015-10-27 12:50:25 -070021 bool requireUnpremul) {
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);
msarette26a8ad2016-09-01 17:47:46 -070055
56 // Enable legacy behavior to avoid any gamma correction. Android's assets are
57 // adjusted to expect a non-gamma correct premultiply.
58 sk_sp<SkColorSpace> colorSpace = nullptr;
59 SkImageInfo decodeInfo = SkImageInfo::Make(scaledSize.width(), scaledSize.height(),
60 dstColorType, dstAlphaType, colorSpace);
msarett26ad17b2015-10-22 07:29:19 -070061
62 // Construct a color table for the decode if necessary
Hal Canary67b39de2016-11-07 11:47:44 -050063 sk_sp<SkColorTable> colorTable(nullptr);
msarett26ad17b2015-10-22 07:29:19 -070064 int maxColors = 256;
65 SkPMColor colors[256];
66 if (kIndex_8_SkColorType == dstColorType) {
msarett26ad17b2015-10-22 07:29:19 -070067 colorTable.reset(new SkColorTable(colors, maxColors));
msarett26ad17b2015-10-22 07:29:19 -070068 }
69
70 // Initialize the destination bitmap
msarett26ad17b2015-10-22 07:29:19 -070071 int scaledOutX = 0;
72 int scaledOutY = 0;
73 int scaledOutWidth = scaledSize.width();
74 int scaledOutHeight = scaledSize.height();
75 if (SubsetType::kPartiallyInside_SubsetType == type) {
76 scaledOutX = outX / sampleSize;
77 scaledOutY = outY / sampleSize;
78 // We need to be safe here because getSupportedSubset() may have modified the subset.
msarett35e5d1b2015-10-27 12:50:25 -070079 const int extraX = SkTMax(0, desiredSubset.width() - outX - subset.width());
80 const int extraY = SkTMax(0, desiredSubset.height() - outY - subset.height());
msarett26ad17b2015-10-22 07:29:19 -070081 const int scaledExtraX = extraX / sampleSize;
82 const int scaledExtraY = extraY / sampleSize;
83 scaledOutWidth += scaledOutX + scaledExtraX;
84 scaledOutHeight += scaledOutY + scaledExtraY;
85 }
86 SkImageInfo outInfo = decodeInfo.makeWH(scaledOutWidth, scaledOutHeight);
msarett9a0e3462015-12-11 07:38:50 -080087 if (kGray_8_SkColorType == dstColorType) {
88 // The legacy implementations of BitmapFactory and BitmapRegionDecoder
89 // used kAlpha8 for grayscale images (before kGray8 existed). While
90 // the codec recognizes kGray8, we need to decode into a kAlpha8
91 // bitmap in order to avoid a behavior change.
msarett577967c2016-06-03 08:23:40 -070092 outInfo = outInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType);
msarett9a0e3462015-12-11 07:38:50 -080093 }
msarettfcff08c2015-11-05 15:00:56 -080094 bitmap->setInfo(outInfo);
msarett35e5d1b2015-10-27 12:50:25 -070095 if (!bitmap->tryAllocPixels(allocator, colorTable.get())) {
msarett26ad17b2015-10-22 07:29:19 -070096 SkCodecPrintf("Error: Could not allocate pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -070097 return false;
msarett26ad17b2015-10-22 07:29:19 -070098 }
99
100 // Zero the bitmap if the region is not completely within the image.
101 // TODO (msarett): Can we make this faster by implementing it to only
102 // zero parts of the image that we won't overwrite with
103 // pixels?
msarettcb8d7192015-11-11 13:30:43 -0800104 SkCodec::ZeroInitialized zeroInit = allocator ? allocator->zeroInit() :
105 SkCodec::kNo_ZeroInitialized;
106 if (SubsetType::kPartiallyInside_SubsetType == type &&
107 SkCodec::kNo_ZeroInitialized == zeroInit) {
msarett26ad17b2015-10-22 07:29:19 -0700108 void* pixels = bitmap->getPixels();
109 size_t bytes = outInfo.getSafeSize(bitmap->rowBytes());
110 memset(pixels, 0, bytes);
111 }
112
113 // Decode into the destination bitmap
114 SkAndroidCodec::AndroidOptions options;
115 options.fSampleSize = sampleSize;
116 options.fSubset = &subset;
msarettb1be46b2016-05-17 08:52:11 -0700117 options.fColorPtr = colors;
118 options.fColorCount = &maxColors;
msarettcb8d7192015-11-11 13:30:43 -0800119 options.fZeroInitialized = zeroInit;
msarett26ad17b2015-10-22 07:29:19 -0700120 void* dst = bitmap->getAddr(scaledOutX, scaledOutY);
msarettfcff08c2015-11-05 15:00:56 -0800121
msarett3d477322016-05-19 07:50:24 -0700122 SkCodec::Result result = fCodec->getAndroidPixels(decodeInfo, dst, bitmap->rowBytes(),
123 &options);
msarett26ad17b2015-10-22 07:29:19 -0700124 if (SkCodec::kSuccess != result && SkCodec::kIncompleteInput != result) {
125 SkCodecPrintf("Error: Could not get pixels.\n");
msarett35e5d1b2015-10-27 12:50:25 -0700126 return false;
msarett26ad17b2015-10-22 07:29:19 -0700127 }
128
msarettb1be46b2016-05-17 08:52:11 -0700129 // Intialize the color table
130 if (kIndex_8_SkColorType == dstColorType) {
131 colorTable->dangerous_overwriteColors(colors, maxColors);
132 }
133
msarett35e5d1b2015-10-27 12:50:25 -0700134 return true;
msarett26ad17b2015-10-22 07:29:19 -0700135}
136
137bool SkBitmapRegionCodec::conversionSupported(SkColorType colorType) {
msarett2ecc35f2016-09-08 11:55:16 -0700138 // Enable legacy behavior.
139 sk_sp<SkColorSpace> colorSpace = nullptr;
140 SkImageInfo dstInfo = fCodec->getInfo().makeColorType(colorType).makeColorSpace(colorSpace);
Matt Saretta225e9b2016-11-07 10:26:17 -0500141 return conversion_possible(dstInfo, fCodec->getInfo());
msarett26ad17b2015-10-22 07:29:19 -0700142}