- 浏览: 399474 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (309)
- xaml C# wpf (0)
- scala java inner clas (1)
- Tools UML Eclipse UML2 (1)
- Timer .NET Framework (1)
- perl (6)
- python function paramter (1)
- Python Docstring (1)
- Python how to compare types (1)
- Python (8)
- java (5)
- C# (76)
- C# WPF (0)
- p4 (0)
- WPF (46)
- .net (6)
- xaml (1)
- javascript (40)
- windows (10)
- scala (4)
- winform (1)
- c++ (48)
- tools (12)
- cmd (1)
- os (0)
- CI (0)
- shell (0)
- C (2)
- haskell (49)
- functional (1)
- tool (1)
- gnu (1)
- linux (1)
- kaskell (0)
- svn (0)
- wcf (3)
- android (1)
最新评论
In the transition from Winform era to the Wpf era. Different type of image classes are used for icons, buttons images and etc....
The pre-world uses the Icon class (System.Drawing), while the newer wpf will uses ImageSource, more specifically, ImageSource's concrete derived classes such as BigmapFrame or BitmapImage (System.Windows.Media.Imaging);
Below shows the code that helps you to convert from BitmapFrame to Icon
private static Icon ConvertFromBitmapFrame(BitmapFrame bitmapFrame) { Debug.Assert(bitmapFrame != null); var ms = new MemoryStream(); var encoder = new PngBitmapEncoder(); encoder.Frames.Add(bitmapFrame); encoder.Save(ms); ms.Seek(0, SeekOrigin.Begin); var bmp = new Bitmap(ms); return Icon.FromHandle(bmp.GetHicon()); }
the above code may have handle leakage as the bmp.GetHIcon will leak the the GDI handle to the wild.
and below shows code to convert from Icon to ImageSource.
private BitmapFrame ConvertFromIcon(Icon icon) { var memoryStream = new MemoryStream(); icon.Save(memoryStream); memoryStream.Seek(0, SeekOrigin.Begin); return BitmapFrame.Create(memoryStream); }
发表评论
-
wpf - example to enhance ComboBox for AutoComplete
2014-09-19 15:56 1976first let’s see an example ... -
WPF – Virtualization – VirutalizationStackPanel and ItemsPanelTemplate
2013-08-05 21:55 1410Topic: WPF – Virtualization – ... -
wpf - BehaviorBase and one use examples
2013-06-18 18:41 1311Behavior is something that we ... -
WPF - Setting foreground color of Entire window
2013-06-13 16:00 1918You might as well as I would s ... -
WPF - Enhanced TabControl - TabControlEx aka Prerendering TabControl
2013-06-13 13:12 5330As an opening word, let's che ... -
wpf - ControlTemplate and AddLogicChild/RemoveLogicalChild
2013-06-10 15:42 1185Recently I was trying to debug ... -
wpf - default implicit style
2013-05-10 10:24 794We know that if you left out ... -
wpf - Style setter on the attached property
2013-05-08 14:54 2851I believe that you are familia ... -
wpf - specify enum values in xaml
2013-05-08 11:31 3584Many a situation you find tha ... -
wpf - IG xamDataGrid bind to XmlDataProvider with Xml Island
2012-12-18 14:28 1285Sometimes you may bind to some ... -
wpf - translate winform button/mouse event to wpf events
2012-12-12 17:37 2161It is common that we sometimes ... -
wpf - Freezable and its meaning
2012-09-27 12:38 0This article is based on the di ... -
wpf - Customize the grid lines for original wpf Grid control
2012-09-27 12:01 1458The System.WIndows.Controls.Gri ... -
c# - Convert from System.Drawing.Image to System.WIndows.Media.ImageSource
2012-09-25 14:27 7417In Previous discussion, we have ... -
wpf - Get Effective DependencyProperty value on a DependencyObject
2012-08-28 19:05 1044As discussed in my previous pos ... -
wpf - Default(Theme) style and its DefaultStyleKey
2012-08-28 17:54 1386As dicsused in the subsection o ... -
wpf - Dependency Property Value Precedence
2012-08-28 18:56 882A dependency property to an Dep ... -
wpf - WPF TemplateBinding vs RelativeSource TemplatedParent
2012-08-28 14:20 3713This is a post that summarizes ... -
wpf - ICutomTypeDescriptor , PropertyDescriptor and its use in PropertyGrid
2012-08-28 14:04 3580The type ICustomTypeDe ... -
wpf - tips to convert UI controls in WPF/Silverlight/Winforms into a Bitmap
2012-08-27 17:44 975In previous discussion, we have ...
相关推荐
this.Icon = BitmapFrame.Create(new Uri("pack://application:,,,/Resources/icon.ico")); ``` 4. **转换Icon与Bitmap**:Icon和Bitmap之间可以相互转换。例如,将Icon转换为Bitmap用于显示在PictureBox控件中:...
在IT领域,C#是一种广泛使用的编程语言,尤其在开发Windows应用程序时。XPS(XML Paper Specification)是一种文档格式,类似于Adobe的PDF,用于呈现和打印高质量的文档。本篇文章将详细探讨如何使用C#将XPS文件转换...
### .NET 下的 RGB 图片转 CMYK 处理(C#) #### 知识点解析 在本文中,我们将深入探讨如何在.NET框架下使用C#编程语言实现从RGB色彩模式转换到CMYK色彩模式的过程。该转换通常用于准备图像以供打印,因为大多数...
BitmapFrame frame = BitmapFrame.Create(new MemoryStream(imageBytes), BitmapCreateOptions.None, BitmapCacheOption.OnLoad); ImageSource imageSource = frame; Image imageControl = new Image(); image...
在C#编程中,将图片转换为byte数组并存储到数据库,然后从数据库读取byte数组再还原为图片,是一种常见的处理方式。这种方式便于在不直接依赖文件系统的情况下管理和传输图像数据。以下是对这个主题的详细说明: 1....
在C#编程中,"图形叠加Overlay"是一个关键概念,主要应用于可视化应用程序,如游戏开发、数据可视化或GUI界面设计。Overlay技术允许开发者在现有的图像或视频上添加额外的元素,如文字、图像或者动态效果,以提供更...
encoder.Frames.Add(BitmapFrame.Create(renderTargetBitmap)); encoder.Save(imageStream); imageStream.Seek(0, SeekOrigin.Begin); var image = PdfImage.FromStream(imageStream); pdfPage.ContentStream ...
在IT行业中,编程语言C#是一种广泛用于开发桌面应用、游戏、移动应用和Web应用的强大工具。本主题聚焦于一个特定的应用场景:使用C#进行屏幕拷贝,即将屏幕内容或部分屏幕区域捕获为图像。这个功能在很多场景下都...
标题中的“c#显示Gif动画”提示我们这个压缩包可能包含了如何在C#编程环境中显示GIF动画的教程或代码示例。虽然标签中提到了"Javascript",但根据标题,我们的主要焦点应放在C#上。我们将探讨C#中处理GIF动画的基本...
在本文中,我们将深入探讨如何使用C#编程语言开发一个图片编辑器。C#是一种功能强大的面向对象的编程语言,广泛应用于Windows桌面应用开发,尤其是与.NET Framework或.NET Core结合时。图片编辑器是一个允许用户对...
在C# WPF(Windows Presentation Foundation)开发中,有时我们需要将WPF应用程序中的视图或者控件导出为图片文件,以便于分享、保存或打印。这个任务可以通过编程实现,通常涉及以下几个关键知识点: 1. **绘图API...
【C#屏幕截图技术详解】 在C#编程中,实现屏幕截图是一项常见的需求,无论是为了创建应用程序的桌面快照,还是进行游戏录制或是自动化测试。2019年的C#屏幕截图技术已经相当成熟,我们可以利用.NET Framework或.NET...
在C#中,我们可以使用`System.Windows.Media.Imaging.GifBitmapDecoder`类来解码GIF动画,并通过`System.Windows.Media.ImageSource`对象显示它。以下是使用WIC加载GIF动画的基本代码: ```csharp var ...
在C#编程中,调用本机摄像头是一个常见的需求,特别是在开发涉及图像处理或视频流的应用时。本实例将向你展示如何利用C#、WPF(Windows Presentation Foundation)以及AForge.NET类库来实现这一功能。AForge.NET是一...
在C#中,可以使用`Convert.ToBase64String`方法将`byte[]`(图像的二进制数据)转换为Base64字符串。 5. **Base64到Image的转换**: 反向过程是将Base64字符串解码回图像数据。`Convert.FromBase64String`方法可以...
3. 将byte数组转换为Base64String:最后,我们使用Convert类的ToBase64String方法将byte数组转化为Base64String。 ```csharp string base64String = Convert.ToBase64String(imageBytes); ``` 逆向操作,将Base64...
在本文中,我们将深入探讨如何使用C#和WPF(Windows Presentation Foundation)技术从一系列图像创建视频。这个项目提供了一种高效且用户友好的方法,将静态图片转换为动态视频,这对于多媒体应用、数据可视化或者...
在本案例中,我们关注的是如何在C#编程环境下实现这样一个功能。 C#是一种广泛应用于Windows桌面应用、服务器应用以及移动应用开发的面向对象的编程语言。在C#中,我们可以利用Windows Presentation Foundation ...
ImageSource source = BitmapFrame.Create(new Uri("path_to_your_image.jpg")); Image imageControl = new Image(); imageControl.Source = source; ``` 接下来,我们要用到的是WPF的WriteableBitmap类,它允许...
接着,我们创建一个`BitmapEncoder`实例(如`PngBitmapEncoder`),将渲染后的位图转换为一个`BitmapFrame`,并将其添加到编码器的帧列表中。最后,我们将图像保存到文件系统。 4. 在XAML中,添加一个按钮或触发器...