как сохранить урезанный снимок экрана uiview, используя расширение market - PullRequest
0 голосов
/ 14 октября 2019

Мой метод расширения прямо сейчас делает снимок всего пользовательского интерфейса внутри контроллера представления. Я хотел бы использовать ту же функцию, чтобы сделать то же самое, только взять точную область uiview вместо всего представления. В частности, я хотел бы захватить x: 0, y: 0, длина 200, высота 200,

    func screenshot() -> UIImage {
        let imageSize = UIScreen.main.bounds.size as CGSize;
        UIGraphicsBeginImageContextWithOptions(imageSize, false, 0)
        let context = UIGraphicsGetCurrentContext()
        for obj : AnyObject in UIApplication.shared.windows {
            if let window = obj as? UIWindow {
                if window.responds(to: #selector(getter: UIWindow.screen)) || window.screen == UIScreen.main {
                    // so we must first apply the layer's geometry to the graphics context
                    context!.saveGState();
                    // Center the context around the window's anchor point
                    context!.translateBy(x: window.center.x, y: window.center
                        .y);
                    // Apply the window's transform about the anchor point
                    context!.concatenate(window.transform);
                    // Offset by the portion of the bounds left of and above the anchor point
                    context!.translateBy(x: -window.bounds.size.width * window.layer.anchorPoint.x,
                                         y: -window.bounds.size.height * window.layer.anchorPoint.y);

                    // Render the layer hierarchy to the current context
                    window.layer.render(in: context!)

                    // Restore the context
                    context!.restoreGState();
                }
            }
        }
        let image = UIGraphicsGetImageFromCurrentImageContext();
        return image!
    }

1 Ответ

1 голос
/ 15 октября 2019

Как насчет:

extension UIView {
    func screenshot(for rect: CGRect) -> UIImage {
        return UIGraphicsImageRenderer(bounds: rect).image { _ in
            drawHierarchy(in: CGRect(origin: .zero, size: bounds.size), afterScreenUpdates: true)
        }
    }
}

Это делает его немного более пригодным для повторного использования, но вы можете изменить его на жестко закодированное значение, если хотите.

let image = self.view.screenshot(for: CGRect(x: 0, y: 0, width: 200, height: 200))

...