{ "id": "112420", "key": "TIMOB-13447", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "14162", "description": "Release 3.1.0", "name": "Release 3.1.0", "archived": true, "released": true, "releaseDate": "2013-04-16" }, { "id": "15397", "description": "2013 Soprint 07 API", "name": "2013 Sprint 07 API", "archived": true, "released": true, "releaseDate": "2013-04-08" }, { "id": "15105", "description": "2013 Sprint 07", "name": "2013 Sprint 07", "archived": true, "released": true, "releaseDate": "2013-04-08" }, { "id": "14982", "description": "Release 3.2.0", "name": "Release 3.2.0", "archived": false, "released": true, "releaseDate": "2013-12-19" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2013-04-08T21:03:52.000+0000", "created": "2013-04-08T05:02:22.000+0000", "priority": { "name": "Critical", "id": "1" }, "labels": [ "qe-port", "regression", "triage" ], "versions": [ { "id": "14162", "description": "Release 3.1.0", "name": "Release 3.1.0", "archived": true, "released": true, "releaseDate": "2013-04-16" } ], "issuelinks": [], "assignee": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2013-04-09T10:27:05.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "Creating a View with a backgroundImage causes the image to appear low-res and pixelated. This is especially prominent on retina displays, but is noticeable on non-retina as well.", "attachment": [ { "id": "37243", "filename": "lilypad.png", "author": { "name": "pseda", "key": "pseda", "displayName": "Patrick Seda", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-08T20:39:26.000+0000", "size": 11933, "mimeType": "image/png" }, { "id": "37256", "filename": "timob-13447.png", "author": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-09T00:16:30.000+0000", "size": 87907, "mimeType": "image/png" } ], "flagged": false, "summary": "iOS: Views with backgroundImage displays the image as pixelated", "creator": { "name": "pseda", "key": "pseda", "displayName": "Patrick Seda", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "pseda", "key": "pseda", "displayName": "Patrick Seda", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Devices tested:\r\niPad 3, OS: 5.1.1\r\niPad 1, OS: 4.3.5\r\n\r\nBuild environment:\r\nMac OS 10.8.3\r\nTitanium SDK version 3.1.0.v20130402175640", "comment": { "comments": [ { "id": "246450", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "This was most probably caused by the fix for TIMOB-12593. We changed the magnification & minification the filters from linear to nearest", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-04-08T18:11:10.000+0000", "updated": "2013-04-08T18:11:10.000+0000" }, { "id": "246454", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Pull pending https://github.com/appcelerator/titanium_mobile/pull/4120", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-04-08T18:30:34.000+0000", "updated": "2013-04-08T18:30:34.000+0000" }, { "id": "246456", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Backport to 3_1_X https://github.com/appcelerator/titanium_mobile/pull/4121", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-04-08T18:33:10.000+0000", "updated": "2013-04-08T18:33:10.000+0000" }, { "id": "246492", "author": { "name": "pseda", "key": "pseda", "displayName": "Patrick Seda", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Sample test case for replicating.\r\nUsing the attached graphic \"lilypad.png\", the image rendered as a backgroundImage of the View will have pixelated edges in comparision to the ImageView. The issue will be noticeable on simulator but is more pronounced on retina devices.\r\n{code}\r\nvar aWin = Ti.UI.createWindow({backgroundColor:'#fff'});\r\nvar viewWithBG = Ti.UI.createView({\r\n\theight:100, width:250, top:10, left:10,\r\n\tbackgroundImage:'lilypad.png'\r\n});\r\nvar imageView = Ti.UI.createImageView({\r\n\theight:100, width:250, top:10, left:280,\r\n\timage:'lilypad.png'\r\n});\r\naWin.add(viewWithBG);\r\naWin.add(imageView);\r\naWin.open();\r\n{code}", "updateAuthor": { "name": "pseda", "key": "pseda", "displayName": "Patrick Seda", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-08T20:39:27.000+0000", "updated": "2013-04-08T20:39:27.000+0000" }, { "id": "246555", "author": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested and verified fix with:\nAppcelerator Studio, build: 3.1.0.201304052347\nTitanium SDK, build: 3.1.0.v20130405170202\nDevices:\niPad 4 iOS 6.1.3\niPhone5 iOS 6.1.3\niOS 6.1 iPad Simulator\n\nAdded screenshot timob-13447", "updateAuthor": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-09T00:16:02.000+0000", "updated": "2013-04-09T00:16:02.000+0000" }, { "id": "246608", "author": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with:\nSDK: 3.1.0.v20130408154547\nStudio:3.1.0.201304011603\nDevice: iPhone5(v 6.0)\nOS: OSX 10.7.5\n\nWorks as expected.", "updateAuthor": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-09T10:26:23.000+0000", "updated": "2013-04-09T10:26:23.000+0000" }, { "id": "246609", "author": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with:\nSDK: 3.1.0.v20130408154547\nStudio:3.1.0.201304011603\nDevice: iPhone5(v 6.0), iPad2(v 5.1), iPhone simulator\nOS: OSX 10.7.5", "updateAuthor": { "name": "amittal", "key": "amittal", "displayName": "Anshu Mittal", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-09T10:27:05.000+0000", "updated": "2013-04-09T10:27:05.000+0000" } ], "maxResults": 8, "total": 8, "startAt": 0 } } }