[TIMOB-16206] Android: ImageView containing large image 3264x2448 fail to upload
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2014-01-16T10:38:56.000+0000 |
Affected Version/s | Release 3.2.0, Release 3.2.1 |
Fix Version/s | n/a |
Components | Android |
Labels | qe-3.2.1, regression |
Reporter | Pragya Rastogi |
Assignee | Ingo Muschenetz |
Created | 2014-01-16T10:37:40.000+0000 |
Updated | 2014-06-19T12:43:04.000+0000 |
Description
Image having large size of approx 3264x2448 fail to upload.
Works fine in SDK: 3.1.3.GA. hence it is a regression
Steps To Reproduce:
1. Create app using code below
2. Use Image of size 3264x2448
Actual: Warning appears
[WARN] : OpenGLRenderer: Bitmap too large to be uploaded into a texture (3264x2448, max=2048x2048)
[WARN] : OpenGLRenderer: Bitmap too large to be uploaded into a texture (3264x2448, max=2048x2048)
Expected:
Image should be uploaded.
var win1 = Titanium.UI.createWindow({
backgroundColor:'white'
});
var image1 = Ti.UI.createImageView({
image: 's2.jpg'
});
win1.add(image1);
win1.open();
Attachments
File | Date | Size |
---|---|---|
s2.jpg | 2014-01-16T10:37:40.000+0000 | 2323112 |
Closing as duplicate of TIMOB-16205