Very similar to this question (and also this answer), I\'m trying to make an UIImage out from a webview. So far I\'m using the code suggested in the answer, specifically: <
@Jibeex's answer worked for me. But I had to add the following code
fullSizeFrame.size.width = self.scrollView.contentSize.width
below
fullSizeFrame.size.height = self.scrollView.contentSize.height
for it to fully work. Writing as answer because I don't have enough reputation to comment.