[TIMOB-27471] Android: Unable to load large image to image view
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2019-12-03T23:52:53.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Android |
Labels | n/a |
Reporter | Rakhi Mitro |
Assignee | Gary Mathews |
Created | 2019-10-15T11:19:24.000+0000 |
Updated | 2019-12-03T23:52:53.000+0000 |
Description
The customer has a requirement where they need to get image and display it in the image view. Few images are not displayed even though images are bind to the image view.
*It is throwing warning “[WARN] : OpenGLRenderer: Bitmap too large to be uploaded into a texture (4196x3363, max=4096x4096)”.*
I
{panel}
This issue is happening because of size 4196x3363, max=4096x4096. The log mentions the max size max=4096x4096. Is there any solution or workaround for this issue?
Note : This issue is on Nexus 7(OS 6.0.1) and Samsung s4(OS 4.4) devices. It is working fine on Pixel(9.0) device. Tested with 8.0.2.GA Ti SDK and 8.2.0.GA Ti SDK.
{panel}
Sample Test Code:
var win = Ti.UI.createWindow({
backgroundColor : '#fff'
});
win.add(Ti.UI.createImageView({
image : Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, 'test.png'),
width : Ti.UI.SIZE,
height : Ti.UI.SIZE,
borderColor : 'red'
}));
win.open();
*Steps to reproduce:*
1. Create a sample classic project
2. Replace the app.js with attached app.js content.
3. Place the attached test.png under “Resources” folder.
4. Run the app in Nexus 7 device.
*Expected*: Image should bee rendered properly.
*Actual:* Image not rendered and throwing warning in the console.
*Note:*
We tested it and able to reproduce with the big image as like the customer image on HTC M8 eye v6.0.1
Attachments
File | Date | Size |
---|---|---|
imgsample_log.rtf | 2019-10-15T11:19:12.000+0000 | 33407 |
support_consoleLog.txt | 2019-10-15T11:24:55.000+0000 | 65855 |
test.png | 2019-10-15T11:18:14.000+0000 | 230106 |
The GPUs on devices have a limitation on texture size, this is more apparent on older devices. This is not a Titanium issue, but device specific. However, you should be able to mitigate this issue by resizing your images.