Skip to content

Commit 13a508b

Browse files
author
Nicolas Fogg
committed
Use the source image orientation when creating an image text attachment
1 parent 4d31c03 commit 13a508b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Views/InputTextView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ open class InputTextView: UITextView {
288288
guard let cgImage = image.cgImage else { return NSTextAttachment() }
289289
let scale = image.size.width / (frame.width - 2 * (textContainerInset.left + textContainerInset.right))
290290
let textAttachment = NSTextAttachment()
291-
textAttachment.image = UIImage(cgImage: cgImage, scale: scale, orientation: .up)
291+
textAttachment.image = UIImage(cgImage: cgImage, scale: scale, orientation: image.imageOrientation)
292292
return textAttachment
293293
}
294294

0 commit comments

Comments
 (0)