blob: 70e6604fddeb4babdf6b3ed4a0e326bab0dec464 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#define LOG_TAG "BitmapFactory"
2
Joseph Wenf1f48bc2010-07-19 16:59:51 +08003#include "BitmapFactory.h"
Ben Wagner60126ef2015-08-07 12:13:48 -04004#include "CreateJavaOutputStreamAdaptor.h"
5#include "GraphicsJNI.h"
Leon Scrogginsa06d86a2011-03-02 16:56:54 -05006#include "NinePatchPeeker.h"
Matt Sarettb8adc9a2015-12-02 13:35:22 -05007#include "SkAndroidCodec.h"
8#include "SkBRDAllocator.h"
Leon Scroggins III7315f1b2013-09-10 20:26:05 -04009#include "SkFrontBufferedStream.h"
Mike Reedc7c65602017-07-26 10:40:25 -040010#include "SkMakeUnique.h"
Leon Scroggins46cb9bd2014-03-06 15:36:39 -050011#include "SkMath.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080012#include "SkPixelRef.h"
13#include "SkStream.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014#include "SkUtils.h"
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080015#include "Utils.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080016#include "core_jni_helpers.h"
Ben Wagner60126ef2015-08-07 12:13:48 -040017
Leon Scroggins IIIee3bfe72019-01-31 08:42:23 -050018#include <HardwareBitmapUploader.h>
Steven Moreland2279b252017-07-19 09:50:45 -070019#include <nativehelper/JNIHelp.h>
Mathias Agopianb13b9bd2012-02-17 18:27:36 -080020#include <androidfw/Asset.h>
21#include <androidfw/ResourceTypes.h>
Chris Craikbd8db2e82014-08-20 16:31:57 -070022#include <cutils/compiler.h>
Ben Wagner60126ef2015-08-07 12:13:48 -040023#include <memory>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024#include <netinet/in.h>
Leon Scroggins III0102f8a2014-01-14 15:14:57 -050025#include <stdio.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026#include <sys/mman.h>
Joseph Wen2dcfbef2010-09-10 10:15:09 +080027#include <sys/stat.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
Joseph Wenf1f48bc2010-07-19 16:59:51 +080029jfieldID gOptions_justBoundsFieldID;
30jfieldID gOptions_sampleSizeFieldID;
31jfieldID gOptions_configFieldID;
Romain Guy95648b82017-04-13 18:43:42 -070032jfieldID gOptions_colorSpaceFieldID;
Chris Craik1abf5d62013-08-16 12:47:03 -070033jfieldID gOptions_premultipliedFieldID;
Romain Guy23610982011-01-17 12:51:55 -080034jfieldID gOptions_mutableFieldID;
Joseph Wenf1f48bc2010-07-19 16:59:51 +080035jfieldID gOptions_ditherFieldID;
Wei-Ta Chen953f9092010-12-03 14:06:18 -080036jfieldID gOptions_preferQualityOverSpeedFieldID;
Chris Craik905e8242013-06-05 09:59:05 -070037jfieldID gOptions_scaledFieldID;
38jfieldID gOptions_densityFieldID;
39jfieldID gOptions_screenDensityFieldID;
40jfieldID gOptions_targetDensityFieldID;
Joseph Wenf1f48bc2010-07-19 16:59:51 +080041jfieldID gOptions_widthFieldID;
42jfieldID gOptions_heightFieldID;
43jfieldID gOptions_mimeFieldID;
Romain Guye8d2ebb2017-02-09 18:38:47 -080044jfieldID gOptions_outConfigFieldID;
Romain Guy90fc43b2017-03-30 12:35:26 -070045jfieldID gOptions_outColorSpaceFieldID;
Joseph Wenf1f48bc2010-07-19 16:59:51 +080046jfieldID gOptions_mCancelID;
Chet Haase37f74ca2010-12-08 17:56:36 -080047jfieldID gOptions_bitmapFieldID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048
Chris Craik47cd8e92014-07-08 17:13:08 -070049jfieldID gBitmap_ninePatchInsetsFieldID;
50
Romain Guye8d2ebb2017-02-09 18:38:47 -080051jclass gBitmapConfig_class;
52jmethodID gBitmapConfig_nativeToConfigMethodID;
53
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054using namespace android;
55
Hal Canary10219fb2016-11-23 20:41:22 -050056jstring encodedFormatToString(JNIEnv* env, SkEncodedImageFormat format) {
Matt Sarettb8adc9a2015-12-02 13:35:22 -050057 const char* mimeType;
58 switch (format) {
Hal Canary10219fb2016-11-23 20:41:22 -050059 case SkEncodedImageFormat::kBMP:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050060 mimeType = "image/bmp";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 break;
Hal Canary10219fb2016-11-23 20:41:22 -050062 case SkEncodedImageFormat::kGIF:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050063 mimeType = "image/gif";
64 break;
Hal Canary10219fb2016-11-23 20:41:22 -050065 case SkEncodedImageFormat::kICO:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050066 mimeType = "image/x-ico";
67 break;
Hal Canary10219fb2016-11-23 20:41:22 -050068 case SkEncodedImageFormat::kJPEG:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050069 mimeType = "image/jpeg";
70 break;
Hal Canary10219fb2016-11-23 20:41:22 -050071 case SkEncodedImageFormat::kPNG:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050072 mimeType = "image/png";
73 break;
Hal Canary10219fb2016-11-23 20:41:22 -050074 case SkEncodedImageFormat::kWEBP:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050075 mimeType = "image/webp";
76 break;
Chong Zhang48fa8902017-08-16 11:57:02 -070077 case SkEncodedImageFormat::kHEIF:
78 mimeType = "image/heif";
79 break;
Hal Canary10219fb2016-11-23 20:41:22 -050080 case SkEncodedImageFormat::kWBMP:
Matt Sarettb8adc9a2015-12-02 13:35:22 -050081 mimeType = "image/vnd.wap.wbmp";
82 break;
Hal Canary10219fb2016-11-23 20:41:22 -050083 case SkEncodedImageFormat::kDNG:
Yujie Qin990ea132016-03-17 14:13:22 +010084 mimeType = "image/x-adobe-dng";
85 break;
Matt Sarettb8adc9a2015-12-02 13:35:22 -050086 default:
87 mimeType = nullptr;
88 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 }
90
Vladimir Marko7ab249a2015-01-06 18:17:52 +000091 jstring jstr = nullptr;
Matt Sarettb8adc9a2015-12-02 13:35:22 -050092 if (mimeType) {
Vladimir Marko7ab249a2015-01-06 18:17:52 +000093 // NOTE: Caller should env->ExceptionCheck() for OOM
94 // (can't check for nullptr as it's a valid return value)
Matt Sarettb8adc9a2015-12-02 13:35:22 -050095 jstr = env->NewStringUTF(mimeType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 }
97 return jstr;
98}
99
Chris Craik905e8242013-06-05 09:59:05 -0700100class ScaleCheckingAllocator : public SkBitmap::HeapAllocator {
101public:
102 ScaleCheckingAllocator(float scale, int size)
103 : mScale(scale), mSize(size) {
104 }
105
Mike Reed81397c42017-07-18 17:04:16 -0400106 virtual bool allocPixelRef(SkBitmap* bitmap) {
Chris Craik905e8242013-06-05 09:59:05 -0700107 // accounts for scale in final allocation, using eventual size and config
Leon Scroggins IIIef691a3d2017-07-10 17:03:55 -0400108 const int bytesPerPixel = SkColorTypeBytesPerPixel(bitmap->colorType());
Chris Craik905e8242013-06-05 09:59:05 -0700109 const int requestedSize = bytesPerPixel *
110 int(bitmap->width() * mScale + 0.5f) *
111 int(bitmap->height() * mScale + 0.5f);
112 if (requestedSize > mSize) {
113 ALOGW("bitmap for alloc reuse (%d bytes) can't fit scaled bitmap (%d bytes)",
114 mSize, requestedSize);
115 return false;
116 }
Mike Reed81397c42017-07-18 17:04:16 -0400117 return SkBitmap::HeapAllocator::allocPixelRef(bitmap);
Chris Craik905e8242013-06-05 09:59:05 -0700118 }
119private:
120 const float mScale;
121 const int mSize;
122};
123
Chris Craik7e8c03c2013-06-03 13:53:36 -0700124class RecyclingPixelAllocator : public SkBitmap::Allocator {
125public:
sergeyvc1c54062016-10-19 18:47:26 -0700126 RecyclingPixelAllocator(android::Bitmap* bitmap, unsigned int size)
John Reckf29ed282015-04-07 07:32:03 -0700127 : mBitmap(bitmap), mSize(size) {
Chris Craik7e8c03c2013-06-03 13:53:36 -0700128 }
129
130 ~RecyclingPixelAllocator() {
Chris Craik7e8c03c2013-06-03 13:53:36 -0700131 }
132
Mike Reed81397c42017-07-18 17:04:16 -0400133 virtual bool allocPixelRef(SkBitmap* bitmap) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500134 const SkImageInfo& info = bitmap->info();
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -0400135 if (info.colorType() == kUnknown_SkColorType) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500136 ALOGW("unable to reuse a bitmap as the target has an unknown bitmap configuration");
Chris Craik7e8c03c2013-06-03 13:53:36 -0700137 return false;
138 }
Chris Craikcd0ba712013-09-06 14:40:30 -0700139
Mike Reed7569de02017-10-06 16:25:49 -0400140 const size_t size = info.computeByteSize(bitmap->rowBytes());
141 if (size > SK_MaxS32) {
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500142 ALOGW("bitmap is too large");
143 return false;
144 }
145
Leon Scroggins46cb9bd2014-03-06 15:36:39 -0500146 if (size > mSize) {
Dan Albert46d84442014-11-18 16:07:51 -0800147 ALOGW("bitmap marked for reuse (%u bytes) can't fit new bitmap "
148 "(%zu bytes)", mSize, size);
Derek Sollenbergerb644a3b2014-01-17 15:45:10 -0500149 return false;
150 }
151
Leon Scroggins IIIf51a80d2017-07-12 10:46:35 -0400152 mBitmap->reconfigure(info, bitmap->rowBytes());
Mike Reed826deef2017-04-04 15:32:04 -0400153 bitmap->setPixelRef(sk_ref_sp(mBitmap), 0, 0);
Chris Craik7e8c03c2013-06-03 13:53:36 -0700154 return true;
155 }
156
157private:
sergeyvc1c54062016-10-19 18:47:26 -0700158 android::Bitmap* const mBitmap;
Chris Craik7e8c03c2013-06-03 13:53:36 -0700159 const unsigned int mSize;
160};
161
Anton Daubert4e5ec342016-03-07 17:30:20 +0100162// Necessary for decodes when the native decoder cannot scale to appropriately match the sampleSize
163// (for example, RAW). If the sampleSize divides evenly into the dimension, we require that the
164// scale matches exactly. If sampleSize does not divide evenly, we allow the decoder to choose how
165// best to round.
166static bool needsFineScale(const int fullSize, const int decodedSize, const int sampleSize) {
167 if (fullSize % sampleSize == 0 && fullSize / sampleSize != decodedSize) {
168 return true;
169 } else if ((fullSize / sampleSize + 1) != decodedSize &&
170 (fullSize / sampleSize) != decodedSize) {
171 return true;
172 }
173 return false;
174}
175
176static bool needsFineScale(const SkISize fullSize, const SkISize decodedSize,
177 const int sampleSize) {
178 return needsFineScale(fullSize.width(), decodedSize.width(), sampleSize) ||
179 needsFineScale(fullSize.height(), decodedSize.height(), sampleSize);
180}
181
Mike Reedc7c65602017-07-26 10:40:25 -0400182static jobject doDecode(JNIEnv* env, std::unique_ptr<SkStreamRewindable> stream,
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500183 jobject padding, jobject options, jlong colorSpaceHandle) {
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500184 // Set default values for the options parameters.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 int sampleSize = 1;
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500186 bool onlyDecodeSize = false;
Mike Reed42a1d082014-07-07 18:06:18 -0400187 SkColorType prefColorType = kN32_SkColorType;
sergeyvda6c8ffc2016-11-22 18:28:54 -0800188 bool isHardware = false;
Romain Guy23610982011-01-17 12:51:55 -0800189 bool isMutable = false;
Chris Craik905e8242013-06-05 09:59:05 -0700190 float scale = 1.0f;
Chris Craik1abf5d62013-08-16 12:47:03 -0700191 bool requireUnpremultiplied = false;
Chet Haase37f74ca2010-12-08 17:56:36 -0800192 jobject javaBitmap = NULL;
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500193 sk_sp<SkColorSpace> prefColorSpace = GraphicsJNI::getNativeColorSpace(colorSpaceHandle);
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700194
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500195 // Update with options supplied by the client.
Romain Guy7b2f8b82012-03-19 17:18:54 -0700196 if (options != NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500198 // Correct a non-positive sampleSize. sampleSize defaults to zero within the
199 // options object, which is strange.
200 if (sampleSize <= 0) {
201 sampleSize = 1;
202 }
203
204 if (env->GetBooleanField(options, gOptions_justBoundsFieldID)) {
205 onlyDecodeSize = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700207
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 // initialize these, in case we fail later on
209 env->SetIntField(options, gOptions_widthFieldID, -1);
210 env->SetIntField(options, gOptions_heightFieldID, -1);
211 env->SetObjectField(options, gOptions_mimeFieldID, 0);
Romain Guye8d2ebb2017-02-09 18:38:47 -0800212 env->SetObjectField(options, gOptions_outConfigFieldID, 0);
Romain Guy90fc43b2017-03-30 12:35:26 -0700213 env->SetObjectField(options, gOptions_outColorSpaceFieldID, 0);
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700214
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 jobject jconfig = env->GetObjectField(options, gOptions_configFieldID);
Mike Reed42a1d082014-07-07 18:06:18 -0400216 prefColorType = GraphicsJNI::getNativeBitmapColorType(env, jconfig);
sergeyvda6c8ffc2016-11-22 18:28:54 -0800217 isHardware = GraphicsJNI::isHardwareConfig(env, jconfig);
Romain Guy23610982011-01-17 12:51:55 -0800218 isMutable = env->GetBooleanField(options, gOptions_mutableFieldID);
Chris Craik1abf5d62013-08-16 12:47:03 -0700219 requireUnpremultiplied = !env->GetBooleanField(options, gOptions_premultipliedFieldID);
Chet Haase37f74ca2010-12-08 17:56:36 -0800220 javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID);
Chris Craik905e8242013-06-05 09:59:05 -0700221
222 if (env->GetBooleanField(options, gOptions_scaledFieldID)) {
223 const int density = env->GetIntField(options, gOptions_densityFieldID);
224 const int targetDensity = env->GetIntField(options, gOptions_targetDensityFieldID);
225 const int screenDensity = env->GetIntField(options, gOptions_screenDensityFieldID);
226 if (density != 0 && targetDensity != 0 && density != screenDensity) {
227 scale = (float) targetDensity / density;
228 }
229 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700231
sergeyv9fbb0b52016-11-23 10:27:33 -0800232 if (isMutable && isHardware) {
Hans Boehme5b337d2019-01-07 17:42:05 -0800233 doThrowIAE(env, "Bitmaps with Config.HARDWARE are always immutable");
sergeyv9fbb0b52016-11-23 10:27:33 -0800234 return nullObjectReturn("Cannot create mutable hardware bitmap");
235 }
236
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500237 // Create the codec.
238 NinePatchPeeker peeker;
Leon Scroggins IIIc782ad82018-01-14 10:50:45 -0500239 std::unique_ptr<SkAndroidCodec> codec;
240 {
241 SkCodec::Result result;
242 std::unique_ptr<SkCodec> c = SkCodec::MakeFromStream(std::move(stream), &result,
243 &peeker);
244 if (!c) {
245 SkString msg;
246 msg.printf("Failed to create image decoder with message '%s'",
247 SkCodec::ResultToString(result));
248 return nullObjectReturn(msg.c_str());
249 }
250
251 codec = SkAndroidCodec::MakeFromCodec(std::move(c));
252 if (!codec) {
253 return nullObjectReturn("SkAndroidCodec::MakeFromCodec returned null");
254 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255 }
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700256
Matt Sarett3b1b68d2015-12-14 13:08:33 -0500257 // Do not allow ninepatch decodes to 565. In the past, decodes to 565
258 // would dither, and we do not want to pre-dither ninepatches, since we
259 // know that they will be stretched. We no longer dither 565 decodes,
260 // but we continue to prevent ninepatches from decoding to 565, in order
261 // to maintain the old behavior.
262 if (peeker.mPatch && kRGB_565_SkColorType == prefColorType) {
263 prefColorType = kN32_SkColorType;
264 }
265
Anton Daubert4e5ec342016-03-07 17:30:20 +0100266 // Determine the output size.
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500267 SkISize size = codec->getSampledDimensions(sampleSize);
Anton Daubert4e5ec342016-03-07 17:30:20 +0100268
269 int scaledWidth = size.width();
270 int scaledHeight = size.height();
271 bool willScale = false;
272
273 // Apply a fine scaling step if necessary.
274 if (needsFineScale(codec->getInfo().dimensions(), size, sampleSize)) {
275 willScale = true;
276 scaledWidth = codec->getInfo().width() / sampleSize;
277 scaledHeight = codec->getInfo().height() / sampleSize;
278 }
279
Romain Guye8d2ebb2017-02-09 18:38:47 -0800280 // Set the decode colorType
281 SkColorType decodeColorType = codec->computeOutputColorType(prefColorType);
Leon Scroggins IIIee3bfe72019-01-31 08:42:23 -0500282 if (decodeColorType == kRGBA_F16_SkColorType && isHardware &&
283 !uirenderer::HardwareBitmapUploader::hasFP16Support()) {
284 decodeColorType = kN32_SkColorType;
285 }
286
Romain Guy95648b82017-04-13 18:43:42 -0700287 sk_sp<SkColorSpace> decodeColorSpace = codec->computeOutputColorSpace(
288 decodeColorType, prefColorSpace);
Romain Guye8d2ebb2017-02-09 18:38:47 -0800289
Anton Daubert4e5ec342016-03-07 17:30:20 +0100290 // Set the options and return if the client only wants the size.
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500291 if (options != NULL) {
Hal Canary10219fb2016-11-23 20:41:22 -0500292 jstring mimeType = encodedFormatToString(
293 env, (SkEncodedImageFormat)codec->getEncodedFormat());
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500294 if (env->ExceptionCheck()) {
Matt Sarettd31512b2015-12-09 15:16:31 -0500295 return nullObjectReturn("OOM in encodedFormatToString()");
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500296 }
Anton Daubert4e5ec342016-03-07 17:30:20 +0100297 env->SetIntField(options, gOptions_widthFieldID, scaledWidth);
298 env->SetIntField(options, gOptions_heightFieldID, scaledHeight);
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500299 env->SetObjectField(options, gOptions_mimeFieldID, mimeType);
300
Leon Scroggins IIIef691a3d2017-07-10 17:03:55 -0400301 jint configID = GraphicsJNI::colorTypeToLegacyBitmapConfig(decodeColorType);
Romain Guye8d2ebb2017-02-09 18:38:47 -0800302 if (isHardware) {
303 configID = GraphicsJNI::kHardware_LegacyBitmapConfig;
304 }
305 jobject config = env->CallStaticObjectMethod(gBitmapConfig_class,
306 gBitmapConfig_nativeToConfigMethodID, configID);
307 env->SetObjectField(options, gOptions_outConfigFieldID, config);
308
Romain Guy90fc43b2017-03-30 12:35:26 -0700309 env->SetObjectField(options, gOptions_outColorSpaceFieldID,
Romain Guy95648b82017-04-13 18:43:42 -0700310 GraphicsJNI::getColorSpace(env, decodeColorSpace, decodeColorType));
Romain Guy90fc43b2017-03-30 12:35:26 -0700311
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500312 if (onlyDecodeSize) {
313 return nullptr;
314 }
315 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800316
Anton Daubert4e5ec342016-03-07 17:30:20 +0100317 // Scale is necessary due to density differences.
318 if (scale != 1.0f) {
319 willScale = true;
320 scaledWidth = static_cast<int>(scaledWidth * scale + 0.5f);
321 scaledHeight = static_cast<int>(scaledHeight * scale + 0.5f);
322 }
323
sergeyvc1c54062016-10-19 18:47:26 -0700324 android::Bitmap* reuseBitmap = nullptr;
Chris Craik9f583612013-05-20 18:13:47 -0700325 unsigned int existingBufferSize = 0;
Chris Craik7e8c03c2013-06-03 13:53:36 -0700326 if (javaBitmap != NULL) {
sergeyvaed7f582016-10-14 16:30:21 -0700327 reuseBitmap = &bitmap::toBitmap(env, javaBitmap);
sergeyvc69853c2016-10-07 14:14:09 -0700328 if (reuseBitmap->isImmutable()) {
Derek Sollenberger2a6ecae2012-08-31 14:03:51 -0400329 ALOGW("Unable to reuse an immutable bitmap as an image decoder target.");
Chris Craik7e8c03c2013-06-03 13:53:36 -0700330 javaBitmap = NULL;
John Reckf29ed282015-04-07 07:32:03 -0700331 reuseBitmap = nullptr;
Chris Craik7e8c03c2013-06-03 13:53:36 -0700332 } else {
sergeyvc69853c2016-10-07 14:14:09 -0700333 existingBufferSize = bitmap::getBitmapAllocationByteCount(env, javaBitmap);
Derek Sollenberger2a6ecae2012-08-31 14:03:51 -0400334 }
Chet Haase37f74ca2010-12-08 17:56:36 -0800335 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336
sergeyv45082182016-09-29 18:25:40 -0700337 HeapAllocator defaultAllocator;
John Reckf29ed282015-04-07 07:32:03 -0700338 RecyclingPixelAllocator recyclingAllocator(reuseBitmap, existingBufferSize);
Chris Craik905e8242013-06-05 09:59:05 -0700339 ScaleCheckingAllocator scaleCheckingAllocator(scale, existingBufferSize);
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500340 SkBitmap::HeapAllocator heapAllocator;
341 SkBitmap::Allocator* decodeAllocator;
342 if (javaBitmap != nullptr && willScale) {
343 // This will allocate pixels using a HeapAllocator, since there will be an extra
344 // scaling step that copies these pixels into Java memory. This allocator
345 // also checks that the recycled javaBitmap is large enough.
346 decodeAllocator = &scaleCheckingAllocator;
347 } else if (javaBitmap != nullptr) {
348 decodeAllocator = &recyclingAllocator;
sergeyvda6c8ffc2016-11-22 18:28:54 -0800349 } else if (willScale || isHardware) {
350 // This will allocate pixels using a HeapAllocator,
351 // for scale case: there will be an extra scaling step.
352 // for hardware case: there will be extra swizzling & upload to gralloc step.
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500353 decodeAllocator = &heapAllocator;
354 } else {
sergeyv45082182016-09-29 18:25:40 -0700355 decodeAllocator = &defaultAllocator;
Chris Craik905e8242013-06-05 09:59:05 -0700356 }
357
Matt Sarett9e7cd632015-12-11 10:54:28 -0500358 SkAlphaType alphaType = codec->computeOutputAlphaType(requireUnpremultiplied);
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500359
Romain Guy253f2c22016-09-28 17:34:42 -0700360 const SkImageInfo decodeInfo = SkImageInfo::Make(size.width(), size.height(),
Romain Guy90fc43b2017-03-30 12:35:26 -0700361 decodeColorType, alphaType, decodeColorSpace);
Matt Sarett6c382572017-02-21 17:42:41 -0500362
Matt Sarett327c7202017-02-22 17:38:20 -0500363 SkImageInfo bitmapInfo = decodeInfo;
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500364 if (decodeColorType == kGray_8_SkColorType) {
365 // The legacy implementation of BitmapFactory used kAlpha8 for
366 // grayscale images (before kGray8 existed). While the codec
367 // recognizes kGray8, we need to decode into a kAlpha8 bitmap
368 // in order to avoid a behavior change.
Matt Sarettee80c472016-06-03 10:23:38 -0400369 bitmapInfo =
370 bitmapInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType);
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500371 }
Chris Craik7e8c03c2013-06-03 13:53:36 -0700372 SkBitmap decodingBitmap;
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500373 if (!decodingBitmap.setInfo(bitmapInfo) ||
Mike Reed81397c42017-07-18 17:04:16 -0400374 !decodingBitmap.tryAllocPixels(decodeAllocator)) {
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500375 // SkAndroidCodec should recommend a valid SkImageInfo, so setInfo()
376 // should only only fail if the calculated value for rowBytes is too
377 // large.
378 // tryAllocPixels() can fail due to OOM on the Java heap, OOM on the
379 // native heap, or the recycled javaBitmap being too small to reuse.
380 return nullptr;
Mike Reedc70e06b2009-04-24 11:09:12 -0400381 }
382
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500383 // Use SkAndroidCodec to perform the decode.
384 SkAndroidCodec::AndroidOptions codecOptions;
Romain Guy253f2c22016-09-28 17:34:42 -0700385 codecOptions.fZeroInitialized = decodeAllocator == &defaultAllocator ?
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500386 SkCodec::kYes_ZeroInitialized : SkCodec::kNo_ZeroInitialized;
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500387 codecOptions.fSampleSize = sampleSize;
388 SkCodec::Result result = codec->getAndroidPixels(decodeInfo, decodingBitmap.getPixels(),
389 decodingBitmap.rowBytes(), &codecOptions);
390 switch (result) {
391 case SkCodec::kSuccess:
392 case SkCodec::kIncompleteInput:
393 break;
394 default:
Matt Sarett3b1b68d2015-12-14 13:08:33 -0500395 return nullObjectReturn("codec->getAndroidPixels() failed.");
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500396 }
397
Stan Iliev7aedf6f2017-12-20 12:22:59 -0500398 // This is weird so let me explain: we could use the scale parameter
399 // directly, but for historical reasons this is how the corresponding
400 // Dalvik code has always behaved. We simply recreate the behavior here.
401 // The result is slightly different from simply using scale because of
402 // the 0.5f rounding bias applied when computing the target image size
403 const float scaleX = scaledWidth / float(decodingBitmap.width());
404 const float scaleY = scaledHeight / float(decodingBitmap.height());
405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800406 jbyteArray ninePatchChunk = NULL;
Chris Craik47cd8e92014-07-08 17:13:08 -0700407 if (peeker.mPatch != NULL) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700408 if (willScale) {
Stan Iliev7aedf6f2017-12-20 12:22:59 -0500409 peeker.scale(scaleX, scaleY, scaledWidth, scaledHeight);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700410 }
411
Chris Craik47cd8e92014-07-08 17:13:08 -0700412 size_t ninePatchArraySize = peeker.mPatch->serializedSize();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800413 ninePatchChunk = env->NewByteArray(ninePatchArraySize);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700414 if (ninePatchChunk == NULL) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400415 return nullObjectReturn("ninePatchChunk == null");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800416 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700417
418 jbyte* array = (jbyte*) env->GetPrimitiveArrayCritical(ninePatchChunk, NULL);
419 if (array == NULL) {
Mike Reedc70e06b2009-04-24 11:09:12 -0400420 return nullObjectReturn("primitive array == null");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 }
Romain Guy7b2f8b82012-03-19 17:18:54 -0700422
Chris Craik47cd8e92014-07-08 17:13:08 -0700423 memcpy(array, peeker.mPatch, peeker.mPatchSize);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 env->ReleasePrimitiveArrayCritical(ninePatchChunk, array, 0);
425 }
426
Chris Craik47cd8e92014-07-08 17:13:08 -0700427 jobject ninePatchInsets = NULL;
428 if (peeker.mHasInsets) {
Leon Scroggins III0c01dbf2017-10-20 14:08:11 -0400429 ninePatchInsets = peeker.createNinePatchInsets(env, scale);
Mathieu Chartiera08d10f2014-08-29 16:55:55 -0700430 if (ninePatchInsets == NULL) {
431 return nullObjectReturn("nine patch insets == null");
432 }
Amith Yamasaniec4a5042012-04-04 10:27:15 -0700433 if (javaBitmap != NULL) {
Chris Craik47cd8e92014-07-08 17:13:08 -0700434 env->SetObjectField(javaBitmap, gBitmap_ninePatchInsetsFieldID, ninePatchInsets);
Amith Yamasaniec4a5042012-04-04 10:27:15 -0700435 }
436 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800437
John Reckf29ed282015-04-07 07:32:03 -0700438 SkBitmap outputBitmap;
Romain Guy7b2f8b82012-03-19 17:18:54 -0700439 if (willScale) {
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500440 // Set the allocator for the outputBitmap.
441 SkBitmap::Allocator* outputAllocator;
442 if (javaBitmap != nullptr) {
443 outputAllocator = &recyclingAllocator;
444 } else {
sergeyv45082182016-09-29 18:25:40 -0700445 outputAllocator = &defaultAllocator;
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500446 }
447
Leon Scroggins IIIef691a3d2017-07-10 17:03:55 -0400448 SkColorType scaledColorType = decodingBitmap.colorType();
Leon Scroggins III8790be62013-12-03 16:26:51 -0500449 // FIXME: If the alphaType is kUnpremul and the image has alpha, the
450 // colors may not be correct, since Skia does not yet support drawing
451 // to/from unpremultiplied bitmaps.
Matt Sarettee80c472016-06-03 10:23:38 -0400452 outputBitmap.setInfo(
453 bitmapInfo.makeWH(scaledWidth, scaledHeight).makeColorType(scaledColorType));
Mike Reed81397c42017-07-18 17:04:16 -0400454 if (!outputBitmap.tryAllocPixels(outputAllocator)) {
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500455 // This should only fail on OOM. The recyclingAllocator should have
456 // enough memory since we check this before decoding using the
457 // scaleCheckingAllocator.
Raph Levien005bfc62012-09-20 22:51:47 -0700458 return nullObjectReturn("allocation failed for scaled bitmap");
459 }
Leon Scroggins III1ffe7272013-09-19 11:34:06 -0400460
Romain Guy7b2f8b82012-03-19 17:18:54 -0700461 SkPaint paint;
Romain Guy253f2c22016-09-28 17:34:42 -0700462 // kSrc_Mode instructs us to overwrite the uninitialized pixels in
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500463 // outputBitmap. Otherwise we would blend by default, which is not
464 // what we want.
Mike Reed260ab722016-10-07 15:59:20 -0400465 paint.setBlendMode(SkBlendMode::kSrc);
Romain Guy253f2c22016-09-28 17:34:42 -0700466 paint.setFilterQuality(kLow_SkFilterQuality); // bilinear filtering
Romain Guy7b2f8b82012-03-19 17:18:54 -0700467
Matt Sarettca9b7032017-04-13 12:18:47 -0400468 SkCanvas canvas(outputBitmap, SkCanvas::ColorBehavior::kLegacy);
Stan Iliev7aedf6f2017-12-20 12:22:59 -0500469 canvas.scale(scaleX, scaleY);
Chris Craik7e8c03c2013-06-03 13:53:36 -0700470 canvas.drawBitmap(decodingBitmap, 0.0f, 0.0f, &paint);
471 } else {
John Reckf29ed282015-04-07 07:32:03 -0700472 outputBitmap.swap(decodingBitmap);
Romain Guy7b2f8b82012-03-19 17:18:54 -0700473 }
474
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800475 if (padding) {
Leon Scroggins III0c01dbf2017-10-20 14:08:11 -0400476 peeker.getPadding(env, padding);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800477 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500479 // If we get here, the outputBitmap should have an installed pixelref.
John Reckf29ed282015-04-07 07:32:03 -0700480 if (outputBitmap.pixelRef() == NULL) {
Marco Nelissenb2fe3be2012-05-07 11:24:13 -0700481 return nullObjectReturn("Got null SkPixelRef");
482 }
Romain Guy23610982011-01-17 12:51:55 -0800483
Chris Craik7e8c03c2013-06-03 13:53:36 -0700484 if (!isMutable && javaBitmap == NULL) {
Romain Guy23610982011-01-17 12:51:55 -0800485 // promise we will never change our pixels (great for sharing and pictures)
John Reckf29ed282015-04-07 07:32:03 -0700486 outputBitmap.setImmutable();
Romain Guy23610982011-01-17 12:51:55 -0800487 }
Chet Haase37f74ca2010-12-08 17:56:36 -0800488
Matt Sarettb8adc9a2015-12-02 13:35:22 -0500489 bool isPremultiplied = !requireUnpremultiplied;
490 if (javaBitmap != nullptr) {
sergeyvc69853c2016-10-07 14:14:09 -0700491 bitmap::reinitBitmap(env, javaBitmap, outputBitmap.info(), isPremultiplied);
John Reckf29ed282015-04-07 07:32:03 -0700492 outputBitmap.notifyPixelsChanged();
Chet Haase37f74ca2010-12-08 17:56:36 -0800493 // If a java bitmap was passed in for reuse, pass it back
494 return javaBitmap;
495 }
Chris Craik1abf5d62013-08-16 12:47:03 -0700496
497 int bitmapCreateFlags = 0x0;
sergeyvc69853c2016-10-07 14:14:09 -0700498 if (isMutable) bitmapCreateFlags |= android::bitmap::kBitmapCreateFlag_Mutable;
499 if (isPremultiplied) bitmapCreateFlags |= android::bitmap::kBitmapCreateFlag_Premultiplied;
Chris Craik1abf5d62013-08-16 12:47:03 -0700500
sergeyvda6c8ffc2016-11-22 18:28:54 -0800501 if (isHardware) {
502 sk_sp<Bitmap> hardwareBitmap = Bitmap::allocateHardwareBitmap(outputBitmap);
sergeyvd67bb1e2017-06-28 12:44:03 -0700503 if (!hardwareBitmap.get()) {
504 return nullObjectReturn("Failed to allocate a hardware bitmap");
505 }
sergeyvda6c8ffc2016-11-22 18:28:54 -0800506 return bitmap::createBitmap(env, hardwareBitmap.release(), bitmapCreateFlags,
507 ninePatchChunk, ninePatchInsets, -1);
508 }
509
Leon Scroggins III023c0fc2019-02-04 12:19:36 -0500510 // Speculative fix for b/112551574. It doesn't seem like |b| can be null. If it is, print some
511 // info that might be helpful to diagnose.
512 Bitmap* b = defaultAllocator.getStorageObjAndReset();
513 if (!b) {
514 ALOGW("defaultAllocator has no storage object!");
515 ALOGW("\tjavaBitmap: %s", (javaBitmap == nullptr ? "null" : "present"));
516 ALOGW("\tisHardware: %s", (isHardware ? "true" : "false"));
517 ALOGW("\twillScale: %s", (willScale ? "true" : "false"));
518 return nullptr;
519 }
Mike Reedc70e06b2009-04-24 11:09:12 -0400520 // now create the java bitmap
Leon Scroggins III023c0fc2019-02-04 12:19:36 -0500521 return bitmap::createBitmap(env, b, bitmapCreateFlags, ninePatchChunk, ninePatchInsets, -1);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522}
523
Chris Craik905e8242013-06-05 09:59:05 -0700524static jobject nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage,
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500525 jobject padding, jobject options, jlong colorSpaceHandle) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700526
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 jobject bitmap = NULL;
Ben Wagner60126ef2015-08-07 12:13:48 -0400528 std::unique_ptr<SkStream> stream(CreateJavaInputStreamAdaptor(env, is, storage));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800529
Leon Scroggins IIIca320212013-08-20 17:59:39 -0400530 if (stream.get()) {
Ben Wagner60126ef2015-08-07 12:13:48 -0400531 std::unique_ptr<SkStreamRewindable> bufferedStream(
Mike Reedbe896ed2017-09-19 17:01:30 -0400532 SkFrontBufferedStream::Make(std::move(stream), SkCodec::MinBufferedBytesNeeded()));
Leon Scroggins III7315f1b2013-09-10 20:26:05 -0400533 SkASSERT(bufferedStream.get() != NULL);
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500534 bitmap = doDecode(env, std::move(bufferedStream), padding, options, colorSpaceHandle);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 }
536 return bitmap;
537}
538
Romain Guy7b2f8b82012-03-19 17:18:54 -0700539static jobject nativeDecodeFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor,
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500540 jobject padding, jobject bitmapFactoryOptions, jlong colorSpaceHandle) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700541
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800542 NPE_CHECK_RETURN_ZERO(env, fileDescriptor);
543
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400544 int descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor);
Mike Reedc70e06b2009-04-24 11:09:12 -0400545
Derek Sollenberger5827cb52013-07-26 14:58:06 -0400546 struct stat fdStat;
547 if (fstat(descriptor, &fdStat) == -1) {
548 doThrowIOE(env, "broken file descriptor");
549 return nullObjectReturn("fstat return -1");
550 }
551
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400552 // Restore the descriptor's offset on exiting this function. Even though
553 // we dup the descriptor, both the original and dup refer to the same open
554 // file description and changes to the file offset in one impact the other.
Jérôme Poichetd29c9022014-09-26 18:59:11 +0000555 AutoFDSeek autoRestore(descriptor);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400557 // Duplicate the descriptor here to prevent leaking memory. A leak occurs
558 // if we only close the file descriptor and not the file object it is used to
559 // create. If we don't explicitly clean up the file (which in turn closes the
560 // descriptor) the buffers allocated internally by fseek will be leaked.
Nick Kralevich4b3a08c2019-01-28 10:39:10 -0800561 int dupDescriptor = fcntl(descriptor, F_DUPFD_CLOEXEC, 0);
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400562
563 FILE* file = fdopen(dupDescriptor, "r");
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500564 if (file == NULL) {
Derek Sollenberger5cb769d2014-09-24 09:20:09 -0400565 // cleanup the duplicated descriptor since it will not be closed when the
566 // file is cleaned up (fclose).
567 close(dupDescriptor);
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500568 return nullObjectReturn("Could not open file");
Leon Scroggins IIIf65183f2013-10-07 16:32:14 -0400569 }
Leon Scroggins III0102f8a2014-01-14 15:14:57 -0500570
Leon Scroggins IIIdd3c06c2017-03-10 10:50:33 -0500571 std::unique_ptr<SkFILEStream> fileStream(new SkFILEStream(file));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800572
Yujie Qinc1d7b7f2016-02-29 14:00:29 +0100573 // If there is no offset for the file descriptor, we use SkFILEStream directly.
574 if (::lseek(descriptor, 0, SEEK_CUR) == 0) {
575 assert(isSeekable(dupDescriptor));
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500576 return doDecode(env, std::move(fileStream), padding, bitmapFactoryOptions,
577 colorSpaceHandle);
Yujie Qinc1d7b7f2016-02-29 14:00:29 +0100578 }
579
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400580 // Use a buffered stream. Although an SkFILEStream can be rewound, this
581 // ensures that SkImageDecoder::Factory never rewinds beyond the
582 // current position of the file descriptor.
Mike Reedbe896ed2017-09-19 17:01:30 -0400583 std::unique_ptr<SkStreamRewindable> stream(SkFrontBufferedStream::Make(std::move(fileStream),
Matt Sarett96ffbdc2016-02-11 17:03:54 -0500584 SkCodec::MinBufferedBytesNeeded()));
Leon Scroggins III2826e5f2014-02-05 19:46:02 -0500585
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500586 return doDecode(env, std::move(stream), padding, bitmapFactoryOptions, colorSpaceHandle);
Mike Reedc70e06b2009-04-24 11:09:12 -0400587}
588
Ashok Bhat36bef0b2014-01-20 20:08:01 +0000589static jobject nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset,
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500590 jobject padding, jobject options, jlong colorSpaceHandle) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700591
Mike Reedc70e06b2009-04-24 11:09:12 -0400592 Asset* asset = reinterpret_cast<Asset*>(native_asset);
Leon Scroggins III0aa39dc2014-06-03 12:19:32 -0400593 // since we know we'll be done with the asset when we return, we can
594 // just use a simple wrapper
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500595 return doDecode(env, skstd::make_unique<AssetStreamAdaptor>(asset), padding, options,
596 colorSpaceHandle);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800597}
598
599static jobject nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray,
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500600 jint offset, jint length, jobject options, jlong colorSpaceHandle) {
Romain Guy7b2f8b82012-03-19 17:18:54 -0700601
Mike Reedc70e06b2009-04-24 11:09:12 -0400602 AutoJavaByteArray ar(env, byteArray);
Mike Reedc7c65602017-07-26 10:40:25 -0400603 return doDecode(env, skstd::make_unique<SkMemoryStream>(ar.ptr() + offset, length, false),
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500604 nullptr, options, colorSpaceHandle);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800605}
606
Owen Lina9d0d472011-01-18 17:39:15 +0800607static jboolean nativeIsSeekable(JNIEnv* env, jobject, jobject fileDescriptor) {
Elliott Hughesa3804cf2011-04-11 16:50:19 -0700608 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor);
Yujie Qinc1d7b7f2016-02-29 14:00:29 +0100609 return isSeekable(descriptor) ? JNI_TRUE : JNI_FALSE;
Owen Lina9d0d472011-01-18 17:39:15 +0800610}
611
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612///////////////////////////////////////////////////////////////////////////////
613
Daniel Micay76f6a862015-09-19 17:31:01 -0400614static const JNINativeMethod gMethods[] = {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800615 { "nativeDecodeStream",
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500616 "(Ljava/io/InputStream;[BLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;J)Landroid/graphics/Bitmap;",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 (void*)nativeDecodeStream
618 },
619
620 { "nativeDecodeFileDescriptor",
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500621 "(Ljava/io/FileDescriptor;Landroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;J)Landroid/graphics/Bitmap;",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800622 (void*)nativeDecodeFileDescriptor
623 },
624
625 { "nativeDecodeAsset",
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500626 "(JLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;J)Landroid/graphics/Bitmap;",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800627 (void*)nativeDecodeAsset
628 },
629
630 { "nativeDecodeByteArray",
Leon Scroggins III0e443d12018-12-19 11:38:35 -0500631 "([BIILandroid/graphics/BitmapFactory$Options;J)Landroid/graphics/Bitmap;",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 (void*)nativeDecodeByteArray
633 },
634
Owen Lina9d0d472011-01-18 17:39:15 +0800635 { "nativeIsSeekable",
636 "(Ljava/io/FileDescriptor;)Z",
637 (void*)nativeIsSeekable
638 },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800639};
640
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641int register_android_graphics_BitmapFactory(JNIEnv* env) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800642 jclass options_class = FindClassOrDie(env, "android/graphics/BitmapFactory$Options");
643 gOptions_bitmapFieldID = GetFieldIDOrDie(env, options_class, "inBitmap",
Chris Craik47cd8e92014-07-08 17:13:08 -0700644 "Landroid/graphics/Bitmap;");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800645 gOptions_justBoundsFieldID = GetFieldIDOrDie(env, options_class, "inJustDecodeBounds", "Z");
646 gOptions_sampleSizeFieldID = GetFieldIDOrDie(env, options_class, "inSampleSize", "I");
647 gOptions_configFieldID = GetFieldIDOrDie(env, options_class, "inPreferredConfig",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800648 "Landroid/graphics/Bitmap$Config;");
Romain Guy95648b82017-04-13 18:43:42 -0700649 gOptions_colorSpaceFieldID = GetFieldIDOrDie(env, options_class, "inPreferredColorSpace",
650 "Landroid/graphics/ColorSpace;");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800651 gOptions_premultipliedFieldID = GetFieldIDOrDie(env, options_class, "inPremultiplied", "Z");
652 gOptions_mutableFieldID = GetFieldIDOrDie(env, options_class, "inMutable", "Z");
653 gOptions_ditherFieldID = GetFieldIDOrDie(env, options_class, "inDither", "Z");
654 gOptions_preferQualityOverSpeedFieldID = GetFieldIDOrDie(env, options_class,
Wei-Ta Chen953f9092010-12-03 14:06:18 -0800655 "inPreferQualityOverSpeed", "Z");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800656 gOptions_scaledFieldID = GetFieldIDOrDie(env, options_class, "inScaled", "Z");
657 gOptions_densityFieldID = GetFieldIDOrDie(env, options_class, "inDensity", "I");
658 gOptions_screenDensityFieldID = GetFieldIDOrDie(env, options_class, "inScreenDensity", "I");
659 gOptions_targetDensityFieldID = GetFieldIDOrDie(env, options_class, "inTargetDensity", "I");
660 gOptions_widthFieldID = GetFieldIDOrDie(env, options_class, "outWidth", "I");
661 gOptions_heightFieldID = GetFieldIDOrDie(env, options_class, "outHeight", "I");
662 gOptions_mimeFieldID = GetFieldIDOrDie(env, options_class, "outMimeType", "Ljava/lang/String;");
Romain Guye8d2ebb2017-02-09 18:38:47 -0800663 gOptions_outConfigFieldID = GetFieldIDOrDie(env, options_class, "outConfig",
664 "Landroid/graphics/Bitmap$Config;");
Romain Guy90fc43b2017-03-30 12:35:26 -0700665 gOptions_outColorSpaceFieldID = GetFieldIDOrDie(env, options_class, "outColorSpace",
666 "Landroid/graphics/ColorSpace;");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800667 gOptions_mCancelID = GetFieldIDOrDie(env, options_class, "mCancel", "Z");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800668
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800669 jclass bitmap_class = FindClassOrDie(env, "android/graphics/Bitmap");
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800670 gBitmap_ninePatchInsetsFieldID = GetFieldIDOrDie(env, bitmap_class, "mNinePatchInsets",
Chris Craik47cd8e92014-07-08 17:13:08 -0700671 "Landroid/graphics/NinePatch$InsetStruct;");
672
Romain Guye8d2ebb2017-02-09 18:38:47 -0800673 gBitmapConfig_class = MakeGlobalRefOrDie(env, FindClassOrDie(env,
674 "android/graphics/Bitmap$Config"));
675 gBitmapConfig_nativeToConfigMethodID = GetStaticMethodIDOrDie(env, gBitmapConfig_class,
676 "nativeToConfig", "(I)Landroid/graphics/Bitmap$Config;");
677
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800678 return android::RegisterMethodsOrDie(env, "android/graphics/BitmapFactory",
679 gMethods, NELEM(gMethods));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800680}