mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
16 lines
262 B
C
16 lines
262 B
C
![]() |
//
|
||
|
// UIImage+Resize.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 2/11/14.
|
||
|
// Copyright (c) 2014 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@interface UIImage (Resize)
|
||
|
|
||
|
- (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize;
|
||
|
|
||
|
@end
|