iOS Development Slide Long screenshot full Screen app

Source: Internet
Author: User

Recently did the project encountered the request to intercept the image length beyond the phone screen, you can slide the long picture screenshot, here is a simple solution to the idea, the following demo.

, when we want to truncate the full screen, record the frame and offset of the slide view, then set the slide view offset to 0,frame to slide the view

Contentsize, and then generate a picture to save, the code is implemented as follows:

The following method, the first parameter represents the size of the area. The second parameter indicates whether it is non-transparent. If you need to display a translucent effect, you need to pass no, otherwise pass yes. The third parameter is the screen density, which adjusts the sharpness.    uigraphicsbeginimagecontextwithoptions (Scroll.contentsize, YES, [UIScreen mainscreen].scale);        Cgpoint savedcontentoffset = Scroll.contentoffset;    CGRect savedframe = scroll.frame;    Scroll.contentoffset = Cgpointzero;    Scroll.frame = CGRectMake (0, 0, scroll.contentSize.width, scroll.contentSize.height);    [Scroll.layer Renderincontext:uigraphicsgetcurrentcontext ()];    Image = Uigraphicsgetimagefromcurrentimagecontext ();    Scroll.contentoffset = Savedcontentoffset;    Scroll.frame = Savedframe;        Uigraphicsendimagecontext ();

Demo:https://github.com/zk1947/capturescreen

iOS Development Slide Long screenshot full Screen app

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.