Hey guys.
I was wondering if this is possible in Corona. I want to combine two pictures into one, which Im currently doing with:
pic1 = display.newImage(“pic1.png”)
pic2 = display.newImage(“pic2.png”)
local bothPics = display.newGroup()
bothPics:insert(pic1)
bothPics:insert(pic2)
bild2.y = bild1.contentHeight
This is just for testing purposes atm, my intention is to make a function which combies n picutres into 1. Either way, this works fine and I get the group displayning in my scrollable scrollview with ease. The only catch is that I would like to save this as one single file to the photo reel. Using display.save only saves the current visible image in the current resolution. Any way to get the whole image group into one file?