程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-CGContext畫圖功能,調整圖片尺寸大小後圖片失真

ios-CGContext畫圖功能,調整圖片尺寸大小後圖片失真

編輯:編程綜合問答
CGContext畫圖功能,調整圖片尺寸大小後圖片失真

我使用CGContext在UIImageView中畫手繪線。下面的代碼:

UIGraphicsBeginImageContext(self.frame.size);CGContextRef context= UIGraphicsGetCurrentContext();

但是畫在ImageView中,圖的尺寸就變成了ImageView的大小,我還要在調整成原來的尺寸,調整之後圖片就失真了。能不能跳過imageView直接在圖中畫?而且必須要imageView適應圖片,這樣能畫線。幫幫忙~

最佳回答:


你要在線條圖的頂部重新渲染:

- (UIImage *)renderImage:(UIImage *)image atSize:(CGSize)size
{
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0.0, 0.0, size.width, size.height)];

UIImage *newImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved