C#Bitmap是干什么用的?能帮我解释下吗?

Bitmap类怎么用他,他有哪些方法?能用他做些什么?谢谢,... Bitmap类怎么用他, 他有哪些方法? 能用他做些什么 ? 谢谢, 展开
 我来答
匿名用户
推荐于2018-03-29
展开全部
c#.net Bitmap类的基本使用方法http://download.csdn.net/source/1002902 Bitmap 类更新:2007 年 11 月封装 GDI+ 位图,此位图由图形图像及其属性的像素数据组成。Bitmap 是用于处理由像素数据定义的图像的对象。 命名空间: System.Drawing
程序集: System.Drawing(在 System.Drawing.dll 中) 语法
Visual Basic(声明)
<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class Bitmap _
Inherits ImageVisual Basic (用法)
Dim instance As BitmapC#
[SerializableAttribute]
[ComVisibleAttribute(true)]
public sealed class Bitmap : ImageVisual C++
[SerializableAttribute]
[ComVisibleAttribute(true)]
public ref class Bitmap sealed : public ImageJ#
/** @attribute SerializableAttribute */
/** @attribute ComVisibleAttribute(true) */
public final class Bitmap extends ImageJScript
public final class Bitmap extends Image
备注
位图由图形图像及其属性的像素数据组成。可使用许多标准格式将位图保存到文件中。GDI+ 支持下列文件格式:BMP、GIF、EXIG、JPG、PNG 和 TIFF。有关支持的格式的更多信息,请纤槐参见位图类型。 可以使用 Bitmap 构槐孙造函数中的一种来从文件、流和其他源创建图像,然后使用 Save 方法将这些图像保存到流或文件系统中。使用 Graphics 对象的 DrawImage 方法,将图像绘制到屏幕上或内存中。有关使用图像文件的主题的列表,请参见使用图像、位图、图标和图元文件。 说明:
不能跨应用程序域访问铅竖链 Bitmap 类。例如,如果您创建了一个动态 AppDomain,并在该域中创建了几个画笔、钢笔和位图,然后将这些对象传递回主应用程序域,则您可以成功使用这些钢笔和画笔。但是,如果您调用 DrawImage 方法来绘制封送的 Bitmap,您会收到以下异常信息。远程处理无法在类型“System.Drawing.Image”上找到字段“本机映像”。
示例
下面的代码示例演示了如何使用 GetPixel 和 SetPixel 方法从文件构造新的 Bitmap,为图像重新着色。它还使用 PixelFormat、Width 和 Height 属性。 此示例旨在用于包含名为 Label1 的 Label、名为 PictureBox1 的 PictureBox 和名为 Button1 的 Button 的 Windows 窗体。将代码粘贴到该窗体中,并将 Button1_Click 方法与按钮的 Click 事件关联。 Visual Basic 复制代码
Dim image1 As BitmapPrivate Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click Try
' Retrieve the image.
image1 = New Bitmap( _
"C:\Documents and Settings\All Users\Documents\My Music\music.bmp", _
True) Dim x, y As Integer ' Loop through the images pixels to reset color.
For x = 0 To image1.Width - 1
For y = 0 To image1.Height - 1
Dim pixelColor As Color = image1.GetPixel(x, y)
Dim newColor As Color = _
Color.FromArgb(pixelColor.R, 0, 0)
image1.SetPixel(x, y, newColor)
Next
Next ' Set the PictureBox to display the image.
PictureBox1.Image = image1 ' Display the pixel format in Label1.
Label1.Text = "Pixel format: " + image1.PixelFormat.ToString() Catch ex As ArgumentException
MessageBox.Show("There was an error." _
& "Check the path to the image file.")
End Try
End Sub
C# 复制代码
Bitmap image1;private void Button1_Click(System.Object sender, System.EventArgs e)
{ try
{
// Retrieve the image.
image1 = new Bitmap(@"C:\Documents and Settings\All Users\"
+ @"Documents\My Music\music.bmp", true); int x, y; // Loop through the images pixels to reset color.
for(x=0; x<image1.Width; x++)
{
for(y=0; y<image1.Height; y++)
{
Color pixelColor = image1.GetPixel(x, y);
Color newColor = Color.FromArgb(pixelColor.R, 0, 0);
image1.SetPixel(x, y, newColor);
}
} // Set the PictureBox to display the image.
PictureBox1.Image = image1; // Display the pixel format in Label1.
Label1.Text = "Pixel format: "+image1.PixelFormat.ToString(); }
catch(ArgumentException)
{
MessageBox.Show("There was an error." +
"Check the path to the image file.");
}
}
http://msdn.microsoft.com/zh-cn/library/system.drawing.bitmap.aspx
匿名用户
2013-06-09
展开全部
创建一个图层画板
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式