Advertisement
RRK

Image Scaling for retina

RRK
Nov 20th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. loading the image from the file
  2.  
  3.   UIImage *image1 = [UIImage imageWithData:entity.noteImage];
  4.    
  5.     CGSize newSize = CGSizeMake(315.0 ,95.0);
  6.     UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
  7.    
  8.     [image1 drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
  9.    
  10.    
  11.     UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
  12.    
  13.     UIGraphicsEndImageContext();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement