如何使用 EZAudio 从音频文件中获取图像 (.png) 波形
How can I get Image (.png) waveform from audiofile use EZAudio
我可以在AudioPlot Frame中显示波形,但我无法以图片的形式获取它。 EZAudio有这样的方法吗?我该如何使用它?
EZAudio没有这样的方法
您可以尝试 this solution from 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
我可以在AudioPlot Frame中显示波形,但我无法以图片的形式获取它。 EZAudio有这样的方法吗?我该如何使用它?
EZAudio没有这样的方法
您可以尝试 this solution from 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