0
如何創建與使用這種方向創建圖像相同的效果?如何創建CALayer的鏡像轉換
[UIImage imageWithCGImage:image.CGImage scale:1 orientation:UIImageOrientationUpMirrored];
我將使用圖層轉換,但是如果您顯示視圖轉換,我可能會弄清楚如何將其更改爲第一層。
謝謝!
如何創建與使用這種方向創建圖像相同的效果?如何創建CALayer的鏡像轉換
[UIImage imageWithCGImage:image.CGImage scale:1 orientation:UIImageOrientationUpMirrored];
我將使用圖層轉換,但是如果您顯示視圖轉換,我可能會弄清楚如何將其更改爲第一層。
謝謝!
希望這會有所幫助。
CGAffineTransformMakeScale(1.0, -1.0);
image.transform = CGAffineTransformMakeScale(1.0, -1.0); // For Top to bottom
image.transform = CGAffineTransformMakeScale(-1.0, 1.0); // For left to right
'CATransform3DScale(transform,-1,1,1);'適用於我,但我旋轉了視圖。 – Ossir