I am Cropping the image using CroppedBitmap method in WPF. Required input parameter is int32Rect. But, my image Height and Width values are in double (pixel). So without truncate the Double to Int, i want to crop the image by using double values (pixel)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need to use PixelWidth and PixelHeight properties, if you can't see them (Intellisense can't find them) you can use the as operator to cast it to a BitmapSource. For example:
By the way, the as operator returns null if conversion couldn't be performed (so you may want to check if EDIT : I'm not sure if this is what you need, but here is a method that accepts a Rect (floating-point values) as input and returns a CroppedBitmap:
Example:
|
|||||||||||
|