小編給大家分享一下iOS如何實(shí)現(xiàn)圖片合并及截圖,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)自2013年創(chuàng)立以來(lái),是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元焉耆做網(wǎng)站,已為上家服務(wù),為焉耆各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108
兩張圖片合并
-(UIImage *)addImage:(UIImage *)p_w_picpath2 toImage:(UIImage *)p_w_picpath3
{
UIGraphicsBeginImageContext(p_w_picpath3.size);
//Draw p_w_picpath3
[p_w_picpath3 drawInRect:CGRectMake(0, 0, p_w_picpath3.size.width, p_w_picpath3.size.height)];
//Draw p_w_picpath2
[p_w_picpath2 drawInRect:CGRectMake(20, 20, p_w_picpath2.size.width, p_w_picpath2.size.height)];
UIImage *resultImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return resultImage;
}
截圖
- (UIImage*) combineImageFromCuttingScreen {
UIGraphicsBeginImageContext(self.baseImageView.frame.size);
UIGraphicsBeginImageContextWithOptions(self.combineView.frame.size, YES, 1);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetShouldAntialias(context, YES);
CGContextSetShouldSmoothFonts(UIGraphicsGetCurrentContext(),YES);
CGContextSaveGState(context);
CGRect r = CGRectMake(0, 0, 320, 392);
UIRectClip(r);
[self.combineView.layer renderInContext:context];
UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return theImage;
}
以上是“iOS如何實(shí)現(xiàn)圖片合并及截圖”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!