extension function screenshot not capturing the same area in iphone and ipad

牧云@^-^@ 提交于 2019-12-02 17:59:53

问题


I am using a extension function to take a screenshot of a uiview. The problem is that the results look very different. I want the photo to look the same regardless of weather its a ipad or iphone. I am manually entering the constraints so I expect the images to be the same. I want to using the function to go to the orgin or center of the viewcontroller and be 200 height and 200 width. So the image should be the same regardless of the device because it starts in the center and is the same size.

     let vex = self.view.screenshot(for: CGRect(x: 0, y:UIScreen.main.bounds.size.height*0.65,, width: 100, height: 100), with: UIImage(named: "a.png"))

    extension UIView {
/// Takes a screenshot of a UIView, with an option to clip to view bounds and place a waterwark image
/// - Parameter rect: offset and size of the screenshot to take
/// - Parameter clipToBounds: Bool to check where self.bounds and rect intersect and adjust size so there is no empty space
/// - Parameter watermark: UIImage of the watermark to place on top
func screenshot(for rect: CGRect, clipToBounds: Bool = true, with watermark: UIImage? = nil) -> UIImage {
    var imageRect = rect
    if clipToBounds {
        imageRect = bounds.intersection(rect)
    }
    return UIGraphicsImageRenderer(bounds: imageRect).image { _ in
    drawHierarchy(in: CGRect(origin: .zero, size: bounds.size), afterScreenUpdates: true)
    watermark?.draw(in: CGRect(x: 0, y: 0, width: 32, height: 32))
    }
}}

IPHONE

IPAD


回答1:


Take a look at the below screenshot. 


View hierarchy   
 -self.view
   -blueView (subview of self.view) 
   -redView   (subview of self.view)

fullsize screenshot

Notice how the screenshot target (based on X = 0 and Y = screen.y multiplier) differs based on device size?


 With the supplied extension you can fix the above issue in several different ways depending on view hierarchy. In case your hierarchy remains as listed above you can do something like this:


Option 1 If you want to take a screenshot of exactly what’s inside of the blueView then you can do this:
(for this blueView is either an IBOutlet or a property that is set programmatically)

let image = self.view.screenshot(for: blueView.frame, clipToBounds: true, with: UIImage(named: "star”))

The above takes a screenshot of self.view at the given rect for all of subviews of self.view. (output below)

Option 2 If your view hierarchy changes to something like this: -self.view - blueView (subview of self.view) - redView (subview of blueView)


And you want to take a snapshot of just blueView and subviews, then you can simplify the above by doing:

let image = blueView.screenshot(for: blueView.bounds, with: UIImage(named: "star”)) This works, because redView is subview of blueView (output same as the screenshot above)

Option 3 Now lets say you want to take a screenshot of self.view in the center with a screenshot size of 300 then you can do something like this

let size = CGSize(width: 300, height: 300) // notice this is bigger than blueView size
let rect = CGRect(origin: CGPoint(x: self.view.center.x - size.width / 2, y: self.view.center.y - size.height / 2), size: size)
let image = self.view.screenshot(for: rect, clipToBounds: false, with: UIImage(named: "star"))

Can all of these be optimized? YES, but I’m trying to spell things out for you step by step. (below is the output of this)

By the way, the star in those screenshots is the watermark

For those wondering, the OP's extension is from this answer and it has been updated a little from the time of this question.




回答2:


//you used this
y:UIScreen.main.bounds.size.width*0.65,

//try this
y:UIScreen.main.bounds.size.height*0.65,

It is probably that you called width for y instead of height :)

Edit: The above was a bug, but did not solve the problem. Here is another possible solution.

iphones and ipads have different screen sizes. Try expanding the size of the screenshot to 800x800 and see if perhaps the coordinates are off in some way because of your screen dimensions. It seems as though your 200x200 doesn't extend into the graphic which is causing a different result.



来源:https://stackoverflow.com/questions/58414026/extension-function-screenshot-not-capturing-the-same-area-in-iphone-and-ipad

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!