0

为什么下面的代码行会导致 {"InvalidCastException"}

((RotateTransform)image.RenderTransform).Angle = 90; 

该方法中的整个代码是

void loadImage()
        {
            // The image will be read from isolated storage into the following byte array

        byte[] data;

        // Read the entire image in one go into a byte array

        using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication())
        {

            // Open the file - error handling omitted for brevity

            // Note: If the image does not exist in isolated storage the following exception will be generated:

            // System.IO.IsolatedStorage.IsolatedStorageException was unhandled 

            // Message=Operation not permitted on IsolatedStorageFileStream 

            using (IsolatedStorageFileStream isfs = isf.OpenFile("0.jpg", FileMode.Open, FileAccess.Read))
            {

                // Allocate an array large enough for the entire file

                data = new byte[isfs.Length];



                // Read the entire file and then close it

                isfs.Read(data, 0, data.Length);

                isfs.Close();

            }
        }



        // Create memory stream and bitmap

        MemoryStream ms = new MemoryStream(data);

        BitmapImage bi = new BitmapImage();

        // Set bitmap source to memory stream

        bi.SetSource(ms);

        // Create an image UI element – Note: this could be declared in the XAML instead

        Image image = new Image();

        // Set size of image to bitmap size for this demonstration

        image.Height = bi.PixelHeight;

        image.Width = bi.PixelWidth;

        // Assign the bitmap image to the image’s source

        image.Source = bi;

        ((RotateTransform)image.RenderTransform).Angle += 90; 

        // Add the image to the grid in order to display the bit map

        ContentPanelx.Children.Add(image);

    }

编辑

像这样更改了以下代码,它不会崩溃,但不会绘制图像。

        image.Height = bi.PixelHeight;

        image.Width = bi.PixelWidth;

        // Assign the bitmap image to the image’s source

        image.Source = bi;
        image.RenderTransform = new RotateTransform() { Angle = 90 };

        ContentPanelx.Children.Add(image);

我缺少一个步骤吗?

非常感谢,-代码

4

3 回答 3

2

您刚刚创建了一个图像对象。它的RenderTransform属性不引用RotateTransform实例。尝试:image.RenderTransform = new RotateTransform(){Angle=90};

于 2012-04-26T12:02:44.807 回答
0

RenderTransform属性的默认值为Transform.Identity。您必须先将其应用于RotateTransform您的Image,然后才能对其进行操作。

image.RenderTransform = new RotateTransform();
于 2012-04-26T12:26:44.433 回答
0

在一个简单的答案级别上,看起来您实际上从未将 RenderTransform 分配为包含 RotateTransform - 所以演员失败也就不足为奇了。

作为更完整的答案:

  • 如果您尝试从文件中旋转图像,那么最好使用http://writeablebitmapex.codeplex.com/之类的库在代码中而不是在 UI 元素中为您执行此操作。
  • 或者,如果您确实想对 UI 元素应用旋转,则可以使用如下代码:

image.RenderTransform = new RotateTransform() {Angle = 45.0};

于 2012-04-26T12:08:15.090 回答