菜鸟教程小白 发表于 2022-12-12 12:01:02

ios - 如何从实时照片中提取图像?


                                            <p><p>我知道如何从实时照片中提取视频。解释 <a href="https://stackoverflow.com/questions/32959973/extract-video-portion-from-live-photo" rel="noreferrer noopener nofollow">here</a> .</p>

<p>使用 <code>PHAssetResourceManager</code> 从 <code>PHAssetResource</code> 获取视频文件。 </p>

<pre><code>PHAssetResourceManager.defaultManager().writeDataForAssetResource(assetRes,
    toFile: fileURL, options: nil, completionHandler:
{
   // Video file has been written to path specified via fileURL
}
</code></pre>

<p>但是如何从 PHLivePhoto 中提取图像 URL。这样做的动机是同时获取视频和图像 URL,以便将其上传到服务器。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>假设您可以访问 PHAsset,您可以执行以下操作:</p>

<pre><code>[asset requestContentEditingInputWithOptions:nil
                           completionHandler:^(PHContentEditingInput *contentEditingInput, NSDictionary *info) {
      NSURL *imageURL = contentEditingInput.fullSizeImageURL;
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从实时照片中提取图像?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/39370406/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/39370406/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从实时照片中提取图像?