在下面的代碼中,img
不是轉換後的圖像。我如何轉換圖像?從ios中的轉換的ImageView目標c獲取圖像
CGAffineTransform transform = self.imageView.transform;
if(transform.a == 1)
{
transform.a = -1;
}
else
{
transform.a = 1;
}
self.imageView.transform = transform;
UIImage *img = self.imageView.image;
這是圖像:
變換之後,它應該是這樣的:
你要什麼圖像看起來像後應用的變換? – woz
jst像在imageView圖像.... –