-1
我可以在AudioPlot Frame中顯示波形,但無法以圖片的形式獲取波形。 EZAudio有這樣的方法嗎?我該如何使用它?如何從audiofile中使用Image(.png)波形使用EZAudio
我可以在AudioPlot Frame中顯示波形,但無法以圖片的形式獲取波形。 EZAudio有這樣的方法嗎?我該如何使用它?如何從audiofile中使用Image(.png)波形使用EZAudio
EZAudio沒有這樣的方法。
你可以嘗試從Timthis solution(爲方便起見,下面複製)。
#import "QuartzCore/QuartzCore.h" after you added the framework to your project. Then do:
UIGraphicsBeginImageContext(yourView.frame.size);
[[yourView layer] renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenshot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
// The result is *screenshot
Thx!爲我工作! – Azot
太棒了!玩這個很酷的lib :) –