使用Silverlight中的Path剪切图像

时间:2011-08-17 09:26:24

标签: silverlight silverlight-4.0 path puzzle clip

如何使用自定义路径在Silverlight中剪辑图像(在后面的代码中,而不是在XAML中)。 我有一个像路径写的形状拼图,想用它来剪辑任何图像。

目前它通过使用矩形剪切来工作,代码是(C#):

private void UserControl_Loaded(object sender, RoutedEventArgs e)
    {
        int NUM_COLUMN = 8;
        int NUM_ROW = 8;
        double gridWidth = 60;
        double gridHeight = 60;
        string url = "Images/Sun.png";

        // C#
        for (int i = 0; i < NUM_COLUMN; i++)
        {
            for (int j = 0; j < NUM_ROW; j++)
            {
                double offsetX = (double)i * gridWidth;
                double offsetY = (double)j * gridHeight;

                Image image = new Image();
                image.Source = new BitmapImage(new Uri(url, UriKind.Relative));

                // clip the image

                RectangleGeometry r = new RectangleGeometry();


                r.Rect = new Rect(offsetX, offsetY, gridWidth, gridHeight);
                image.Clip = r;                 

                this.ClipCanvas.Children.Add(image);
            }
        }
    }

XAML 中只有一个Canvas名为ClipCanvas

1 个答案:

答案 0 :(得分:1)

好的,不理想。但是从代码隐藏

开始
Image image = XamlReader.Load(@"<Image xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation"" xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"" Clip=""M 41.1,33.7 C 41.1,33.7 39.9,32.2 39.9,30.8 C 39.9,30.6 39.5,29.8 39.3,29.5 C 39.1,29.3 38.4,28.6 37.8,28.2 C 37.2,27.9 35,26.6 34.6,22.4 Z "" />") as Image;
image.Source = new BitmapImage(new Uri("Desert.jpg", UriKind.Relative));

在Xaml的剪辑中设置,并使用XamlReader创建Image。试过其他方法,这是唯一有效的方法。