OStack程序员社区-中国程序员成长平台

标题: ios - 从 MPMoviePlayerController 调整缩略图大小 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 19:30
标题: ios - 从 MPMoviePlayerController 调整缩略图大小

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

         self.moviePlayer.contentURL = [info objectForKey:UIImagePickerControllerMediaURL];
        UIImage *thumbnail = [self.moviePlayer thumbnailImageAtTime:1 timeOption:MPMovieTimeOptionNearestKeyFrame];
        self.thumbnailImage = [self resizeImage:thumbnail toWidth:75.0 andHeight:75.0];

这是我调整大小的方法:

- (UIImage *)resizeImageUIImage *)image toWidthfloat)width andHeightfloat)height {

    CGSize newSize = CGSizeMake(width, height);

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

    UIGraphicsBeginImageContext(newSize);
    [self.image drawInRect:newRect];
    UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return resizedImage;

}

resize 方法适用于在 imagePicker 中捕获的照片,但由于某种原因,当我在视频缩略图上使用它时,图像是空白的。如果我不调整它的大小,它看起来很好,但由于某种原因调整它的大小会搞砸。我正在使用 ios7 并在 iPhone 5s 上进行测试



Best Answer-推荐答案


UIGraphicsBeginImageContext(newSize);
[image drawInRect:newRect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

我使用 [self.image drawInRect] 而不是 [image drawInRect] 愚蠢的错误。哇。

关于ios - 从 MPMoviePlayerController 调整缩略图大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22031824/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4