在弹出的图像方向

本文关键字:图像 方向 | 更新日期: 2023-09-27 18:03:07

我正在开发Windows Phone 8应用程序。

我有一个正在弹出显示的图像。但我有一些标准,比如。

if image width > image height - display in landscape mode else display in portrait mode

那么我们如何才能做到这一点呢?我已经搜索了这个,发现没有方向属性的弹出。

double actualHeight = Application.Current.Host.Content.ActualHeight;
double actualWidth = Application.Current.Host.Content.ActualWidth;
 Grid grid = new Grid();
            grid.VerticalAlignment = VerticalAlignment.Center;
            grid.HorizontalAlignment = HorizontalAlignment.Center;
            grid.Height = actualHeight; //set height
            grid.Width = actualWidth; //set width
            grid.Background = new SolidColorBrush(Colors.White);
            Image img = new Image();
            img.VerticalAlignment = VerticalAlignment.Center;
            img.HorizontalAlignment = HorizontalAlignment.Center;
            img.Source = bitmapImage;
            img.Tap += OnFullScreenImageTap;
//below i am passing the calculated imageWidth and imageHeight
            if (imageWidth > imageHeight)
            {
                //Landscape
                Debug.WriteLine("Display image in LANDSCAPE");
            }
            else if (imageWidth == imageHeight)
            {
                //Portrait
                Debug.WriteLine("Display image in PORTRAIT");
            }
            else
            {
                //Portrait
                Debug.WriteLine("Display image in PORTRAIT");
            }
            grid.Children.Add(img);
            popUp.Child = grid; //set child content
            this.LayoutRoot.Children.Add(popUp);
            popUp.IsOpen = true;

编辑

我也试过了:

RotateTransform  rt = new RotateTransform();
            rt.CenterX = 20;
            rt.CenterY = 20;
            img.VerticalAlignment = VerticalAlignment.Center;
            img.HorizontalAlignment = HorizontalAlignment.Center;
            img.Source = bitmapImage;
            if (imageWidth > imageHeight)
            {
                //Landscape
                rt.Angle = 0;
                Debug.WriteLine("Display image in LANDSCAPE");
            }
            else if (imageWidth == imageHeight)
            {
                //Portrait
                rt.Angle = 90;
                Debug.WriteLine("Display image in PORTRAIT");
            }
            else
            {
                //Portrait
                rt.Angle = 90;
                Debug.WriteLine("Display image in PORTRAIT");
            }
            img.RenderTransform = rt;

在弹出的图像方向

试一试

        double actualHeight = Application.Current.Host.Content.ActualHeight;
        double actualWidth = Application.Current.Host.Content.ActualWidth;
        Grid grid = new Grid();
        grid.VerticalAlignment = VerticalAlignment.Center;
        grid.HorizontalAlignment = HorizontalAlignment.Center;
        grid.Height = actualHeight; //set height
        grid.Width = actualWidth; //set width
        grid.Background = new SolidColorBrush(Colors.White);
        Image img = new Image();
        img.VerticalAlignment = VerticalAlignment.Center;
        img.HorizontalAlignment = HorizontalAlignment.Center;
        img.Source = bitmapImage;
        img.Tap += OnFullScreenImageTap;
        RotateTransform rt = new RotateTransform
        rt.CenterX = actualWidth / 2;
        rt.CenterY = actualHeight / 2;
        if (imageWidth > imageHeight)
        {
            //Landscape
            rt.Angle = 0;
            Debug.WriteLine("Display image in LANDSCAPE");
        }
        else if (imageWidth == imageHeight)
        {
            //Portrait
            rt.Angle = 90;
            Debug.WriteLine("Display image in PORTRAIT");
        }
        else
        {
            //Portrait
            rt.Angle = 90;
            Debug.WriteLine("Display image in PORTRAIT");
        }
        grid.Children.Add(img);
        popUp.Child = grid; //set child content
        this.LayoutRoot.Children.Add(popUp);
        popUp.IsOpen = true;