如何快速保存图片
我正在使用 ffmpeg 进行视频转换。我正在获取图像序列。现在我正在使用
[UIImagePNGRepresentation(video.currentImage) writeToFile:fileName atomically:YES];
... 将文件保存到目录中。但这需要花费大量时间来保存。我需要快速保存这张图片。
I'm doing video conversion using ffmpeg. I'm getting the sequence of images. Now I am using
[UIImagePNGRepresentation(video.currentImage) writeToFile:fileName atomically:YES];
...to save the file into a directory. But this taking lots of time to save. I need to save this image quickly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 UIImageJPEGRepresentation ( UIImage *image, CGFloat compressionQuality)
Try With UIImageJPEGRepresentation ( UIImage *image, CGFloat compressionQuality)