Problem with Image

I have an image with the size 4500*3125 pixels. If I want to zoom in on a part of this image and display only that part of it.I want it to work both on iPhone and Ipad, how is it possible?
Looking forward for your support

[import]uid: 87661 topic_id: 25547 reply_id: 325547[/import]

That’s a very large image and you’d be better off using tiles just to help with texture memory, just FYI.

RE zoom, sure -

[lua]image.xScale, image.yScale = 2, 2[/lua]

That will zoom it, then just set image.x and image.y to show the user what you want them to see. [import]uid: 52491 topic_id: 25547 reply_id: 103266[/import]