Don’t have a solution for you, but I have played with changing resolutions on captured images before saving / sending them to a server…
In doing that, I’m downscaling some pictures, and if you downscale enough, then redisplay it as a full screen image, it would look really pixelly (which is one of the effects you mentioned).
No idea if the technique I’m using can be utilized for your purposes, but a couple lines of code from my picture processing code are below, to show one corona feature that does it… Don’t know if there’s other display. functions that DON’T save to the device, or that can capture the data from the group into another group or image, but maybe… (You’re gonna have to do some homework to see if some variation of this is possible for your purposes). Good Luck!
[code]
– myImage is your already created picture of any size…
myImage.width = 20 – Make it small
myImage.height = 20
local photoGroup = display.newGroup()
photoGroup:insert(myImage)
photoGroup.x = 320 – Place it onscreen somewhere, just for a second for display.save…
photoGroup.y = 480
display.save(photoGroup, imageFilename, baseDir) – This function capture the scaled image
– image has been captured and saved in a file… loading of it loads a 20x20 image…
[/code] [import]uid: 79933 topic_id: 31705 reply_id: 127332[/import]