2

如何裁剪从 corona sdk 中的相机胶卷中选择的图像?

我已尝试按照本教程进行遮罩 ,但这为我提供了带有裁剪图像的彩色背景。我需要单独裁剪的图像。

4

1 回答 1

1
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)
于 2012-12-07T08:02:41.190 回答