Last active
December 9, 2025 18:26
-
-
Save A-Zak/3c38d3f83f911a25790f to your computer and use it in GitHub Desktop.
Revisions
-
A-Zak renamed this gist
Oct 19, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
A-Zak created this gist
Oct 19, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ extension UIImage { class func imageByCombiningImage(firstImage: UIImage, withImage secondImage: UIImage) -> UIImage { let newImageWidth = max(firstImage.size.width, secondImage.size.width ) let newImageHeight = max(firstImage.size.height, secondImage.size.height) let newImageSize = CGSize(width : newImageWidth, height: newImageHeight) UIGraphicsBeginImageContextWithOptions(newImageSize, false, UIScreen.mainScreen().scale) let firstImageDrawX = round((newImageSize.width - firstImage.size.width ) / 2) let firstImageDrawY = round((newImageSize.height - firstImage.size.height ) / 2) let secondImageDrawX = round((newImageSize.width - secondImage.size.width ) / 2) let secondImageDrawY = round((newImageSize.height - secondImage.size.height) / 2) firstImage .drawAtPoint(CGPoint(x: firstImageDrawX, y: firstImageDrawY)) secondImage.drawAtPoint(CGPoint(x: secondImageDrawX, y: secondImageDrawY)) let image = UIGraphicsGetImageFromCurrentImageContext() UIGraphicsEndImageContext() return image } }