C#图像重新着色的方法

本文实例讲述了C#图像重新着色的方法。分享给大家供大家参考。具体实现方法如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
namespace WindowsApplication2
{
  public partial class Form18 : Form
  {
    public Form18()
    {
      InitializeComponent();
    }
    private void panel1_Paint(object sender, PaintEventArgs e)
    {
      Graphics g = e.Graphics;
      using (Bitmap bmp = new Bitmap(@"d:/我的文档/桌面/ico/Administrator.bmp"))
      {
        ColorMap[] colorMap = new ColorMap[1];
        colorMap[0] = new ColorMap();
        colorMap[0].OldColor = Color.Blue;
        colorMap[0].NewColor = Color.White;
        ImageAttributes attr = new ImageAttributes();
        attr.SetRemapTable(colorMap);
        Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);
        rect.Offset(0, 0);
        g.DrawImage(bmp, rect, 0, 0, rect.Width, rect.Height, g.PageUnit, attr);
      }
    }
  }
}

希望本文所述对大家的C#程序设计有所帮助。

(0)

相关推荐

  • C#图像伪彩色处理方法

    本文实例讲述了C#图像伪彩色处理方法.分享给大家供大家参考.具体如下: //灰度图转伪彩色图像函数 public Bitmap PGrayToColor(Bitmap src) { try { Bitmap a = new Bitmap(src); Rectangle rect = new Rectangle(0, 0, a.Width, a.Height); System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.

  • C#判断一个图像是否是透明的GIF图的方法

    本文实例讲述了C#判断一个图像是否是透明的GIF图的方法.分享给大家供大家参考.具体如下: 1. 使用方法如下: System.Drawing.Image objImage = DownloadImage("https://www.google.com/images/srpr/logo3w.png"); if (IsTransparentPalette(objImage.Palette)) {//your code....} 2. C#代码如下: public bool IsTrans

  • C#实现TIF图像转PDF文件的方法

    本文实例讲述了C#实现TIF图像转PDF文件的方法.分享给大家供大家参考.具体实现方法如下: 这里介绍使用TIFtoPDF的用法.该工具可以将多个TIF图像文件合并成一个PDF文件 TIFtoPDF.rar文件点击此处本站下载. Program.cs文件如下: using System; using System.Collections.Generic; using System.IO; using iTextSharp.text; using iTextSharp.text.pdf; usi

  • C# Console利用mspaint打开图像并保存的方法

    本文实例讲述了C# Console利用mspaint打开图像并保存的方法.分享给大家供大家参考,具体如下: 调用画图板压缩图片 System.Diagnostics.Process process = new System.Diagnostics.Process(); process = System.Diagnostics.Process.Start("mspaint.exe", path); int processId = process.Id; AutomationElement

  • C#图像处理之木刻效果实现方法

    本文实例讲述了C#图像处理之木刻效果实现方法.分享给大家供大家参考.具体如下: //木刻效果 public Bitmap PFilterMuKe(Bitmap src) { try { Bitmap a = new Bitmap(src); Rectangle rect = new Rectangle(0, 0, a.Width, a.Height); System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Draw

  • C#图像透明度调整的方法

    本文实例讲述了C#图像透明度调整的方法.分享给大家供大家参考.具体如下: //定义图像透明度调整函数 public Bitmap PTransparentAdjust(Bitmap src,int num) { try { int w = src.Width; int h = src.Height; Bitmap dstBitmap = new Bitmap(src.Width, src.Height, System.Drawing.Imaging.PixelFormat.Format32bpp

  • C#控制图像旋转和翻转的方法

    本文实例讲述了C#控制图像旋转和翻转的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication2 { public par

  • C#实现在图像中绘制文字图形的方法

    本文实例讲述了C#实现在图像中绘制文字图形的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; using S

  • C#图像处理之浮雕效果实现方法

    本文实例讲述了C#图像处理之浮雕效果实现方法.分享给大家供大家参考.具体如下: //定义浮雕处理函数 public Bitmap PFudiao(Bitmap a) { try { int w = a.Width; int h = a.Height; Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.Drawing.Imaging.BitmapData sr

  • C#图像处理之霓虹效果实现方法

    本文实例讲述了C#图像处理之霓虹效果实现方法.分享给大家供大家参考.具体如下: //定义霓虹处理函数 public Bitmap PNihong(Bitmap a) { try { int w = a.Width; int h = a.Height; Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb); System.Drawing.Imaging.BitmapData sr

随机推荐