How iOS creates a video thumbnail image

Source: Internet
Author: User
Tags pngimage

How iOS creates a video thumbnail image

//writes the complete picture and the thumbnail image to the Temp folder
     nsdata *pngimage =  uiimagepngrepresentation (thumbnail) ;
 if  ([pngimage writetofile:[nsstring stringwithformat:@ "%@/tempimage.png", Temp_folder] atomically: yes]) {
 

UIImage *mythumbnail = [[UIImage alloc] initwithdata:pngimage];

Uigraphicsbeginimagecontext (Cgsizemake (60.0, 60.0));

[Mythumbnail Drawinrect:cgrectmake (0.0, 0.0, 60.0, 60.0)];

UIImage *newimage = Uigraphicsgetimagefromcurrentimagecontext ();

Uigraphicsendimagecontext ();

Uiimageview *thumbview = [[Uiimageview alloc] Initwithframe:cgrectmake (0.0, 0.0, 60.0, 60.0)];

Thumbview.image = NewImage;

[Self.view Addsubview:thumbview];

NSData *thumbdata = uiimagepngrepresentation (newimage);

if ([Thumbdata writetofile:[nsstring stringWithFormat:@ "%@/tempimagethumb.png"] atomically:YES]) {

NSLog (@ "thumb written!");

}

}

Video images can be captured from the video

_movieplayer = [[MPMoviePlayerController alloc]initwithcontenturl: Movieurl];

UIImage *thumbnail = [_movieplayerthumbnailimageattime:1.0 timeoption: Mpmovietimeoptionnearestkeyframe

How iOS creates a video thumbnail image

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.