UIImageView-GeometryConversion icon indicating copy to clipboard operation
UIImageView-GeometryConversion copied to clipboard

A category on UIImageView that provides methods for converting points and rects from the image to view coordinates.

Results 2 UIImageView-GeometryConversion issues
Sort by recently updated
recently updated
newest added

There ist a small error in "convertRect(fromViewRect viewRect : CGRect)" `let imageTopLeft = convertPoint(fromImagePoint: viewTopLeft) let imageBottomRight = convertPoint(fromImagePoint: viewBottomRight)` should be replaced with `let imageTopLeft = convertPoint(fromViewPoint: viewTopLeft) let...