我使用此代码创建了一个图像
OpenFileDialog dlg = new OpenFileDialog();
dlg.FileName = ""; // Default file name
myImage = new Image();
try
{
Nullable<bool> result = dlg.ShowDialog();
if (result == true)
{
string sUri = @dlg.FileName;
Uri src = new Uri(sUri, UriKind.RelativeOrAbsolute);
BitmapImage bmp = new BitmapImage(src);
myImage.Source = bmp;
myImage.Width = 100;
myImage.Height = 100;
}
}
我可以放大/缩小此图片
public void Scale(int i, Point center)
{
Matrix m = myImage.RenderTransform.Value;
if (i > 0)
m.ScaleAtPrepend(1.1, 1.1, center.X, center.Y);
else
m.ScaleAtPrepend(1 / 1.1, 1 / 1.1, center.X, center.Y);
myImage.RenderTransform = new MatrixTransform(m);
}
但是当我得到ActualWidth或Width或ActualHeight / Height返回数字100.这意味着这些更改不会应用于原始图像(myImage)。 现在如何将更改(缩放或任何更改)应用于原始图像?
Tanx all;
答案 0 :(得分:0)
变换仅影响它们应用的对象的外观/布局,并且不会直接对源进行任何更改。为此,您需要自己调整图像大小,读取缩放值并将其应用于原始宽度和高度。
看看像AForge.Net这样的东西,它有无数的操作图像的方法,可以控制转换的质量等。