blob: 7a12d382f5461578e50c58c95663abf874686387 [file] [log] [blame]
Xavier Ducrohet02316e52011-02-04 16:40:49 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.graphics;
18
19import com.android.layoutlib.bridge.Bridge;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080020import com.android.layoutlib.bridge.impl.DelegateManager;
21import com.android.ninepatch.NinePatchChunk;
22import com.android.resources.Density;
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -080023import com.android.tools.layoutlib.annotations.LayoutlibDelegate;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080024
Deepanshu Gupta442aee62015-05-22 14:11:22 -070025import android.annotation.Nullable;
Deepanshu Gupta896eb1c2016-03-04 19:31:28 +053026import com.android.layoutlib.bridge.util.NinePatchInputStream;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080027import android.graphics.BitmapFactory.Options;
Deepanshu Guptaed1dc232013-09-03 17:51:48 -070028import android.graphics.Bitmap_Delegate.BitmapCreateFlags;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080029
30import java.io.FileDescriptor;
31import java.io.IOException;
32import java.io.InputStream;
Deepanshu Guptaed1dc232013-09-03 17:51:48 -070033import java.util.EnumSet;
34import java.util.Set;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080035
36/**
37 * Delegate implementing the native methods of android.graphics.BitmapFactory
38 *
39 * Through the layoutlib_create tool, the original native methods of BitmapFactory have been
40 * replaced by calls to methods of the same name in this delegate class.
41 *
42 * Because it's a stateless class to start with, there's no need to keep a {@link DelegateManager}
43 * around to map int to instance of the delegate.
44 *
45 */
46/*package*/ class BitmapFactory_Delegate {
47
48 // ------ Native Delegates ------
49
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -080050 @LayoutlibDelegate
Xavier Ducrohet506cc402012-03-23 16:07:23 -070051 /*package*/ static Bitmap nativeDecodeStream(InputStream is, byte[] storage,
Jerome Gaillard407e1812019-04-01 14:10:13 +010052 @Nullable Rect padding, @Nullable Options opts, long inBitmapHandle,
53 long colorSpaceHandle) {
Xavier Ducrohet02316e52011-02-04 16:40:49 -080054 Bitmap bm = null;
55
56 Density density = Density.MEDIUM;
Deepanshu Guptaed1dc232013-09-03 17:51:48 -070057 Set<BitmapCreateFlags> bitmapCreateFlags = EnumSet.of(BitmapCreateFlags.MUTABLE);
Xavier Ducrohet02316e52011-02-04 16:40:49 -080058 if (opts != null) {
59 density = Density.getEnum(opts.inDensity);
Deepanshu Guptaed1dc232013-09-03 17:51:48 -070060 if (opts.inPremultiplied) {
61 bitmapCreateFlags.add(BitmapCreateFlags.PREMULTIPLIED);
62 }
Deepanshu Gupta13bd2422015-10-05 14:37:54 -070063 opts.inScaled = false;
Xavier Ducrohet02316e52011-02-04 16:40:49 -080064 }
65
66 try {
67 if (is instanceof NinePatchInputStream) {
68 NinePatchInputStream npis = (NinePatchInputStream) is;
69 npis.disableFakeMarkSupport();
70
71 // load the bitmap as a nine patch
72 com.android.ninepatch.NinePatch ninePatch = com.android.ninepatch.NinePatch.load(
73 npis, true /*is9Patch*/, false /*convert*/);
74
75 // get the bitmap and chunk objects.
Xavier Ducrohet02316e52011-02-04 16:40:49 -080076 NinePatchChunk chunk = ninePatch.getChunk();
Leon Scroggins IIIa8b2ce92020-03-06 13:39:26 -050077 bm = Bitmap_Delegate.createBitmap(ninePatch.getImage(),
78 NinePatch_Delegate.serialize(chunk), bitmapCreateFlags, density);
Xavier Ducrohet02316e52011-02-04 16:40:49 -080079
Deepanshu Gupta5da1b052014-06-23 18:37:53 -070080 if (padding != null) {
81 // read the padding
82 int[] paddingArray = chunk.getPadding();
83 padding.left = paddingArray[0];
84 padding.top = paddingArray[1];
85 padding.right = paddingArray[2];
86 padding.bottom = paddingArray[3];
87 }
Xavier Ducrohet02316e52011-02-04 16:40:49 -080088 } else {
89 // load the bitmap directly.
Deepanshu Guptaed1dc232013-09-03 17:51:48 -070090 bm = Bitmap_Delegate.createBitmap(is, bitmapCreateFlags, density);
Xavier Ducrohet02316e52011-02-04 16:40:49 -080091 }
92 } catch (IOException e) {
Jerome Gaillardb484b7e2020-04-14 16:10:43 +010093 Bridge.getLog().error(null, "Failed to load image", e, null, null);
Xavier Ducrohet02316e52011-02-04 16:40:49 -080094 }
95
96 return bm;
97 }
98
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -080099 @LayoutlibDelegate
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800100 /*package*/ static Bitmap nativeDecodeFileDescriptor(FileDescriptor fd,
Jerome Gaillard407e1812019-04-01 14:10:13 +0100101 Rect padding, Options opts, long inBitmapHandle, long colorSpaceHandle) {
Diego Perezab370022017-12-14 15:44:26 +0000102 if (opts != null) {
103 opts.inBitmap = null;
104 }
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800105 return null;
106 }
107
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800108 @LayoutlibDelegate
Jerome Gaillardad7af142019-01-23 17:34:54 +0000109 /*package*/ static Bitmap nativeDecodeAsset(long asset, Rect padding, Options opts,
Jerome Gaillard407e1812019-04-01 14:10:13 +0100110 long inBitmapHandle, long colorSpaceHandle) {
Diego Perezab370022017-12-14 15:44:26 +0000111 if (opts != null) {
112 opts.inBitmap = null;
113 }
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800114 return null;
115 }
116
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800117 @LayoutlibDelegate
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800118 /*package*/ static Bitmap nativeDecodeByteArray(byte[] data, int offset,
Jerome Gaillard407e1812019-04-01 14:10:13 +0100119 int length, Options opts, long inBitmapHandle, long colorSpaceHandle) {
Diego Perezab370022017-12-14 15:44:26 +0000120 if (opts != null) {
121 opts.inBitmap = null;
122 }
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800123 return null;
124 }
125
Xavier Ducrohet94c80bf2011-02-09 17:17:49 -0800126 @LayoutlibDelegate
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800127 /*package*/ static boolean nativeIsSeekable(FileDescriptor fd) {
128 return true;
129 }
Deepanshu Gupta5cd1a102015-12-07 14:02:13 -0800130
131 /**
132 * Set the newly decoded bitmap's density based on the Options.
133 *
134 * Copied from {@link BitmapFactory#setDensityFromOptions(Bitmap, Options)}.
135 */
136 @LayoutlibDelegate
137 /*package*/ static void setDensityFromOptions(Bitmap outputBitmap, Options opts) {
138 if (outputBitmap == null || opts == null) return;
139
140 final int density = opts.inDensity;
141 if (density != 0) {
142 outputBitmap.setDensity(density);
143 final int targetDensity = opts.inTargetDensity;
144 if (targetDensity == 0 || density == targetDensity || density == opts.inScreenDensity) {
145 return;
146 }
147
148 // --- Change from original implementation begins ---
149 // LayoutLib doesn't scale the nine patch when decoding it. Hence, don't change the
150 // density of the source bitmap in case of ninepatch.
151
152 if (opts.inScaled) {
153 // --- Change from original implementation ends. ---
154 outputBitmap.setDensity(targetDensity);
155 }
156 } else if (opts.inBitmap != null) {
157 // bitmap was reused, ensure density is reset
158 outputBitmap.setDensity(Bitmap.getDefaultDensity());
159 }
160 }
Xavier Ducrohet02316e52011-02-04 16:40:49 -0800161}