I have 4 UIImages (A,B,C,D), each the same 500x500
How can I combine them into a grid 1000x1000 like this:
AB
CD
So that the I have a single UIImage "E"
I have 4 UIImages (A,B,C,D), each the same 500x500
How can I combine them into a grid 1000x1000 like this:
AB
CD
So that the I have a single UIImage "E"
I don't specifically know how but I do know that Apple's PhotoScroller sample code might help? It's a pretty cool trick they have that might work for yours too. Let me know.
You have to create a new image context with the size of the final image:
Then, draw each image in the appropriate rectangle:
You then get the image:
And finally, you must end the image context: