将图像合并为单个图像

发布于 2024-12-09 03:54:57 字数 121 浏览 0 评论 0原文

如何将两个 PNG 合并为一张图像?

如果一个图像显示“1”,另一张图像显示“9” - 我想制作一个显示“19”的图像文件。

有一个对象“组”,它将图像分组到一个数组中,但我似乎无法合并组的成员。

How can I combine two PNGs into one image?

If one image is displays "1", and another image displays "9" - I'd like make an image file showing "19".

There is a object "group" which group the images into an array, but it doesn't seem that I can merge the members of a group.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

握住我的手 2024-12-16 03:54:57
number1 = display.newImage( "number1.png" );
number9 = display.newImage( "number9.png" );

number19 = display.newGroup();
number19:insert(number1)
number19:insert(number9)

--Put 9 next to 1
number9.left =number1.width
number1 = display.newImage( "number1.png" );
number9 = display.newImage( "number9.png" );

number19 = display.newGroup();
number19:insert(number1)
number19:insert(number9)

--Put 9 next to 1
number9.left =number1.width
放低过去 2024-12-16 03:54:57

当我需要组合图像时,我使用快照。与组非常相似,快照可以渲染为单个 PNG 或 JPEG。

local Function MakeSnapshot()
    local snapshot = display.newSnapshot(digitWidth*2, digitWidth)  
    local digit1 = display.newImage("number1.png")
    local digit2 = display.newImage("number9.png")

    digit1:translate(-digitWidth/2, 0)
    digit2:translate(digitWidth/2, 0)

    snapshot.group:insert(digit1)
    snapshot.group:insert(digit2)
    snapshot:invalidate()

    --Save file as a single image:
    display.save(snapshot, "19.png", system.DocumentsDirectory)
end

I use a snapshot when I need to combine images. Very similar to a group, the snapshot can be rendered out as a single PNG or JPEG.

local Function MakeSnapshot()
    local snapshot = display.newSnapshot(digitWidth*2, digitWidth)  
    local digit1 = display.newImage("number1.png")
    local digit2 = display.newImage("number9.png")

    digit1:translate(-digitWidth/2, 0)
    digit2:translate(digitWidth/2, 0)

    snapshot.group:insert(digit1)
    snapshot.group:insert(digit2)
    snapshot:invalidate()

    --Save file as a single image:
    display.save(snapshot, "19.png", system.DocumentsDirectory)
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文