如何从audiofile使用EZAudio获取图像(.png)波形

时间:2015-05-07 07:58:14

标签: ios objective-c ezaudio

我可以在AudioPlot Frame中显示波形,但我无法以图片的形式显示它。 EZAudio有这样的方法吗?我该如何使用它?

1 个答案:

答案 0 :(得分:1)

EZAudio没有这样的方法 您可以从this solution尝试Tim(为方便起见,请在下方复制)。

#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