Shehbaz Khan
Shehbaz Khan

Reputation: 2000

How to resize image with aspect ratio?

this is my code:-

(UIImage*)imageWithImage:(UIImage*)image 
              scaledToSize:(CGSize)newSize;
{        
    UIGraphicsBeginImageContext( newSize );
    [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
    UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return newImage;
}

Upvotes: 0

Views: 810

Answers (2)

Jainendra
Jainendra

Reputation: 25153

Use the category files from this site to resize UIImages:

Upvotes: 1

Vikas S Singh
Vikas S Singh

Reputation: 1766

Look this Qus , may be helped you...

Resize UIImage with aspect ratio?

Upvotes: 0

Related Questions