/// <summary> /// 加载图片文件信息 /// </summary> /// <param name="fileStream"></param> public void LoadImageStream(FileStream fileStream, Slider zoomInOut) { double width = ViewportHost.Width, height = ViewportHost.Height; //hack:获取相应的图片高宽信息 BitmapImage bitmapImage = new BitmapImage(); bitmapImage.SetSource(fileStream); zoomInOut.Maximum = bitmapImage.PixelWidth; #region 用获取的图片高宽初始化Viewport,FocusRect区域和以slider if (bitmapImage.PixelWidth < bitmapImage.PixelHeight) //当图片宽小于高时 { if (bitmapImage.PixelWidth > width) //当图片宽度超过可视区域的宽度时 { height = ((double)width / bitmapImage.PixelWidth) * bitmapImage.PixelHeight; //zoomInOut.Value = (double)width / bitmapImage.PixelWidth; } else //未超过时则使用图片的高宽初始化显示区域 { width = bitmapImage.PixelWidth; height = bitmapImage.PixelHeight; } } else//当图片高小于宽时 { if (bitmapImage.PixelHeight > height)//当图片高度超过可视区域的高度时 { width = ((double)height / bitmapImage.PixelHeight) * bitmapImage.PixelWidth; //zoomInOut.Value = (double)height / bitmapImage.PixelHeight; } else//未超过时则使用图片的高宽初始化显示区域 { width = bitmapImage.PixelWidth; height = bitmapImage.PixelHeight; } } Viewport.Width = zoomInOut.Value = width; Viewport.Height = height; Viewport.SetValue(Canvas.TopProperty, (double)ViewportHost.GetValue(Canvas.TopProperty) + (ViewportHost.Height - Viewport.Height) / 2); Viewport.SetValue(Canvas.LeftProperty, (double)ViewportHost.GetValue(Canvas.LeftProperty) + (ViewportHost.Width - Viewport.Width) / 2); FocusRect.Width = width >= 100 ? 100 : width; FocusRect.Height = height >= 100 ? 100 : height; FocusRect.SetValue(Canvas.TopProperty, (double)ViewportHost.GetValue(Canvas.TopProperty) + (ViewportHost.Height - FocusRect.Height) / 2); FocusRect.SetValue(Canvas.LeftProperty, (double)ViewportHost.GetValue(Canvas.LeftProperty) + (ViewportHost.Width - FocusRect.Width) / 2); zoomInOut.Minimum = 16; zoomInOut.ValueChanged += new RoutedPropertyChangedEventHandler <double>(ViewportSlider_ValueChanged); imageRatio = (double)bitmapImage.PixelHeight / bitmapImage.PixelWidth; SetRectangles(); #endregion selectedImage.SetSource(fileStream); }
/// <summary> /// 确保FocusRect在Viewport中进行缩放 /// </summary> public void AssureFocusRectZoomInZone(double zoom, double mininum) { double ViewPortTop = (double)Viewport.GetValue(Canvas.TopProperty); double ViewPortLeft = (double)Viewport.GetValue(Canvas.LeftProperty); double FocusRectTop = (double)FocusRect.GetValue(Canvas.TopProperty); double FocusRectLeft = (double)FocusRect.GetValue(Canvas.LeftProperty); if (zoom == mininum) { FocusRect.SetValue(Canvas.LeftProperty, ViewPortLeft); FocusRect.Width = Viewport.Width; } else { //确保顶部不越界 if (ViewPortTop > FocusRectTop) { FocusRect.SetValue(Canvas.TopProperty, ViewPortTop); } //确保左侧不越界 if (ViewPortLeft > FocusRectLeft) { FocusRect.SetValue(Canvas.LeftProperty, ViewPortLeft); } //判断x是否右侧越界 if ((Viewport.Width + ViewPortLeft) < (FocusRect.Width + FocusRectLeft)) { //如果已越界,但左侧未越界 if (Viewport.Width > FocusRect.Width) { FocusRect.SetValue(Canvas.LeftProperty, ViewPortLeft + Viewport.Width - FocusRect.Width); } else { FocusRect.Width = Viewport.Width; } } //判断是否底部越界 if ((Viewport.Height + ViewPortTop) < (FocusRect.Height + FocusRectTop)) { //如果已越界,但顶部未越界 if (Viewport.Height > FocusRect.Height) { FocusRect.SetValue(Canvas.TopProperty, ViewPortTop + Viewport.Height - FocusRect.Height); } else { FocusRect.Height = Viewport.Height; } } } SetRectangles(); }
/// <summary> /// 初始化相应元素信息 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void FocusRectangle_Loaded(object sender, RoutedEventArgs e) { Viewport.MinHeight = Viewport.MinWidth = 16; Viewport.SetValue(Canvas.TopProperty, (double)ViewportHost.GetValue(Canvas.TopProperty) + (ViewportHost.Height - Viewport.Height) / 2); Viewport.SetValue(Canvas.LeftProperty, (double)ViewportHost.GetValue(Canvas.LeftProperty) + (ViewportHost.Width - Viewport.Width) / 2); //初始设置FocusRect FocusRect.Width = FocusRect.Height = 100; FocusRect.MaxWidth = ViewportHost.Width; FocusRect.MaxHeight = ViewportHost.Height; FocusRect.MinHeight = FocusRect.MinWidth = 8; FocusRect.SetValue(Canvas.TopProperty, (double)ViewportHost.GetValue(Canvas.TopProperty) + (ViewportHost.Height - FocusRect.Height) / 2); FocusRect.SetValue(Canvas.LeftProperty, (double)ViewportHost.GetValue(Canvas.LeftProperty) + (ViewportHost.Width - FocusRect.Width) / 2); #region 8个小正方形位置 //左上 SmallRect[0] = new Rectangle() { Name = "SmallRect0", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //上中间 SmallRect[4] = new Rectangle() { Name = "SmallRect4", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //右上 SmallRect[1] = new Rectangle() { Name = "SmallRect1", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //左下 SmallRect[2] = new Rectangle() { Name = "SmallRect2", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //下中间 SmallRect[5] = new Rectangle() { Name = "SmallRect5", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //右下 SmallRect[3] = new Rectangle() { Name = "SmallRect3", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //左中间 SmallRect[6] = new Rectangle() { Name = "SmallRect6", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; //右中间 SmallRect[7] = new Rectangle() { Name = "SmallRect7", Width = Square.Width, Height = Square.Height, Fill = new SolidColorBrush(color) }; SetRectangles(); #endregion #region 事件绑定 foreach (Rectangle smallRectangle in SmallRect) { smallRectangle.Fill = new SolidColorBrush(color); smallRectangle.MouseMove += new MouseEventHandler(smallRectangle_MouseMove); smallRectangle.MouseLeftButtonUp += new MouseButtonEventHandler(smallRectangle_MouseLeftButtonUp); smallRectangle.MouseLeftButtonDown += new MouseButtonEventHandler(smallRectangle_MouseLeftButtonDown); smallRectangle.MouseEnter += new MouseEventHandler(smallRectangle_MouseEnter); LayoutRoot.Children.Add(smallRectangle); } FocusRect.MouseMove += new MouseEventHandler(FocusRect_MouseMove); FocusRect.MouseLeftButtonDown += new MouseButtonEventHandler(FocusRect_MouseLeftButtonDown); FocusRect.MouseLeftButtonUp += new MouseButtonEventHandler(FocusRect_MouseLeftButtonUp); FocusRect.MouseEnter += new MouseEventHandler(FocusRect_MouseEnter); FocusRect.MouseLeave += new MouseEventHandler(FocusRect_MouseLeave); #endregion }
/// <summary> /// SmallRect[]鼠标移动事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void smallRectangle_MouseMove(object sender, MouseEventArgs e) { if (trackingMouseMove) { FrameworkElement element = sender as FrameworkElement; double offSetY = e.GetPosition(element).Y - prevLeftClick.Y; double offSetX = e.GetPosition(element).X - prevLeftClick.X; if (AssureFocusRectMoveInZone(element.Name)) { switch (this.CurrHitPlace) { case HitDownSquare.HDS_TOP: if ((FocusRect.Height - offSetY) > 4) { FocusRect.Height = FocusRect.Height - offSetY; if (FocusRect.Height > 4) { FocusRect.SetValue(Canvas.TopProperty, (double)FocusRect.GetValue(Canvas.TopProperty) + offSetY); } } break; case HitDownSquare.HDS_TOPLEFT: if ((FocusRect.Height - offSetY) > 4) { FocusRect.Height = FocusRect.Height - offSetY; if (FocusRect.Height > 4) { FocusRect.SetValue(Canvas.TopProperty, (double)FocusRect.GetValue(Canvas.TopProperty) + offSetY); } } if ((FocusRect.Width - offSetX) > 4) { FocusRect.Width = FocusRect.Width - offSetX; if (FocusRect.Width > 4) { FocusRect.SetValue(Canvas.LeftProperty, (double)FocusRect.GetValue(Canvas.LeftProperty) + offSetX); } } break; case HitDownSquare.HDS_TOPRIGHT: if ((FocusRect.Height - offSetY) > 4) { FocusRect.Height = FocusRect.Height - offSetY; if (FocusRect.Height > 4) { FocusRect.SetValue(Canvas.TopProperty, (double)FocusRect.GetValue(Canvas.TopProperty) + offSetY); } } if ((FocusRect.Width + offSetX) > 4) { FocusRect.Width = FocusRect.Width + offSetX; } break; case HitDownSquare.HDS_RIGHT: if ((FocusRect.Width + offSetX) > 4) { FocusRect.Width = FocusRect.Width + offSetX; } break; case HitDownSquare.HDS_BOTTOM: if ((FocusRect.Height + offSetY) > 4) { FocusRect.Height = FocusRect.Height + offSetY; } break; case HitDownSquare.HDS_BOTTOMLEFT: if ((FocusRect.Height + offSetY) > 4) { FocusRect.Height = FocusRect.Height + offSetY; } if ((FocusRect.Width - offSetX) > 4) { FocusRect.Width = FocusRect.Width - offSetX; if (FocusRect.Width > 4) { FocusRect.SetValue(Canvas.LeftProperty, (double)FocusRect.GetValue(Canvas.LeftProperty) + offSetX); } } break; case HitDownSquare.HDS_BOTTOMRIGHT: if ((FocusRect.Height + offSetY) > 4) { FocusRect.Height = FocusRect.Height + offSetY; } if ((FocusRect.Width + offSetX) > 4) { FocusRect.Width = FocusRect.Width + offSetX; } break; case HitDownSquare.HDS_LEFT: if ((FocusRect.Width - offSetX) > 4) { FocusRect.Width = FocusRect.Width - offSetX; if (FocusRect.Width > 4) { FocusRect.SetValue(Canvas.LeftProperty, (double)FocusRect.GetValue(Canvas.LeftProperty) + offSetX); } } break; case HitDownSquare.HDS_NONE: FocusRect.SetValue(Canvas.LeftProperty, (double)FocusRect.GetValue(Canvas.LeftProperty) + offSetX); FocusRect.SetValue(Canvas.TopProperty, (double)FocusRect.GetValue(Canvas.TopProperty) + offSetY); break; } } SetRectangles(); } }
/// <summary> /// FocusRect是否在Viewport中,如不在,则确保其不超出Viewport区域 /// </summary> /// <returns></returns> bool AssureFocusRectMoveInZone(string elementName) { bool result = true; //try //{ double ViewPortTop = (double)Viewport.GetValue(Canvas.TopProperty); double ViewPortLeft = (double)Viewport.GetValue(Canvas.LeftProperty); double FocusRectTop = (double)FocusRect.GetValue(Canvas.TopProperty); double FocusRectLeft = (double)FocusRect.GetValue(Canvas.LeftProperty); if (Viewport.Height > ViewportHost.Height) //已使用放大功能,向上拖动 { if (0 > FocusRectTop) { FocusRect.SetValue(Canvas.TopProperty, (double)ViewportHost.GetValue(Canvas.TopProperty) + 4); result = false; } } else { if (ViewPortTop > FocusRectTop) { FocusRect.SetValue(Canvas.TopProperty, ViewPortTop); result = false; } } if (Viewport.Width >= ViewportHost.Width) //已使用放大功能,向左拖动 { if (0 > FocusRectLeft) { FocusRect.SetValue(Canvas.LeftProperty, (double)ViewportHost.GetValue(Canvas.LeftProperty) + 4); result = false; } } else { if (ViewPortLeft > FocusRectLeft) { FocusRect.SetValue(Canvas.LeftProperty, ViewPortLeft); result = false; } } if (Viewport.Width >= ViewportHost.Width) //已使用放大功能,向右拖动 { if ((ViewportHost.Width) < (FocusRect.Width + FocusRectLeft)) { if (elementName == "FocusRect") { FocusRect.SetValue(Canvas.LeftProperty, ViewportHost.Width - FocusRect.Width - 4); } else { FocusRect.Width = ViewportHost.Width - FocusRectLeft - 4; } result = false; } } else { if ((Viewport.Width + ViewPortLeft) < (FocusRect.Width + FocusRectLeft)) { if (elementName == "FocusRect") { FocusRect.SetValue(Canvas.LeftProperty, ViewPortLeft + Viewport.Width - FocusRect.Width); } else { FocusRect.Width = ViewPortLeft + Viewport.Width - FocusRectLeft; } result = false; } } if (Viewport.Height > ViewportHost.Height) //已使用放大功能,向下拖动 { if ((ViewportHost.Height) < (FocusRect.Height + FocusRectTop)) { if (elementName == "FocusRect") { FocusRect.SetValue(Canvas.TopProperty, ViewportHost.Height - FocusRect.Height - 4); } else { FocusRect.Height = ViewportHost.Height - FocusRectTop - 4; } result = false; } } else { if ((Viewport.Height + ViewPortTop) < (FocusRect.Height + FocusRectTop)) { if (elementName == "FocusRect") { FocusRect.SetValue(Canvas.TopProperty, ViewPortTop + Viewport.Height - FocusRect.Height); } else { FocusRect.Height = ViewPortTop + Viewport.Height - FocusRectTop; } result = false; } } //} //catch //{ // result = false; //} return(result); }