Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to crop an image selected from camera roll in cornoa sdk?

I have tried masking following this tutorial but this gives me colored background with my cropped image on it. I need cropped image alone. please suggest any help.

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted
local localGroup = display.newGroup()

local backGround = display.newImage(localGroup,"backGround.png")
local imageForCrop = display.newImage(localGroup,"path.png")

local mask = graphics.newMask("mask.png")

localGroup:setMask(mask.png)

--then Capture , or if you don't need to capture circle you can use easy the display.captureBounds(boundsData)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.