Skip to content

Commit 50ead78

Browse files
committed
Set resizing mode as .stretch when creating a resizable image
1 parent e756885 commit 50ead78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftyImage.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ open class ImageDrawer {
262262

263263
let image = self.imageWithSize(CGSize(width: imageSize, height: imageSize))
264264
let capInsets = UIEdgeInsets(top: capSize, left: capSize, bottom: capSize, right: capSize)
265-
return image.resizableImage(withCapInsets: capInsets)
265+
return image.resizableImage(withCapInsets: capInsets, resizingMode: .stretch)
266266
}
267267
}
268268

0 commit comments

Comments
 (0)