[iOS]图片压缩&保存View为内容Img

[iOS]图片压缩&保存View为内容Img,第1张

概述[iOS]图片压缩&保存View为内容Img

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

    + (UIImage*)imageWithImageSimple:(UIImage*)image scaledToSize:(CGSize)newSize      {          // Create a graphics image context          UIGraphicsBeginImageContext(newSize);                    // Tell the old image to draw in this new context,with the desired          // new size          [image drawInRect:CGRectMake(0,newSize.wIDth,newSize.height)];                    // Get the new image from the context          UIImage* newImage = UIGraphicsGetimageFromCurrentimageContext();                    // End the context          UIGraphicsEndImageContext();                    // Return the new image.          return newImage;      }  

    //屏幕截图并压缩          UIImage *snapshot =  [UIImage imageWithCGImage:[AppDelegate screenShots].CGImage scale:1 orIEntation:UIImageOrIEntationleft];          _updataimg =[AppDelegate imageWithImageSimple:snapshot scaledToSize:CGSizeMake(snapshot.size.wIDth/3,snapshot.size.height/3)];  

2、保存VIEw为内容img
    -(voID)savetoLocal      {          _moreVC.hIDden =YES;          UIImage * saveimg=[self saveImage];           UIImageWritetoSavedPhotosAlbum(saveimg,self,@selector(imageSavedtophotosAlbum:dIDFinishSavingWithError:contextInfo:),nil);                }      -(UIImage*)saveImage{          UIGraphicsBeginImageContext(CGSizeMake(self.vIEw.bounds.size.wIDth,self.vIEw.bounds.size.height - 20));//保存self.vIEw上的内容          [self.vIEw.layer renderInContext:UIGraphicsGetCurrentContext()];          UIImage *vIEwImage = UIGraphicsGetimageFromCurrentimageContext();          UIGraphicsEndImageContext();          return vIEwImage;      }            - (voID)imageSavedtophotosAlbum:(UIImage *)image dIDFinishSavingWithError:(NSError *)error contextInfo:(voIDvoID *)contextInfo      {          Nsstring *message = @"呵呵";          if (!error) {              message = @"成功保存到相册";          }else          {              message = [error description];          }          NSLog(@"message is %@",message);      }  

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的[iOS]图片压缩&保存View为内容Img全部内容,希望文章能够帮你解决[iOS]图片压缩&保存View为内容Img所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106500.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存