菜鸟教程小白 发表于 2022-12-12 19:30:23

ios - 从 MPMoviePlayerController 调整缩略图大小


                                            <p><p>我正在尝试从使用 MPMoviePlayerController 的 UIImagePickerController 捕获的视频中调整缩略图的大小。这是我使用的:</p>

<pre><code>         self.moviePlayer.contentURL = ;
      UIImage *thumbnail = ;
      self.thumbnailImage = ;
</code></pre>

<p>这是我调整大小的方法:</p>

<pre><code>- (UIImage *)resizeImage:(UIImage *)image toWidth:(float)width andHeight:(float)height {

    CGSize newSize = CGSizeMake(width, height);

    CGRect newRect = CGRectMake(0, 0, width, height);

    UIGraphicsBeginImageContext(newSize);
    ;
    UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return resizedImage;

}
</code></pre>

<p>resize 方法适用于在 imagePicker 中捕获的照片,但由于某种原因,当我在视频缩略图上使用它时,图像是空白的。如果我不调整它的大小,它看起来很好,但由于某种原因调整它的大小会搞砸。我正在使用 ios7 并在 iPhone 5s 上进行测试</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>UIGraphicsBeginImageContext(newSize);
;
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
</code></pre>

<p>我使用 而不是 愚蠢的错误。哇。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从 MPMoviePlayerController 调整缩略图大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22031824/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22031824/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从 MPMoviePlayerController 调整缩略图大小