WPF- How can I show a cropped region of an ImageSource in an control?

I have an ImageSource of a vairable size in pixels. I have a caculated crop rectangle, indicating how much of the image we are actually going to use. I don't want to edit the image data directly, but I want my <Image> control to display only the cropped region of the ImageSource.

Does Microsoft provide a way to automate this?
Any advice is appreciated!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use a CroppedBitmap.

Here is an example of its usage:

   <Page.Resources>
      <!-- Define some image resources, for use as the image element source. -->
      <BitmapImage x:Key="masterImage" UriSource="/sampleImages/gecko.jpg" />
      <CroppedBitmap x:Key="croppedImage" 
         Source="{StaticResource masterImage}" SourceRect="30 20 105 50"/>
   </Page.Resources>
link|improve this answer
Looks like this will work perfectly. Thanks! – Giffyguy Jul 28 '09 at 16:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.