请告诉我如何在c#中的wpf中转换位图图像中的文本或字符串。因为没有像windows窗体那样的位图类。 感谢Advance :)
答案 0 :(得分:0)
BitmapImage正是您要找的。请参阅MSDN链接中提供的示例。
// Create the image element.
Image simpleImage = new Image();
simpleImage.Width = 200;
simpleImage.Margin = new Thickness(5);
// Create source.
BitmapImage bi = new BitmapImage();
// BitmapImage.UriSource must be in a BeginInit/EndInit block.
bi.BeginInit();
bi.UriSource = new Uri(@"/sampleImages/cherries_larger.jpg",UriKind.RelativeOrAbsolute);
bi.EndInit();
// Set the image source.
simpleImage.Source = bi;
此外,您可以直接在XAML中设置源代码,WPF通过默认转换器将String转换为ImageSource,将String转换为ImageSource。
<Image Source="/sampleImages/cherries_larger.jpg"/>