使用writeablebitmap从矩形中选择图像

时间:2013-10-07 15:19:19

标签: c# silverlight xaml writeablebitmap writeablebitmapex

我在silverlight中编写了一个应用程序,我在图像上放置了一个矩形,想要选择矩形覆盖的图像部分,并在单击按钮时将其显示在图像控件上。

我不擅长处理比率和图像处理事物,所以我无法正确处理它。

相同的代码如下所示,如果有人可以建议我解决这个问题的方法或解决方案,我将不胜感激。

public void CaptureImage(object sender, RoutedEventArgs e)
{
            BitmapImage bitmapImage = new BitmapImage();
            //// bitmapImage.CreateOptions = BitmapCreateOptions.None;
            bitmapImage = NewImage;

            ////calculate bounding box
            int originalWidth = bitmapImage.PixelWidth;
            int originalHeight = bitmapImage.PixelHeight;

            int newSmallWidth = (int)SquareBlue.Width;
            int newSmallHeight = (int)SquareBlue.Height;

            ////generate temporary control to render image
            Image temporaryImage = new Image { Source = bitmapImage, Width = newSmallWidth, Height = newSmallHeight };

            ////create writeablebitmap
            WriteableBitmap wb = new WriteableBitmap(newSmallWidth, newSmallHeight);

            TranslateTransform t = new TranslateTransform();
            t.X = -5;
            t.Y = -5;

            wb.Render(temporaryImage, t);

            wb.Invalidate();

            myImage.Source = wb;
   }

每当执行此代码时,整个图像都会被捕捉,而不是由矩形选择的部分。任何人都可以指导我,因为我在这里做错了。

1 个答案:

答案 0 :(得分:0)

我建议您使用WriteableBitmapEx library提供的裁剪方法。