Skip to content

Instantly share code, notes, and snippets.

@HamptonMakes
Created June 27, 2014 14:45
Show Gist options
  • Select an option

  • Save HamptonMakes/180e81cd961573e3c54d to your computer and use it in GitHub Desktop.

Select an option

Save HamptonMakes/180e81cd961573e3c54d to your computer and use it in GitHub Desktop.
Swift Image Resizer
//
// RBResizer.swift
// Locker
//
// Created by Hampton Catlin on 6/20/14.
// Copyright (c) 2014 rarebit. All rights reserved.
//
import UIKit
func RBSquareImageTo(image: UIImage, size: CGSize) -> UIImage {
return RBResizeImage(RBSquareImage(image), size)
}
func RBSquareImage(image: UIImage) -> UIImage {
var originalWidth = image.size.width
var originalHeight = image.size.height
var edge: CGFloat
if originalWidth > originalHeight {
edge = originalHeight
} else {
edge = originalWidth
}
var posX = (originalWidth - edge) / 2.0
var posY = (originalHeight - edge) / 2.0
var cropSquare = CGRectMake(posX, posY, edge, edge)
var imageRef = CGImageCreateWithImageInRect(image.CGImage, cropSquare);
return UIImage(CGImage: imageRef, scale: UIScreen.mainScreen().scale, orientation: image.imageOrientation)
}
func RBResizeImage(image: UIImage, targetSize: CGSize) -> UIImage {
let size = image.size
let widthRatio = targetSize.width / image.size.width
let heightRatio = targetSize.height / image.size.height
// Figure out what our orientation is, and use that to form the rectangle
var newSize: CGSize
if(widthRatio > heightRatio) {
newSize = CGSizeMake(size.width * heightRatio, size.height * heightRatio)
} else {
newSize = CGSizeMake(size.width * widthRatio, size.height * widthRatio)
}
// This is the rect that we've calculated out and this is what is actually used below
let rect = CGRectMake(0, 0, newSize.width, newSize.height)
// Actually do the resizing to the rect using the ImageContext stuff
UIGraphicsBeginImageContextWithOptions(newSize, false, 1.0)
image.drawInRect(rect)
let newImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return newImage
}
@appshish

appshish commented Jul 8, 2014

Copy link
Copy Markdown

Awesome, very useful contribution.

@hkywal

hkywal commented Sep 30, 2014

Copy link
Copy Markdown

Simple and fantastic! Thank you very much!

@westerlund

Copy link
Copy Markdown

nice gist! I've updated it to work with xcode 6.1.1.
https://gist.github.com/westerlund/9e357a50315a7d9fe419

@Jan0707

Jan0707 commented Jan 9, 2015

Copy link
Copy Markdown

Great work !

@vladimirzivanov

Copy link
Copy Markdown

I don't know why it doesn't work for me. Example: my origin image size is 480x640, so cropSquare is 480x480, but instead of getting same size for imageRef, I'm getting 480x400, and then function is returning "img" with size 200x240 (?!). But if I use 0 instead of posY in CGRectMake (posX, 0, edge, edge) everything is fine (returning image size is 480x480), but the image is not centered but is cropped from the top, of course. Can someone help me?

@bashome

bashome commented Jan 26, 2015

Copy link
Copy Markdown

I had the same problem as Vlad - after some research I think it has to do with the image orientation always being portrait in the CGImage ... I edited the code in the RBSquareImage function to remove the "edge" variable usage as well as the "posX" and "posY" variables and then changed the "cropSquare" calculation to this "var cropSquare = CGRectMake((originalHeight - originalWidth)/2, 0.0, originalWidth, originalWidth)" and then it worked in both portrait and landscape configuration and that function would return me a square image cropped in the middle. Cheers and I hope this helps.

@sieder

sieder commented Feb 20, 2015

Copy link
Copy Markdown

This is so useful! thank you!

@willsteinmetz

Copy link
Copy Markdown

This is super helpful and saved me a lot of time. Thanks for sharing!

@lephukhanhhuy

Copy link
Copy Markdown

You should change this:
UIGraphicsBeginImageContextWithOptions(newSize, false, 1.0)

to this:
UIGraphicsBeginImageContextWithOptions(newSize, false, UIScreen.mainScreen().scale)

for the best quality on iPhone 6+

@AchSum

AchSum commented May 27, 2015

Copy link
Copy Markdown

Thank you ! :)

@RuliLG

RuliLG commented Aug 6, 2015

Copy link
Copy Markdown

Awesome! Thank you! 😄

@kourindouhime

Copy link
Copy Markdown

Thanks to the original author and thanks to @bashome for the fix. Really works now.

@akoldaev

akoldaev commented Sep 6, 2015

Copy link
Copy Markdown

@Jaime5366

Copy link
Copy Markdown

thanks for you help me!

@tcerven

tcerven commented Nov 3, 2015

Copy link
Copy Markdown

Thanks for posting this. Don't know why UIKit doesn't have a method for this.

@justinlevi

Copy link
Copy Markdown

Updated for use as a UIImage Extension
https://gist.github.com/justinlevi/ee037a4bb63598f6e56f

@FredRuniT

Copy link
Copy Markdown

How do I implement this into my app?

@billy84

billy84 commented Sep 13, 2016

Copy link
Copy Markdown

Very useful! Awesome!

@grafikri

Copy link
Copy Markdown

Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment