Скриншот анимированного изображения

У меня есть одно изображение, которое меняется каждые несколько секунд с анимацией завитка. Я хочу снять это на видео, поэтому я делаю скриншоты каждую секунду и создаю из них видео. Но я не могу сделать снимок экрана, когда изображение анимируется, в это время он возвращает снимок экрана, на котором изображение стабильно или не анимируется.

Я использую приведенный ниже код, чтобы сделать снимок экрана с изображением

{
    CGSize imageSize = [[UIScreen mainScreen] bounds].size;
    if (NULL != UIGraphicsBeginImageContextWithOptions)
        UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
    else
        UIGraphicsBeginImageContext(imageSize);

    CGContextRef context = UIGraphicsGetCurrentContext();

    // Iterate over every window from back to front
    for (UIWindow *window in [[UIApplication sharedApplication] windows])
    {
        if (![window respondsToSelector:@selector(screen)] || [window screen] == [UIScreen mainScreen])
        {
            // -renderInContext: renders in the coordinate space of the layer,
            // so we must first apply the layer's geometry to the graphics context
            CGContextSaveGState(context);
            // Center the context around the window's anchor point
            CGContextTranslateCTM(context, [window center].x, [window center].y);
            // Apply the window's transform about the anchor point
            CGContextConcatCTM(context, [window transform]);
            // Offset by the portion of the bounds left of and above the anchor point
            CGContextTranslateCTM(context,
                                  -[window bounds].size.width * [[window layer] anchorPoint].x,
                                  -[window bounds].size.height * [[window layer] anchorPoint].y);

            // Render the layer hierarchy to the current context
            [[[window layer] presentationLayer] renderInContext:context];

            // Restore the context
            CGContextRestoreGState(context);
        }
    }

    // Retrieve the screenshot image
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return image;
}

Есть ли у кого-нибудь представление об этом?

Заранее спасибо.

-Остин


person Austin    schedule 05.02.2015    source источник
comment
попробуйте уменьшить период между снимками экрана до чего-то меньшего   -  person Shanti K    schedule 05.02.2015
comment
какой интервал вы пробовали?   -  person Shanti K    schedule 05.02.2015
comment
Я пробовал от 1,0 до 1/30 секунды...   -  person Austin    schedule 05.02.2015
comment
хотите принять ответ?   -  person Victor Jalencas    schedule 29.03.2017


Ответы (2)


Я думаю, вы должны использовать:

[[[[window contentView] layer] presentationLayer] renderInContext:context];

чтобы зафиксировать текущее состояние анимации, а не исходное или конечное состояния

person Victor Jalencas    schedule 28.02.2015

Согласно вашему коду, вы, кажется, делаете снимок экрана. Так что просто попробуйте это:

[[UIScreen mainScreen] snapshotViewAfterScreenUpdates:NO]

В противном случае:

[yourAnimatedView.layer.presentationLayer snapshotViewAfterScreenUpdates:NO]
person ooOlly    schedule 02.03.2017