| Derek Sollenberger | 5368eda | 2019-10-25 11:20:03 -0400 | [diff] [blame] | 1 | #undef LOG_TAG |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2 | #define LOG_TAG "BitmapFactory" |
| 3 | |
| Joseph Wen | f1f48bc | 2010-07-19 16:59:51 +0800 | [diff] [blame] | 4 | #include "BitmapFactory.h" |
| Ben Wagner | 60126ef | 2015-08-07 12:13:48 -0400 | [diff] [blame] | 5 | #include "CreateJavaOutputStreamAdaptor.h" |
| Leon Scroggins III | 2bcdf6f | 2020-04-21 14:08:32 -0400 | [diff] [blame] | 6 | #include "FrontBufferedStream.h" |
| Ben Wagner | 60126ef | 2015-08-07 12:13:48 -0400 | [diff] [blame] | 7 | #include "GraphicsJNI.h" |
| Derek Sollenberger | 2173ea2 | 2020-02-19 15:37:29 -0500 | [diff] [blame] | 8 | #include "MimeType.h" |
| Leon Scroggins | a06d86a | 2011-03-02 16:56:54 -0500 | [diff] [blame] | 9 | #include "NinePatchPeeker.h" |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 10 | #include "SkAndroidCodec.h" |
| Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 11 | #include "SkBitmap.h" |
| 12 | #include "SkBlendMode.h" |
| John Reck | be67195 | 2021-01-13 22:39:32 -0500 | [diff] [blame] | 13 | #include "SkCanvas.h" |
| Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 14 | #include "SkColorSpace.h" |
| 15 | #include "SkEncodedImageFormat.h" |
| 16 | #include "SkImageInfo.h" |
| Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 17 | #include "SkPaint.h" |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 18 | #include "SkPixelRef.h" |
| Kevin Lubick | 1175dc0 | 2022-02-28 12:41:27 -0500 | [diff] [blame] | 19 | #include "SkRect.h" |
| 20 | #include "SkRefCnt.h" |
| 21 | #include "SkSamplingOptions.h" |
| 22 | #include "SkSize.h" |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | #include "SkStream.h" |
| John Reck | be67195 | 2021-01-13 22:39:32 -0500 | [diff] [blame] | 24 | #include "SkString.h" |
| Wei-Ta Chen | 6b849e2 | 2010-09-07 17:32:18 +0800 | [diff] [blame] | 25 | #include "Utils.h" |
| Ben Wagner | 60126ef | 2015-08-07 12:13:48 -0400 | [diff] [blame] | 26 | |
| Leon Scroggins III | ee3bfe7 | 2019-01-31 08:42:23 -0500 | [diff] [blame] | 27 | #include <HardwareBitmapUploader.h> |
| Orion Hodson | 329c612 | 2020-06-02 13:22:06 +0100 | [diff] [blame] | 28 | #include <nativehelper/JNIPlatformHelp.h> |
| Mathias Agopian | b13b9bd | 2012-02-17 18:27:36 -0800 | [diff] [blame] | 29 | #include <androidfw/Asset.h> |
| 30 | #include <androidfw/ResourceTypes.h> |
| Chris Craik | bd8db2e8 | 2014-08-20 16:31:57 -0700 | [diff] [blame] | 31 | #include <cutils/compiler.h> |
| Derek Sollenberger | c5882c4 | 2019-10-25 11:11:32 -0400 | [diff] [blame] | 32 | #include <fcntl.h> |
| Ben Wagner | 60126ef | 2015-08-07 12:13:48 -0400 | [diff] [blame] | 33 | #include <memory> |
| Leon Scroggins III | 0102f8a | 2014-01-14 15:14:57 -0500 | [diff] [blame] | 34 | #include <stdio.h> |
| Kevin Lubick | bab0bb3 | 2023-01-17 15:30:34 +0000 | [diff] [blame] | 35 | #include <stdint.h> |
| Joseph Wen | 2dcfbef | 2010-09-10 10:15:09 +0800 | [diff] [blame] | 36 | #include <sys/stat.h> |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | |
| Joseph Wen | f1f48bc | 2010-07-19 16:59:51 +0800 | [diff] [blame] | 38 | jfieldID gOptions_justBoundsFieldID; |
| 39 | jfieldID gOptions_sampleSizeFieldID; |
| 40 | jfieldID gOptions_configFieldID; |
| Romain Guy | 95648b8 | 2017-04-13 18:43:42 -0700 | [diff] [blame] | 41 | jfieldID gOptions_colorSpaceFieldID; |
| Chris Craik | 1abf5d6 | 2013-08-16 12:47:03 -0700 | [diff] [blame] | 42 | jfieldID gOptions_premultipliedFieldID; |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 43 | jfieldID gOptions_mutableFieldID; |
| Joseph Wen | f1f48bc | 2010-07-19 16:59:51 +0800 | [diff] [blame] | 44 | jfieldID gOptions_ditherFieldID; |
| Wei-Ta Chen | 953f909 | 2010-12-03 14:06:18 -0800 | [diff] [blame] | 45 | jfieldID gOptions_preferQualityOverSpeedFieldID; |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 46 | jfieldID gOptions_scaledFieldID; |
| 47 | jfieldID gOptions_densityFieldID; |
| 48 | jfieldID gOptions_screenDensityFieldID; |
| 49 | jfieldID gOptions_targetDensityFieldID; |
| Joseph Wen | f1f48bc | 2010-07-19 16:59:51 +0800 | [diff] [blame] | 50 | jfieldID gOptions_widthFieldID; |
| 51 | jfieldID gOptions_heightFieldID; |
| 52 | jfieldID gOptions_mimeFieldID; |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 53 | jfieldID gOptions_outConfigFieldID; |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 54 | jfieldID gOptions_outColorSpaceFieldID; |
| Joseph Wen | f1f48bc | 2010-07-19 16:59:51 +0800 | [diff] [blame] | 55 | jfieldID gOptions_mCancelID; |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 56 | jfieldID gOptions_bitmapFieldID; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 57 | |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 58 | jfieldID gBitmap_ninePatchInsetsFieldID; |
| 59 | |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 60 | jclass gBitmapConfig_class; |
| 61 | jmethodID gBitmapConfig_nativeToConfigMethodID; |
| 62 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | using namespace android; |
| 64 | |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 65 | const char* getMimeType(SkEncodedImageFormat format) { |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 66 | switch (format) { |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 67 | case SkEncodedImageFormat::kBMP: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 68 | return "image/bmp"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 69 | case SkEncodedImageFormat::kGIF: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 70 | return "image/gif"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 71 | case SkEncodedImageFormat::kICO: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 72 | return "image/x-ico"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 73 | case SkEncodedImageFormat::kJPEG: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 74 | return "image/jpeg"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 75 | case SkEncodedImageFormat::kPNG: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 76 | return "image/png"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 77 | case SkEncodedImageFormat::kWEBP: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 78 | return "image/webp"; |
| Chong Zhang | 48fa890 | 2017-08-16 11:57:02 -0700 | [diff] [blame] | 79 | case SkEncodedImageFormat::kHEIF: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 80 | return "image/heif"; |
| Vignesh Venkatasubramanian | 4a46b9e | 2020-11-05 22:55:43 -0800 | [diff] [blame] | 81 | case SkEncodedImageFormat::kAVIF: |
| 82 | return "image/avif"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 83 | case SkEncodedImageFormat::kWBMP: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 84 | return "image/vnd.wap.wbmp"; |
| Hal Canary | 10219fb | 2016-11-23 20:41:22 -0500 | [diff] [blame] | 85 | case SkEncodedImageFormat::kDNG: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 86 | return "image/x-adobe-dng"; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 87 | default: |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 88 | return nullptr; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 89 | } |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 90 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 91 | |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 92 | jstring getMimeTypeAsJavaString(JNIEnv* env, SkEncodedImageFormat format) { |
| Vladimir Marko | 7ab249a | 2015-01-06 18:17:52 +0000 | [diff] [blame] | 93 | jstring jstr = nullptr; |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 94 | const char* mimeType = getMimeType(format); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 95 | if (mimeType) { |
| Vladimir Marko | 7ab249a | 2015-01-06 18:17:52 +0000 | [diff] [blame] | 96 | // NOTE: Caller should env->ExceptionCheck() for OOM |
| 97 | // (can't check for nullptr as it's a valid return value) |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 98 | jstr = env->NewStringUTF(mimeType); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 99 | } |
| 100 | return jstr; |
| 101 | } |
| 102 | |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 103 | class ScaleCheckingAllocator : public SkBitmap::HeapAllocator { |
| 104 | public: |
| 105 | ScaleCheckingAllocator(float scale, int size) |
| 106 | : mScale(scale), mSize(size) { |
| 107 | } |
| 108 | |
| Mike Reed | 81397c4 | 2017-07-18 17:04:16 -0400 | [diff] [blame] | 109 | virtual bool allocPixelRef(SkBitmap* bitmap) { |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 110 | // accounts for scale in final allocation, using eventual size and config |
| Leon Scroggins III | ef691a3d | 2017-07-10 17:03:55 -0400 | [diff] [blame] | 111 | const int bytesPerPixel = SkColorTypeBytesPerPixel(bitmap->colorType()); |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 112 | const int requestedSize = bytesPerPixel * |
| 113 | int(bitmap->width() * mScale + 0.5f) * |
| 114 | int(bitmap->height() * mScale + 0.5f); |
| 115 | if (requestedSize > mSize) { |
| 116 | ALOGW("bitmap for alloc reuse (%d bytes) can't fit scaled bitmap (%d bytes)", |
| 117 | mSize, requestedSize); |
| 118 | return false; |
| 119 | } |
| Mike Reed | 81397c4 | 2017-07-18 17:04:16 -0400 | [diff] [blame] | 120 | return SkBitmap::HeapAllocator::allocPixelRef(bitmap); |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 121 | } |
| 122 | private: |
| 123 | const float mScale; |
| 124 | const int mSize; |
| 125 | }; |
| 126 | |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 127 | class RecyclingPixelAllocator : public SkBitmap::Allocator { |
| 128 | public: |
| sergeyv | c1c5406 | 2016-10-19 18:47:26 -0700 | [diff] [blame] | 129 | RecyclingPixelAllocator(android::Bitmap* bitmap, unsigned int size) |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 130 | : mBitmap(bitmap), mSize(size) { |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | ~RecyclingPixelAllocator() { |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| Mike Reed | 81397c4 | 2017-07-18 17:04:16 -0400 | [diff] [blame] | 136 | virtual bool allocPixelRef(SkBitmap* bitmap) { |
| Leon Scroggins | 46cb9bd | 2014-03-06 15:36:39 -0500 | [diff] [blame] | 137 | const SkImageInfo& info = bitmap->info(); |
| Leon Scroggins III | f35b989 | 2015-07-31 10:38:40 -0400 | [diff] [blame] | 138 | if (info.colorType() == kUnknown_SkColorType) { |
| Leon Scroggins | 46cb9bd | 2014-03-06 15:36:39 -0500 | [diff] [blame] | 139 | ALOGW("unable to reuse a bitmap as the target has an unknown bitmap configuration"); |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 140 | return false; |
| 141 | } |
| Chris Craik | cd0ba71 | 2013-09-06 14:40:30 -0700 | [diff] [blame] | 142 | |
| Mike Reed | 7569de0 | 2017-10-06 16:25:49 -0400 | [diff] [blame] | 143 | const size_t size = info.computeByteSize(bitmap->rowBytes()); |
| Kevin Lubick | bab0bb3 | 2023-01-17 15:30:34 +0000 | [diff] [blame] | 144 | if (size > INT32_MAX) { |
| Leon Scroggins | 46cb9bd | 2014-03-06 15:36:39 -0500 | [diff] [blame] | 145 | ALOGW("bitmap is too large"); |
| 146 | return false; |
| 147 | } |
| 148 | |
| Leon Scroggins | 46cb9bd | 2014-03-06 15:36:39 -0500 | [diff] [blame] | 149 | if (size > mSize) { |
| Dan Albert | 46d8444 | 2014-11-18 16:07:51 -0800 | [diff] [blame] | 150 | ALOGW("bitmap marked for reuse (%u bytes) can't fit new bitmap " |
| 151 | "(%zu bytes)", mSize, size); |
| Derek Sollenberger | b644a3b | 2014-01-17 15:45:10 -0500 | [diff] [blame] | 152 | return false; |
| 153 | } |
| 154 | |
| Leon Scroggins III | f51a80d | 2017-07-12 10:46:35 -0400 | [diff] [blame] | 155 | mBitmap->reconfigure(info, bitmap->rowBytes()); |
| Mike Reed | 826deef | 2017-04-04 15:32:04 -0400 | [diff] [blame] | 156 | bitmap->setPixelRef(sk_ref_sp(mBitmap), 0, 0); |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 157 | return true; |
| 158 | } |
| 159 | |
| 160 | private: |
| sergeyv | c1c5406 | 2016-10-19 18:47:26 -0700 | [diff] [blame] | 161 | android::Bitmap* const mBitmap; |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 162 | const unsigned int mSize; |
| 163 | }; |
| 164 | |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 165 | // Necessary for decodes when the native decoder cannot scale to appropriately match the sampleSize |
| 166 | // (for example, RAW). If the sampleSize divides evenly into the dimension, we require that the |
| 167 | // scale matches exactly. If sampleSize does not divide evenly, we allow the decoder to choose how |
| 168 | // best to round. |
| 169 | static bool needsFineScale(const int fullSize, const int decodedSize, const int sampleSize) { |
| 170 | if (fullSize % sampleSize == 0 && fullSize / sampleSize != decodedSize) { |
| 171 | return true; |
| 172 | } else if ((fullSize / sampleSize + 1) != decodedSize && |
| 173 | (fullSize / sampleSize) != decodedSize) { |
| 174 | return true; |
| 175 | } |
| 176 | return false; |
| 177 | } |
| 178 | |
| 179 | static bool needsFineScale(const SkISize fullSize, const SkISize decodedSize, |
| 180 | const int sampleSize) { |
| 181 | return needsFineScale(fullSize.width(), decodedSize.width(), sampleSize) || |
| 182 | needsFineScale(fullSize.height(), decodedSize.height(), sampleSize); |
| 183 | } |
| 184 | |
| Mike Reed | c7c6560 | 2017-07-26 10:40:25 -0400 | [diff] [blame] | 185 | static jobject doDecode(JNIEnv* env, std::unique_ptr<SkStreamRewindable> stream, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 186 | jobject padding, jobject options, jlong inBitmapHandle, |
| 187 | jlong colorSpaceHandle) { |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 188 | // Set default values for the options parameters. |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 189 | int sampleSize = 1; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 190 | bool onlyDecodeSize = false; |
| Mike Reed | 42a1d08 | 2014-07-07 18:06:18 -0400 | [diff] [blame] | 191 | SkColorType prefColorType = kN32_SkColorType; |
| sergeyv | da6c8ffc | 2016-11-22 18:28:54 -0800 | [diff] [blame] | 192 | bool isHardware = false; |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 193 | bool isMutable = false; |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 194 | float scale = 1.0f; |
| Chris Craik | 1abf5d6 | 2013-08-16 12:47:03 -0700 | [diff] [blame] | 195 | bool requireUnpremultiplied = false; |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 196 | jobject javaBitmap = NULL; |
| Leon Scroggins III | 0e443d1 | 2018-12-19 11:38:35 -0500 | [diff] [blame] | 197 | sk_sp<SkColorSpace> prefColorSpace = GraphicsJNI::getNativeColorSpace(colorSpaceHandle); |
| Elliott Hughes | a3804cf | 2011-04-11 16:50:19 -0700 | [diff] [blame] | 198 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 199 | // Update with options supplied by the client. |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 200 | if (options != NULL) { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 201 | sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 202 | // Correct a non-positive sampleSize. sampleSize defaults to zero within the |
| 203 | // options object, which is strange. |
| 204 | if (sampleSize <= 0) { |
| 205 | sampleSize = 1; |
| 206 | } |
| 207 | |
| 208 | if (env->GetBooleanField(options, gOptions_justBoundsFieldID)) { |
| 209 | onlyDecodeSize = true; |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 210 | } |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 211 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 212 | // initialize these, in case we fail later on |
| 213 | env->SetIntField(options, gOptions_widthFieldID, -1); |
| 214 | env->SetIntField(options, gOptions_heightFieldID, -1); |
| 215 | env->SetObjectField(options, gOptions_mimeFieldID, 0); |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 216 | env->SetObjectField(options, gOptions_outConfigFieldID, 0); |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 217 | env->SetObjectField(options, gOptions_outColorSpaceFieldID, 0); |
| Elliott Hughes | a3804cf | 2011-04-11 16:50:19 -0700 | [diff] [blame] | 218 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 219 | jobject jconfig = env->GetObjectField(options, gOptions_configFieldID); |
| Mike Reed | 42a1d08 | 2014-07-07 18:06:18 -0400 | [diff] [blame] | 220 | prefColorType = GraphicsJNI::getNativeBitmapColorType(env, jconfig); |
| sergeyv | da6c8ffc | 2016-11-22 18:28:54 -0800 | [diff] [blame] | 221 | isHardware = GraphicsJNI::isHardwareConfig(env, jconfig); |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 222 | isMutable = env->GetBooleanField(options, gOptions_mutableFieldID); |
| Chris Craik | 1abf5d6 | 2013-08-16 12:47:03 -0700 | [diff] [blame] | 223 | requireUnpremultiplied = !env->GetBooleanField(options, gOptions_premultipliedFieldID); |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 224 | javaBitmap = env->GetObjectField(options, gOptions_bitmapFieldID); |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 225 | |
| 226 | if (env->GetBooleanField(options, gOptions_scaledFieldID)) { |
| 227 | const int density = env->GetIntField(options, gOptions_densityFieldID); |
| 228 | const int targetDensity = env->GetIntField(options, gOptions_targetDensityFieldID); |
| 229 | const int screenDensity = env->GetIntField(options, gOptions_screenDensityFieldID); |
| 230 | if (density != 0 && targetDensity != 0 && density != screenDensity) { |
| 231 | scale = (float) targetDensity / density; |
| 232 | } |
| 233 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 234 | } |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 235 | |
| sergeyv | 9fbb0b5 | 2016-11-23 10:27:33 -0800 | [diff] [blame] | 236 | if (isMutable && isHardware) { |
| Hans Boehm | e5b337d | 2019-01-07 17:42:05 -0800 | [diff] [blame] | 237 | doThrowIAE(env, "Bitmaps with Config.HARDWARE are always immutable"); |
| sergeyv | 9fbb0b5 | 2016-11-23 10:27:33 -0800 | [diff] [blame] | 238 | return nullObjectReturn("Cannot create mutable hardware bitmap"); |
| 239 | } |
| 240 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 241 | // Create the codec. |
| 242 | NinePatchPeeker peeker; |
| Leon Scroggins III | c782ad8 | 2018-01-14 10:50:45 -0500 | [diff] [blame] | 243 | std::unique_ptr<SkAndroidCodec> codec; |
| 244 | { |
| 245 | SkCodec::Result result; |
| 246 | std::unique_ptr<SkCodec> c = SkCodec::MakeFromStream(std::move(stream), &result, |
| 247 | &peeker); |
| 248 | if (!c) { |
| 249 | SkString msg; |
| 250 | msg.printf("Failed to create image decoder with message '%s'", |
| 251 | SkCodec::ResultToString(result)); |
| 252 | return nullObjectReturn(msg.c_str()); |
| 253 | } |
| 254 | |
| 255 | codec = SkAndroidCodec::MakeFromCodec(std::move(c)); |
| 256 | if (!codec) { |
| 257 | return nullObjectReturn("SkAndroidCodec::MakeFromCodec returned null"); |
| 258 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 259 | } |
| Elliott Hughes | a3804cf | 2011-04-11 16:50:19 -0700 | [diff] [blame] | 260 | |
| Matt Sarett | 3b1b68d | 2015-12-14 13:08:33 -0500 | [diff] [blame] | 261 | // Do not allow ninepatch decodes to 565. In the past, decodes to 565 |
| 262 | // would dither, and we do not want to pre-dither ninepatches, since we |
| 263 | // know that they will be stretched. We no longer dither 565 decodes, |
| 264 | // but we continue to prevent ninepatches from decoding to 565, in order |
| 265 | // to maintain the old behavior. |
| 266 | if (peeker.mPatch && kRGB_565_SkColorType == prefColorType) { |
| 267 | prefColorType = kN32_SkColorType; |
| 268 | } |
| 269 | |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 270 | // Determine the output size. |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 271 | SkISize size = codec->getSampledDimensions(sampleSize); |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 272 | |
| 273 | int scaledWidth = size.width(); |
| 274 | int scaledHeight = size.height(); |
| 275 | bool willScale = false; |
| 276 | |
| 277 | // Apply a fine scaling step if necessary. |
| 278 | if (needsFineScale(codec->getInfo().dimensions(), size, sampleSize)) { |
| 279 | willScale = true; |
| 280 | scaledWidth = codec->getInfo().width() / sampleSize; |
| 281 | scaledHeight = codec->getInfo().height() / sampleSize; |
| 282 | } |
| 283 | |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 284 | // Set the decode colorType |
| 285 | SkColorType decodeColorType = codec->computeOutputColorType(prefColorType); |
| Leon Scroggins III | ee3bfe7 | 2019-01-31 08:42:23 -0500 | [diff] [blame] | 286 | if (decodeColorType == kRGBA_F16_SkColorType && isHardware && |
| 287 | !uirenderer::HardwareBitmapUploader::hasFP16Support()) { |
| 288 | decodeColorType = kN32_SkColorType; |
| 289 | } |
| 290 | |
| Romain Guy | 95648b8 | 2017-04-13 18:43:42 -0700 | [diff] [blame] | 291 | sk_sp<SkColorSpace> decodeColorSpace = codec->computeOutputColorSpace( |
| 292 | decodeColorType, prefColorSpace); |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 293 | |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 294 | // Set the options and return if the client only wants the size. |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 295 | if (options != NULL) { |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 296 | jstring mimeType = getMimeTypeAsJavaString(env, codec->getEncodedFormat()); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 297 | if (env->ExceptionCheck()) { |
| Leon Scroggins III | 407b544 | 2019-11-22 17:10:20 -0500 | [diff] [blame] | 298 | return nullObjectReturn("OOM in getMimeTypeAsJavaString()"); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 299 | } |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 300 | env->SetIntField(options, gOptions_widthFieldID, scaledWidth); |
| 301 | env->SetIntField(options, gOptions_heightFieldID, scaledHeight); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 302 | env->SetObjectField(options, gOptions_mimeFieldID, mimeType); |
| 303 | |
| Leon Scroggins III | ef691a3d | 2017-07-10 17:03:55 -0400 | [diff] [blame] | 304 | jint configID = GraphicsJNI::colorTypeToLegacyBitmapConfig(decodeColorType); |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 305 | if (isHardware) { |
| 306 | configID = GraphicsJNI::kHardware_LegacyBitmapConfig; |
| 307 | } |
| 308 | jobject config = env->CallStaticObjectMethod(gBitmapConfig_class, |
| 309 | gBitmapConfig_nativeToConfigMethodID, configID); |
| 310 | env->SetObjectField(options, gOptions_outConfigFieldID, config); |
| 311 | |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 312 | env->SetObjectField(options, gOptions_outColorSpaceFieldID, |
| Derek Sollenberger | bf3e464 | 2019-01-30 11:28:27 -0500 | [diff] [blame] | 313 | GraphicsJNI::getColorSpace(env, decodeColorSpace.get(), decodeColorType)); |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 314 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 315 | if (onlyDecodeSize) { |
| 316 | return nullptr; |
| 317 | } |
| 318 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 319 | |
| Anton Daubert | 4e5ec34 | 2016-03-07 17:30:20 +0100 | [diff] [blame] | 320 | // Scale is necessary due to density differences. |
| 321 | if (scale != 1.0f) { |
| 322 | willScale = true; |
| 323 | scaledWidth = static_cast<int>(scaledWidth * scale + 0.5f); |
| 324 | scaledHeight = static_cast<int>(scaledHeight * scale + 0.5f); |
| 325 | } |
| 326 | |
| sergeyv | c1c5406 | 2016-10-19 18:47:26 -0700 | [diff] [blame] | 327 | android::Bitmap* reuseBitmap = nullptr; |
| Chris Craik | 9f58361 | 2013-05-20 18:13:47 -0700 | [diff] [blame] | 328 | unsigned int existingBufferSize = 0; |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 329 | if (javaBitmap != nullptr) { |
| 330 | reuseBitmap = &bitmap::toBitmap(inBitmapHandle); |
| sergeyv | c69853c | 2016-10-07 14:14:09 -0700 | [diff] [blame] | 331 | if (reuseBitmap->isImmutable()) { |
| Derek Sollenberger | 2a6ecae | 2012-08-31 14:03:51 -0400 | [diff] [blame] | 332 | ALOGW("Unable to reuse an immutable bitmap as an image decoder target."); |
| Leon Scroggins III | ca8aef6 | 2019-03-26 12:11:27 -0400 | [diff] [blame] | 333 | javaBitmap = nullptr; |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 334 | reuseBitmap = nullptr; |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 335 | } else { |
| Leon Scroggins III | ca8aef6 | 2019-03-26 12:11:27 -0400 | [diff] [blame] | 336 | existingBufferSize = reuseBitmap->getAllocationByteCount(); |
| Derek Sollenberger | 2a6ecae | 2012-08-31 14:03:51 -0400 | [diff] [blame] | 337 | } |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 338 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 339 | |
| sergeyv | 4508218 | 2016-09-29 18:25:40 -0700 | [diff] [blame] | 340 | HeapAllocator defaultAllocator; |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 341 | RecyclingPixelAllocator recyclingAllocator(reuseBitmap, existingBufferSize); |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 342 | ScaleCheckingAllocator scaleCheckingAllocator(scale, existingBufferSize); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 343 | SkBitmap::HeapAllocator heapAllocator; |
| 344 | SkBitmap::Allocator* decodeAllocator; |
| 345 | if (javaBitmap != nullptr && willScale) { |
| 346 | // This will allocate pixels using a HeapAllocator, since there will be an extra |
| 347 | // scaling step that copies these pixels into Java memory. This allocator |
| 348 | // also checks that the recycled javaBitmap is large enough. |
| 349 | decodeAllocator = &scaleCheckingAllocator; |
| 350 | } else if (javaBitmap != nullptr) { |
| 351 | decodeAllocator = &recyclingAllocator; |
| sergeyv | da6c8ffc | 2016-11-22 18:28:54 -0800 | [diff] [blame] | 352 | } else if (willScale || isHardware) { |
| 353 | // This will allocate pixels using a HeapAllocator, |
| 354 | // for scale case: there will be an extra scaling step. |
| 355 | // for hardware case: there will be extra swizzling & upload to gralloc step. |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 356 | decodeAllocator = &heapAllocator; |
| 357 | } else { |
| sergeyv | 4508218 | 2016-09-29 18:25:40 -0700 | [diff] [blame] | 358 | decodeAllocator = &defaultAllocator; |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 359 | } |
| 360 | |
| Matt Sarett | 9e7cd63 | 2015-12-11 10:54:28 -0500 | [diff] [blame] | 361 | SkAlphaType alphaType = codec->computeOutputAlphaType(requireUnpremultiplied); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 362 | |
| Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 363 | const SkImageInfo decodeInfo = SkImageInfo::Make(size.width(), size.height(), |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 364 | decodeColorType, alphaType, decodeColorSpace); |
| Matt Sarett | 6c38257 | 2017-02-21 17:42:41 -0500 | [diff] [blame] | 365 | |
| Matt Sarett | 327c720 | 2017-02-22 17:38:20 -0500 | [diff] [blame] | 366 | SkImageInfo bitmapInfo = decodeInfo; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 367 | if (decodeColorType == kGray_8_SkColorType) { |
| 368 | // The legacy implementation of BitmapFactory used kAlpha8 for |
| 369 | // grayscale images (before kGray8 existed). While the codec |
| 370 | // recognizes kGray8, we need to decode into a kAlpha8 bitmap |
| 371 | // in order to avoid a behavior change. |
| Matt Sarett | ee80c471 | 2016-06-03 10:23:38 -0400 | [diff] [blame] | 372 | bitmapInfo = |
| 373 | bitmapInfo.makeColorType(kAlpha_8_SkColorType).makeAlphaType(kPremul_SkAlphaType); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 374 | } |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 375 | SkBitmap decodingBitmap; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 376 | if (!decodingBitmap.setInfo(bitmapInfo) || |
| Mike Reed | 81397c4 | 2017-07-18 17:04:16 -0400 | [diff] [blame] | 377 | !decodingBitmap.tryAllocPixels(decodeAllocator)) { |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 378 | // SkAndroidCodec should recommend a valid SkImageInfo, so setInfo() |
| 379 | // should only only fail if the calculated value for rowBytes is too |
| 380 | // large. |
| 381 | // tryAllocPixels() can fail due to OOM on the Java heap, OOM on the |
| 382 | // native heap, or the recycled javaBitmap being too small to reuse. |
| 383 | return nullptr; |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 384 | } |
| 385 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 386 | // Use SkAndroidCodec to perform the decode. |
| 387 | SkAndroidCodec::AndroidOptions codecOptions; |
| Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 388 | codecOptions.fZeroInitialized = decodeAllocator == &defaultAllocator ? |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 389 | SkCodec::kYes_ZeroInitialized : SkCodec::kNo_ZeroInitialized; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 390 | codecOptions.fSampleSize = sampleSize; |
| 391 | SkCodec::Result result = codec->getAndroidPixels(decodeInfo, decodingBitmap.getPixels(), |
| 392 | decodingBitmap.rowBytes(), &codecOptions); |
| 393 | switch (result) { |
| 394 | case SkCodec::kSuccess: |
| 395 | case SkCodec::kIncompleteInput: |
| 396 | break; |
| 397 | default: |
| Matt Sarett | 3b1b68d | 2015-12-14 13:08:33 -0500 | [diff] [blame] | 398 | return nullObjectReturn("codec->getAndroidPixels() failed."); |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 399 | } |
| 400 | |
| Stan Iliev | 7aedf6f | 2017-12-20 12:22:59 -0500 | [diff] [blame] | 401 | // This is weird so let me explain: we could use the scale parameter |
| 402 | // directly, but for historical reasons this is how the corresponding |
| 403 | // Dalvik code has always behaved. We simply recreate the behavior here. |
| 404 | // The result is slightly different from simply using scale because of |
| 405 | // the 0.5f rounding bias applied when computing the target image size |
| 406 | const float scaleX = scaledWidth / float(decodingBitmap.width()); |
| 407 | const float scaleY = scaledHeight / float(decodingBitmap.height()); |
| 408 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 409 | jbyteArray ninePatchChunk = NULL; |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 410 | if (peeker.mPatch != NULL) { |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 411 | if (willScale) { |
| Stan Iliev | 7aedf6f | 2017-12-20 12:22:59 -0500 | [diff] [blame] | 412 | peeker.scale(scaleX, scaleY, scaledWidth, scaledHeight); |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 413 | } |
| 414 | |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 415 | size_t ninePatchArraySize = peeker.mPatch->serializedSize(); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 416 | ninePatchChunk = env->NewByteArray(ninePatchArraySize); |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 417 | if (ninePatchChunk == NULL) { |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 418 | return nullObjectReturn("ninePatchChunk == null"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 419 | } |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 420 | |
| 421 | jbyte* array = (jbyte*) env->GetPrimitiveArrayCritical(ninePatchChunk, NULL); |
| 422 | if (array == NULL) { |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 423 | return nullObjectReturn("primitive array == null"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 424 | } |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 425 | |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 426 | memcpy(array, peeker.mPatch, peeker.mPatchSize); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 427 | env->ReleasePrimitiveArrayCritical(ninePatchChunk, array, 0); |
| 428 | } |
| 429 | |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 430 | jobject ninePatchInsets = NULL; |
| 431 | if (peeker.mHasInsets) { |
| Leon Scroggins III | 0c01dbf | 2017-10-20 14:08:11 -0400 | [diff] [blame] | 432 | ninePatchInsets = peeker.createNinePatchInsets(env, scale); |
| Mathieu Chartier | a08d10f | 2014-08-29 16:55:55 -0700 | [diff] [blame] | 433 | if (ninePatchInsets == NULL) { |
| 434 | return nullObjectReturn("nine patch insets == null"); |
| 435 | } |
| Amith Yamasani | ec4a504 | 2012-04-04 10:27:15 -0700 | [diff] [blame] | 436 | if (javaBitmap != NULL) { |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 437 | env->SetObjectField(javaBitmap, gBitmap_ninePatchInsetsFieldID, ninePatchInsets); |
| Amith Yamasani | ec4a504 | 2012-04-04 10:27:15 -0700 | [diff] [blame] | 438 | } |
| 439 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 440 | |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 441 | SkBitmap outputBitmap; |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 442 | if (willScale) { |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 443 | // Set the allocator for the outputBitmap. |
| 444 | SkBitmap::Allocator* outputAllocator; |
| 445 | if (javaBitmap != nullptr) { |
| 446 | outputAllocator = &recyclingAllocator; |
| 447 | } else { |
| sergeyv | 4508218 | 2016-09-29 18:25:40 -0700 | [diff] [blame] | 448 | outputAllocator = &defaultAllocator; |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 449 | } |
| 450 | |
| Leon Scroggins III | ef691a3d | 2017-07-10 17:03:55 -0400 | [diff] [blame] | 451 | SkColorType scaledColorType = decodingBitmap.colorType(); |
| Leon Scroggins III | 8790be6 | 2013-12-03 16:26:51 -0500 | [diff] [blame] | 452 | // FIXME: If the alphaType is kUnpremul and the image has alpha, the |
| 453 | // colors may not be correct, since Skia does not yet support drawing |
| 454 | // to/from unpremultiplied bitmaps. |
| Matt Sarett | ee80c471 | 2016-06-03 10:23:38 -0400 | [diff] [blame] | 455 | outputBitmap.setInfo( |
| 456 | bitmapInfo.makeWH(scaledWidth, scaledHeight).makeColorType(scaledColorType)); |
| Mike Reed | 81397c4 | 2017-07-18 17:04:16 -0400 | [diff] [blame] | 457 | if (!outputBitmap.tryAllocPixels(outputAllocator)) { |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 458 | // This should only fail on OOM. The recyclingAllocator should have |
| 459 | // enough memory since we check this before decoding using the |
| 460 | // scaleCheckingAllocator. |
| Raph Levien | 005bfc6 | 2012-09-20 22:51:47 -0700 | [diff] [blame] | 461 | return nullObjectReturn("allocation failed for scaled bitmap"); |
| 462 | } |
| Leon Scroggins III | 1ffe727 | 2013-09-19 11:34:06 -0400 | [diff] [blame] | 463 | |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 464 | SkPaint paint; |
| Romain Guy | 253f2c2 | 2016-09-28 17:34:42 -0700 | [diff] [blame] | 465 | // kSrc_Mode instructs us to overwrite the uninitialized pixels in |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 466 | // outputBitmap. Otherwise we would blend by default, which is not |
| 467 | // what we want. |
| Mike Reed | 260ab72 | 2016-10-07 15:59:20 -0400 | [diff] [blame] | 468 | paint.setBlendMode(SkBlendMode::kSrc); |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 469 | |
| Matt Sarett | ca9b703 | 2017-04-13 12:18:47 -0400 | [diff] [blame] | 470 | SkCanvas canvas(outputBitmap, SkCanvas::ColorBehavior::kLegacy); |
| Stan Iliev | 7aedf6f | 2017-12-20 12:22:59 -0500 | [diff] [blame] | 471 | canvas.scale(scaleX, scaleY); |
| Mike Reed | 7994a31 | 2021-01-28 18:06:26 -0500 | [diff] [blame] | 472 | decodingBitmap.setImmutable(); // so .asImage() doesn't make a copy |
| 473 | canvas.drawImage(decodingBitmap.asImage(), 0.0f, 0.0f, |
| 474 | SkSamplingOptions(SkFilterMode::kLinear), &paint); |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 475 | } else { |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 476 | outputBitmap.swap(decodingBitmap); |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 477 | } |
| 478 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 479 | if (padding) { |
| Leon Scroggins III | 0c01dbf | 2017-10-20 14:08:11 -0400 | [diff] [blame] | 480 | peeker.getPadding(env, padding); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 481 | } |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 482 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 483 | // If we get here, the outputBitmap should have an installed pixelref. |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 484 | if (outputBitmap.pixelRef() == NULL) { |
| Marco Nelissen | b2fe3be | 2012-05-07 11:24:13 -0700 | [diff] [blame] | 485 | return nullObjectReturn("Got null SkPixelRef"); |
| 486 | } |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 487 | |
| Chris Craik | 7e8c03c | 2013-06-03 13:53:36 -0700 | [diff] [blame] | 488 | if (!isMutable && javaBitmap == NULL) { |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 489 | // promise we will never change our pixels (great for sharing and pictures) |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 490 | outputBitmap.setImmutable(); |
| Romain Guy | 2361098 | 2011-01-17 12:51:55 -0800 | [diff] [blame] | 491 | } |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 492 | |
| Matt Sarett | b8adc9a | 2015-12-02 13:35:22 -0500 | [diff] [blame] | 493 | bool isPremultiplied = !requireUnpremultiplied; |
| 494 | if (javaBitmap != nullptr) { |
| sergeyv | c69853c | 2016-10-07 14:14:09 -0700 | [diff] [blame] | 495 | bitmap::reinitBitmap(env, javaBitmap, outputBitmap.info(), isPremultiplied); |
| John Reck | f29ed28 | 2015-04-07 07:32:03 -0700 | [diff] [blame] | 496 | outputBitmap.notifyPixelsChanged(); |
| Chet Haase | 37f74ca | 2010-12-08 17:56:36 -0800 | [diff] [blame] | 497 | // If a java bitmap was passed in for reuse, pass it back |
| 498 | return javaBitmap; |
| 499 | } |
| Chris Craik | 1abf5d6 | 2013-08-16 12:47:03 -0700 | [diff] [blame] | 500 | |
| 501 | int bitmapCreateFlags = 0x0; |
| sergeyv | c69853c | 2016-10-07 14:14:09 -0700 | [diff] [blame] | 502 | if (isMutable) bitmapCreateFlags |= android::bitmap::kBitmapCreateFlag_Mutable; |
| 503 | if (isPremultiplied) bitmapCreateFlags |= android::bitmap::kBitmapCreateFlag_Premultiplied; |
| Chris Craik | 1abf5d6 | 2013-08-16 12:47:03 -0700 | [diff] [blame] | 504 | |
| sergeyv | da6c8ffc | 2016-11-22 18:28:54 -0800 | [diff] [blame] | 505 | if (isHardware) { |
| 506 | sk_sp<Bitmap> hardwareBitmap = Bitmap::allocateHardwareBitmap(outputBitmap); |
| sergeyv | d67bb1e | 2017-06-28 12:44:03 -0700 | [diff] [blame] | 507 | if (!hardwareBitmap.get()) { |
| 508 | return nullObjectReturn("Failed to allocate a hardware bitmap"); |
| 509 | } |
| sergeyv | da6c8ffc | 2016-11-22 18:28:54 -0800 | [diff] [blame] | 510 | return bitmap::createBitmap(env, hardwareBitmap.release(), bitmapCreateFlags, |
| 511 | ninePatchChunk, ninePatchInsets, -1); |
| 512 | } |
| 513 | |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 514 | // now create the java bitmap |
| Leon Scroggins III | 300af26 | 2019-03-14 08:07:15 -0400 | [diff] [blame] | 515 | return bitmap::createBitmap(env, defaultAllocator.getStorageObjAndReset(), |
| 516 | bitmapCreateFlags, ninePatchChunk, ninePatchInsets, -1); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 517 | } |
| 518 | |
| Chris Craik | 905e824 | 2013-06-05 09:59:05 -0700 | [diff] [blame] | 519 | static jobject nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 520 | jobject padding, jobject options, jlong inBitmapHandle, jlong colorSpaceHandle) { |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 521 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 522 | jobject bitmap = NULL; |
| Ben Wagner | 60126ef | 2015-08-07 12:13:48 -0400 | [diff] [blame] | 523 | std::unique_ptr<SkStream> stream(CreateJavaInputStreamAdaptor(env, is, storage)); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 524 | |
| Leon Scroggins III | ca32021 | 2013-08-20 17:59:39 -0400 | [diff] [blame] | 525 | if (stream.get()) { |
| Leon Scroggins III | 2bcdf6f | 2020-04-21 14:08:32 -0400 | [diff] [blame] | 526 | std::unique_ptr<SkStreamRewindable> bufferedStream(skia::FrontBufferedStream::Make( |
| 527 | std::move(stream), SkCodec::MinBufferedBytesNeeded())); |
| Leon Scroggins III | 7315f1b | 2013-09-10 20:26:05 -0400 | [diff] [blame] | 528 | SkASSERT(bufferedStream.get() != NULL); |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 529 | bitmap = doDecode(env, std::move(bufferedStream), padding, options, inBitmapHandle, |
| 530 | colorSpaceHandle); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 531 | } |
| 532 | return bitmap; |
| 533 | } |
| 534 | |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 535 | static jobject nativeDecodeFileDescriptor(JNIEnv* env, jobject clazz, jobject fileDescriptor, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 536 | jobject padding, jobject bitmapFactoryOptions, jlong inBitmapHandle, jlong colorSpaceHandle) { |
| Derek Sollenberger | c5882c4 | 2019-10-25 11:11:32 -0400 | [diff] [blame] | 537 | #ifndef __ANDROID__ // LayoutLib for Windows does not support F_DUPFD_CLOEXEC |
| 538 | return nullObjectReturn("Not supported on Windows"); |
| 539 | #else |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 540 | NPE_CHECK_RETURN_ZERO(env, fileDescriptor); |
| 541 | |
| Derek Sollenberger | 5cb769d | 2014-09-24 09:20:09 -0400 | [diff] [blame] | 542 | int descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 543 | |
| Derek Sollenberger | 5827cb5 | 2013-07-26 14:58:06 -0400 | [diff] [blame] | 544 | struct stat fdStat; |
| 545 | if (fstat(descriptor, &fdStat) == -1) { |
| 546 | doThrowIOE(env, "broken file descriptor"); |
| 547 | return nullObjectReturn("fstat return -1"); |
| 548 | } |
| 549 | |
| Derek Sollenberger | 5cb769d | 2014-09-24 09:20:09 -0400 | [diff] [blame] | 550 | // Restore the descriptor's offset on exiting this function. Even though |
| 551 | // we dup the descriptor, both the original and dup refer to the same open |
| 552 | // file description and changes to the file offset in one impact the other. |
| Jérôme Poichet | d29c902 | 2014-09-26 18:59:11 +0000 | [diff] [blame] | 553 | AutoFDSeek autoRestore(descriptor); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 554 | |
| Derek Sollenberger | 5cb769d | 2014-09-24 09:20:09 -0400 | [diff] [blame] | 555 | // Duplicate the descriptor here to prevent leaking memory. A leak occurs |
| 556 | // if we only close the file descriptor and not the file object it is used to |
| 557 | // create. If we don't explicitly clean up the file (which in turn closes the |
| 558 | // descriptor) the buffers allocated internally by fseek will be leaked. |
| Nick Kralevich | 4b3a08c | 2019-01-28 10:39:10 -0800 | [diff] [blame] | 559 | int dupDescriptor = fcntl(descriptor, F_DUPFD_CLOEXEC, 0); |
| Derek Sollenberger | 5cb769d | 2014-09-24 09:20:09 -0400 | [diff] [blame] | 560 | |
| 561 | FILE* file = fdopen(dupDescriptor, "r"); |
| Leon Scroggins III | 0102f8a | 2014-01-14 15:14:57 -0500 | [diff] [blame] | 562 | if (file == NULL) { |
| Derek Sollenberger | 5cb769d | 2014-09-24 09:20:09 -0400 | [diff] [blame] | 563 | // cleanup the duplicated descriptor since it will not be closed when the |
| 564 | // file is cleaned up (fclose). |
| 565 | close(dupDescriptor); |
| Leon Scroggins III | 0102f8a | 2014-01-14 15:14:57 -0500 | [diff] [blame] | 566 | return nullObjectReturn("Could not open file"); |
| Leon Scroggins III | f65183f | 2013-10-07 16:32:14 -0400 | [diff] [blame] | 567 | } |
| Leon Scroggins III | 0102f8a | 2014-01-14 15:14:57 -0500 | [diff] [blame] | 568 | |
| Leon Scroggins III | dd3c06c | 2017-03-10 10:50:33 -0500 | [diff] [blame] | 569 | std::unique_ptr<SkFILEStream> fileStream(new SkFILEStream(file)); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 570 | |
| Yujie Qin | c1d7b7f | 2016-02-29 14:00:29 +0100 | [diff] [blame] | 571 | // If there is no offset for the file descriptor, we use SkFILEStream directly. |
| 572 | if (::lseek(descriptor, 0, SEEK_CUR) == 0) { |
| 573 | assert(isSeekable(dupDescriptor)); |
| Leon Scroggins III | 0e443d1 | 2018-12-19 11:38:35 -0500 | [diff] [blame] | 574 | return doDecode(env, std::move(fileStream), padding, bitmapFactoryOptions, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 575 | inBitmapHandle, colorSpaceHandle); |
| Yujie Qin | c1d7b7f | 2016-02-29 14:00:29 +0100 | [diff] [blame] | 576 | } |
| 577 | |
| Leon Scroggins III | 0aa39dc | 2014-06-03 12:19:32 -0400 | [diff] [blame] | 578 | // Use a buffered stream. Although an SkFILEStream can be rewound, this |
| 579 | // ensures that SkImageDecoder::Factory never rewinds beyond the |
| 580 | // current position of the file descriptor. |
| Leon Scroggins III | 2bcdf6f | 2020-04-21 14:08:32 -0400 | [diff] [blame] | 581 | std::unique_ptr<SkStreamRewindable> stream(skia::FrontBufferedStream::Make( |
| 582 | std::move(fileStream), SkCodec::MinBufferedBytesNeeded())); |
| Leon Scroggins III | 2826e5f | 2014-02-05 19:46:02 -0500 | [diff] [blame] | 583 | |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 584 | return doDecode(env, std::move(stream), padding, bitmapFactoryOptions, inBitmapHandle, |
| 585 | colorSpaceHandle); |
| Derek Sollenberger | c5882c4 | 2019-10-25 11:11:32 -0400 | [diff] [blame] | 586 | #endif |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 587 | } |
| 588 | |
| Ashok Bhat | 36bef0b | 2014-01-20 20:08:01 +0000 | [diff] [blame] | 589 | static jobject nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 590 | jobject padding, jobject options, jlong inBitmapHandle, jlong colorSpaceHandle) { |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 591 | |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 592 | Asset* asset = reinterpret_cast<Asset*>(native_asset); |
| Leon Scroggins III | 0aa39dc | 2014-06-03 12:19:32 -0400 | [diff] [blame] | 593 | // since we know we'll be done with the asset when we return, we can |
| 594 | // just use a simple wrapper |
| Mike Reed | 3cf4282 | 2019-12-12 11:59:49 -0500 | [diff] [blame] | 595 | return doDecode(env, std::make_unique<AssetStreamAdaptor>(asset), padding, options, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 596 | inBitmapHandle, colorSpaceHandle); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | static jobject nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray, |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 600 | jint offset, jint length, jobject options, jlong inBitmapHandle, jlong colorSpaceHandle) { |
| Romain Guy | 7b2f8b8 | 2012-03-19 17:18:54 -0700 | [diff] [blame] | 601 | |
| Mike Reed | c70e06b | 2009-04-24 11:09:12 -0400 | [diff] [blame] | 602 | AutoJavaByteArray ar(env, byteArray); |
| Mike Reed | 3cf4282 | 2019-12-12 11:59:49 -0500 | [diff] [blame] | 603 | return doDecode(env, std::make_unique<SkMemoryStream>(ar.ptr() + offset, length, false), |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 604 | nullptr, options, inBitmapHandle, colorSpaceHandle); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 605 | } |
| 606 | |
| Owen Lin | a9d0d47 | 2011-01-18 17:39:15 +0800 | [diff] [blame] | 607 | static jboolean nativeIsSeekable(JNIEnv* env, jobject, jobject fileDescriptor) { |
| Elliott Hughes | a3804cf | 2011-04-11 16:50:19 -0700 | [diff] [blame] | 608 | jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); |
| Yujie Qin | c1d7b7f | 2016-02-29 14:00:29 +0100 | [diff] [blame] | 609 | return isSeekable(descriptor) ? JNI_TRUE : JNI_FALSE; |
| Owen Lin | a9d0d47 | 2011-01-18 17:39:15 +0800 | [diff] [blame] | 610 | } |
| 611 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 612 | /////////////////////////////////////////////////////////////////////////////// |
| 613 | |
| Daniel Micay | 76f6a86 | 2015-09-19 17:31:01 -0400 | [diff] [blame] | 614 | static const JNINativeMethod gMethods[] = { |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 615 | { "nativeDecodeStream", |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 616 | "(Ljava/io/InputStream;[BLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;JJ)Landroid/graphics/Bitmap;", |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 617 | (void*)nativeDecodeStream |
| 618 | }, |
| 619 | |
| 620 | { "nativeDecodeFileDescriptor", |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 621 | "(Ljava/io/FileDescriptor;Landroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;JJ)Landroid/graphics/Bitmap;", |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 622 | (void*)nativeDecodeFileDescriptor |
| 623 | }, |
| 624 | |
| 625 | { "nativeDecodeAsset", |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 626 | "(JLandroid/graphics/Rect;Landroid/graphics/BitmapFactory$Options;JJ)Landroid/graphics/Bitmap;", |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 627 | (void*)nativeDecodeAsset |
| 628 | }, |
| 629 | |
| 630 | { "nativeDecodeByteArray", |
| Leon Scroggins III | 71fae62 | 2019-03-26 16:28:41 -0400 | [diff] [blame] | 631 | "([BIILandroid/graphics/BitmapFactory$Options;JJ)Landroid/graphics/Bitmap;", |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 632 | (void*)nativeDecodeByteArray |
| 633 | }, |
| 634 | |
| Owen Lin | a9d0d47 | 2011-01-18 17:39:15 +0800 | [diff] [blame] | 635 | { "nativeIsSeekable", |
| 636 | "(Ljava/io/FileDescriptor;)Z", |
| 637 | (void*)nativeIsSeekable |
| 638 | }, |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 639 | }; |
| 640 | |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 641 | int register_android_graphics_BitmapFactory(JNIEnv* env) { |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 642 | jclass options_class = FindClassOrDie(env, "android/graphics/BitmapFactory$Options"); |
| 643 | gOptions_bitmapFieldID = GetFieldIDOrDie(env, options_class, "inBitmap", |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 644 | "Landroid/graphics/Bitmap;"); |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 645 | 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 648 | "Landroid/graphics/Bitmap$Config;"); |
| Romain Guy | 95648b8 | 2017-04-13 18:43:42 -0700 | [diff] [blame] | 649 | gOptions_colorSpaceFieldID = GetFieldIDOrDie(env, options_class, "inPreferredColorSpace", |
| 650 | "Landroid/graphics/ColorSpace;"); |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 651 | 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 Chen | 953f909 | 2010-12-03 14:06:18 -0800 | [diff] [blame] | 655 | "inPreferQualityOverSpeed", "Z"); |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 656 | 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 Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 663 | gOptions_outConfigFieldID = GetFieldIDOrDie(env, options_class, "outConfig", |
| 664 | "Landroid/graphics/Bitmap$Config;"); |
| Romain Guy | 90fc43b | 2017-03-30 12:35:26 -0700 | [diff] [blame] | 665 | gOptions_outColorSpaceFieldID = GetFieldIDOrDie(env, options_class, "outColorSpace", |
| 666 | "Landroid/graphics/ColorSpace;"); |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 667 | gOptions_mCancelID = GetFieldIDOrDie(env, options_class, "mCancel", "Z"); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 668 | |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 669 | jclass bitmap_class = FindClassOrDie(env, "android/graphics/Bitmap"); |
| Andreas Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 670 | gBitmap_ninePatchInsetsFieldID = GetFieldIDOrDie(env, bitmap_class, "mNinePatchInsets", |
| Chris Craik | 47cd8e9 | 2014-07-08 17:13:08 -0700 | [diff] [blame] | 671 | "Landroid/graphics/NinePatch$InsetStruct;"); |
| 672 | |
| Romain Guy | e8d2ebb | 2017-02-09 18:38:47 -0800 | [diff] [blame] | 673 | 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 Gampe | ed6b9df | 2014-11-20 22:02:20 -0800 | [diff] [blame] | 678 | return android::RegisterMethodsOrDie(env, "android/graphics/BitmapFactory", |
| 679 | gMethods, NELEM(gMethods)); |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 680 | } |