C# Project
In this project we are learning to convert a color image into Red Green Blue image.
For this project we will need Microsoft Visual Studio
Converting a color image into green image is very simple. All we have to do is repeat 3 simple steps for each pixels of the image.
Note! As we are converting the color image into Green image hence we are only focusing on the Green component value. When converting the color image to Red image we will consider the Red component. And for blue image we will only consider the Blue component.
Example:
Consider a color pixel with the following values
A = 255
R = 100
G = 150
B = 200
Where A, R, G and B represents the Alpha, Red, Green and Blue value of the pixel.
Remember! ARGB will have an integer value in the range 0 to 255.
So, to convert the color pixel into green pixel we will set R and B to zero.
So, the new pixel value will be
A = 255
R = 0
G = 150
B = 0
Note! We don't have to change the alpha value because it only controls the transparency of the pixel.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RedGreenBlueImage
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//image path
string img = "D:\\Image\\Taj.jpg";
//read image
Bitmap bmp = new Bitmap(img);
//load original image in picturebox1
pictureBox1.Image = Image.FromFile(img);
//get image dimension
int width = bmp.Width;
int height = bmp.Height;
//3 bitmap for red green blue image
Bitmap rbmp = new Bitmap(bmp);
Bitmap gbmp = new Bitmap(bmp);
Bitmap bbmp = new Bitmap(bmp);
//red green blue image
for (int y = 0; y < height; y++)
{
for (int x = 0; x < width; x++)
{
//get pixel value
Color p = bmp.GetPixel(x, y);
//extract ARGB value from p
int a = p.A;
int r = p.R;
int g = p.G;
int b = p.B;
//set red image pixel
rbmp.SetPixel(x, y, Color.FromArgb(a, r, 0, 0));
//set green image pixel
gbmp.SetPixel(x, y, Color.FromArgb(a, 0, g, 0));
//set blue image pixel
bbmp.SetPixel(x, y, Color.FromArgb(a, 0, 0, b));
}
}
//load red image in picturebox2
pictureBox2.Image = rbmp;
//load green image in picturebox3
pictureBox3.Image = gbmp;
//load blue image in picturebox4
pictureBox4.Image = bbmp;
//write (save) red image
rbmp.Save("D:\\Image\\Red.png");
//write(save) green image
gbmp.Save("D:\\Image\\Green.png");
//write (save) blue image
bbmp.Save("D:\\Image\\Blue.png");
}
}
}
namespace RedGreenBlueImage
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(12, 12);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(230, 184);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// pictureBox2
//
this.pictureBox2.Location = new System.Drawing.Point(248, 12);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(230, 184);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox2.TabIndex = 1;
this.pictureBox2.TabStop = false;
//
// pictureBox3
//
this.pictureBox3.Location = new System.Drawing.Point(12, 202);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(230, 184);
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox3.TabIndex = 2;
this.pictureBox3.TabStop = false;
//
// pictureBox4
//
this.pictureBox4.Location = new System.Drawing.Point(248, 202);
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.Size = new System.Drawing.Size(230, 184);
this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox4.TabIndex = 3;
this.pictureBox4.TabStop = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(493, 412);
this.Controls.Add(this.pictureBox4);
this.Controls.Add(this.pictureBox3);
this.Controls.Add(this.pictureBox2);
this.Controls.Add(this.pictureBox1);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Red Green Blue Image";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.PictureBox pictureBox4;
}
}
ADVERTISEMENT