将UIView转成UIImage,将UIImage转成PNG/JPG

来源:互联网 发布:二次元扩列软件 编辑:程序博客网 时间:2024/06/02 14:58
  1. //UIView -> UIImage
  2. #import “QuartzCore/QuartzCore.h”  
  3. //把UIView 转换成图片  
  4. -(UIImage *)getImageFromView:(UIView *)view{  
  5.          UIGraphicsBeginImageContext(view.bounds.size);  
  6.          [view.layer renderInContext:UIGraphicsGetCurrentContext()];  
  7.          UIImage *image = UIGraphicsGetImageFromCurrentImageContext();  
  8.          UIGraphicsEndImageContext();  
  9.          return image;  
  10. }  


  11. //UIImage -> PNG / JPG
  12. // Create paths to output images
  13. NSString*pngPath=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.png"];
  14. NSString*jpgPath=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.jpg"];

  15. // Write a UIImage to JPEG with minimum compression (best quality)
  16. // The value 'image' must be a UIImage object
  17. // The value '1.0' represents image compression quality as value from 0.0 to 1.0

  18. [UIImageJPEGRepresentation(image,1.0) writeToFile:jpgPath atomically:YES];

  19. // Write image to PNG
  20. [UIImagePNGRepresentation(image) writeToFile:pngPath atomically:YES];

  21. // Let's check to see if files were successfully written...
  22. // Create file manager
  23. NSError*error;
  24. NSFileManager*fileMgr=[NSFileManager defaultManager];

  25. // Point to Document directory
  26. NSString*documentsDirectory=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

  27. // Write out the contents of home directory to console
  28. NSLog(@"Documents directory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectory error:&error]);
http://blog.163.com/lzb4319@126/blog/static/7255470020125693048341/
原创粉丝点击