C# Zoom In and Zoom Out On A Image - c#
I want to make a program have zoom in and zoom out function.(2x,4x,8x)But I can't use a available zoom function.I have to write a new one.I have done importing bitmap image.And I can get rgb color for each pixel.I created matrisses colorR,colorG and colorB for r,g and b colors.After that I thought I can create the 2x zoomed image with SolidBrush on a panel.I will draw 2x image like this:
Original Image (For example 3x3 pixels) (p=pixel color and "_" for space)
p1_p2_p3
p4_p5_p6
p7_p8_p9
2x Zoomed Image (6x6 pixels because of orginal image size) (p=pixel color of orginal image and "_" for space)
p1_p1_p2_p2_p3_p3
p1_p1_p2_p2_p3_p3
p4_p4_p5_p5_p6_p6
p4_p4_p5_p5_p6_p6
p7_p7_p8_p8_p9_p9
p7_p7_p8_p8_p9_p9
I wrote one loop but it didn't work because it is complety wrong.So how can I write for loops ?
private void button4_Click(object sender, EventArgs e) {
listBox1.Items.Clear();//insignificant
listBox2.Items.Clear();//insignificant
listBox3.Items.Clear();//insignificant
using (OpenFileDialog dlg = new OpenFileDialog()) {
dlg.Title = "Open Image";
dlg.Filter = "*.bmp|*.bmp|*.*|*.*";
if (dlg.ShowDialog() == DialogResult.OK) {
pictureBox1.Image = new Bitmap(dlg.FileName);
}
}
}
private void button1_Click(object sender, EventArgs e) {
Graphics my2xImage = panel1.CreateGraphics();
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
int[,] colorR = new int[bmpHeight, bmpWidth];
int[,] colorG = new int[bmpHeight, bmpWidth];
int[,] colorB = new int[bmpHeight, bmpWidth];
for (int y = 0; y < bmpHeight; y++) {
for (int x = 0; x < bmpWidth; x++) {
Color pixelColor = bmpFirst.GetPixel(x, y);
colorR[x, y] = pixelColor.R;
colorG[x, y] = pixelColor.G;
colorB[x, y] = pixelColor.B;
listBox1.Items.Add("(" + (x + 1) + "," + (y + 1) + ")" + " " + colorR[x, y]);//insignificant
listBox2.Items.Add("(" + (x + 1) + "," + (y + 1) + ")" + " " + colorG[x, y]);//insignificant
listBox3.Items.Add("(" + (x + 1) + "," + (y + 1) + ")" + " " + colorB[x, y]);//insignificant
}
}
//for (int y = 0; y < (bmpHeight * 2); y++)
//{
// for (int x = 0; x < (bmpWidth * 2); x++)
// {
// Color mySpecialColor = Color.FromArgb(colorR[x,y], colorG[x,y], colorB[x,y]);
// SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
// my2xImage.FillRectangle(pixelBrush, x, y, 1, 1);
// }
//}
}
private void button5_Click(object sender, EventArgs e) {
}
private void button2_Click(object sender, EventArgs e) {
}
This is insane, but if you really must do it this way, then try something like this:
int dx = x*2;
int dy = y*2;
colorR[dx ,dy ] = pixelColor.R;
colorR[dx+1,dy ] = pixelColor.R;
colorR[dx ,dy+1] = pixelColor.R;
colorR[dx+1,dy+1] = pixelColor.R;
colorG[dx ,dy ] = pixelColor.G;
colorG[dx+1,dy ] = pixelColor.G;
colorG[dx ,dy+1] = pixelColor.G;
colorG[dx+1,dy+1] = pixelColor.G;
colorB[dx ,dy ] = pixelColor.B;
colorB[dx+1,dy ] = pixelColor.B;
colorB[dx ,dy+1] = pixelColor.B;
colorB[dx+1,dy+1] = pixelColor.B;
You should use the DrawImage method of the Graphics class.
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = Graphics.FromImage(bmpFirst);
// Draw image to screen.
g.DrawImage(newImage, destRect, x, y, width, height, units);
Look here: https://msdn.microsoft.com/en-us/library/ms142045(v=vs.110).aspx
Look here also: https://msdn.microsoft.com/en-us/library/k0fsyd4e(v=vs.110).aspx
You can even set the interpolation mode: https://msdn.microsoft.com/en-us/library/system.drawing.drawing2d.interpolationmode(v=vs.110).aspx
You are looking for the NearestNeighbor interpolation mode.
He is the solution.
private void button4_Click(object sender, EventArgs e )
{
listBox1.Items.Clear();
listBox2.Items.Clear();
listBox3.Items.Clear();
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Open Image";
dlg.Filter = "*.bmp|*.bmp|*.*|*.*";
if (dlg.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(dlg.FileName);
}
}
}
private void button1_Click(object sender, EventArgs e)
{
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel1.CreateGraphics();
int[,] colorR = new int[bmpHeight*2 , bmpWidth*2];
int[,] colorG = new int[bmpHeight*2 , bmpWidth*2];
int[,] colorB = new int[bmpHeight*2 , bmpWidth*2];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
int dx = x * 2;
int dy = y * 2;
colorR[dx, dy] = pixelColor.R;
colorR[dx + 1, dy] = pixelColor.R;
colorR[dx, dy + 1] = pixelColor.R;
colorR[dx + 1, dy + 1] = pixelColor.R;
colorG[dx, dy] = pixelColor.G;
colorG[dx + 1, dy] = pixelColor.G;
colorG[dx, dy + 1] = pixelColor.G;
colorG[dx + 1, dy + 1] = pixelColor.G;
colorB[dx, dy] = pixelColor.B;
colorB[dx + 1, dy] = pixelColor.B;
colorB[dx, dy + 1] = pixelColor.B;
colorB[dx + 1, dy + 1] = pixelColor.B;
}
}
for (int y = 0; y < (bmpHeight*2); y++)
{
for (int x = 0; x < (bmpWidth*2); x++)
{
Color mySpecialColor = Color.FromArgb(colorR[x, y], colorG[x, y], colorB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
You can use for loops for color[dx,dy] parts.Here it is for 8x zoom.
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel3.CreateGraphics();
int[,] colorR = new int[bmpHeight * 8, bmpWidth * 8];
int[,] colorG = new int[bmpHeight * 8, bmpWidth * 8];
int[,] colorB = new int[bmpHeight * 8, bmpWidth * 8];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
int dx = x * 8;
int dy = y * 8;
for (int i = 0; i < 8; i++)
{
for (int j = 0; j < 8; j++)
{
colorR[dx + j, dy + i] = pixelColor.R;
colorG[dx + j, dy + i] = pixelColor.G;
colorB[dx + j, dy + i] = pixelColor.B;
}
}
}
Full code (Also you can download project: Link
private void button4_Click(object sender, EventArgs e )
{
tabControl1.SelectedTab = tabPage1;
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Open Image";
dlg.Filter = "*.bmp|*.bmp|*.jpg|*.jpg|*.*|*.*";
if (dlg.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(dlg.FileName);
}
}
if (pictureBox1.Image == null)
{
MessageBox.Show("Please choose a image file.");
}
else
{
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
if (bmpHeight > 100 || bmpWidth > 100)
{
MessageBox.Show("Image size can't be bigger than 100x100 pixels");
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button10.Enabled = false;
}
else
{
button1.Enabled = true;
button2.Enabled = true;
button3.Enabled = true;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button10.Enabled = false;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage2;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel1.CreateGraphics();
int[,] colorR = new int[bmpWidth * 2 , bmpHeight *2];
int[,] colorG = new int[bmpWidth * 2 , bmpHeight *2];
int[,] colorB = new int[bmpWidth * 2 , bmpHeight *2];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
int dx = x * 2;
int dy = y * 2;
for (int i = 0; i < 2; i++)
{
for (int j = 0; j < 2; j++)
{
colorR[dx + i, dy + j] = pixelColor.R;
colorG[dx + i, dy + j] = pixelColor.G;
colorB[dx + i, dy + j] = pixelColor.B;
}
}
}
}
for (int y = 0; y < (bmpHeight*2); y++)
{
for (int x = 0; x < (bmpWidth*2); x++)
{
Color mySpecialColor = Color.FromArgb(colorR[x, y], colorG[x, y], colorB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void button5_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage3;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel2.CreateGraphics();
int[,] colorR = new int[bmpWidth * 4, bmpHeight * 4];
int[,] colorG = new int[bmpWidth * 4, bmpHeight * 4];
int[,] colorB = new int[bmpWidth * 4, bmpHeight * 4];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
int dx = x * 4;
int dy = y * 4;
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
colorR[dx + i, dy + j] = pixelColor.R;
colorG[dx + i, dy + j] = pixelColor.G;
colorB[dx + i, dy + j] = pixelColor.B;
}
}
}
}
for (int y = 0; y < (bmpHeight * 4); y++)
{
for (int x = 0; x < (bmpWidth * 4); x++)
{
Color mySpecialColor = Color.FromArgb(colorR[x, y], colorG[x, y], colorB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void button5_Click_1(object sender, EventArgs e)
{
}
private void tabPage2_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage4;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel3.CreateGraphics();
int[,] colorR = new int[bmpWidth * 8, bmpHeight * 8];
int[,] colorG = new int[bmpWidth * 8, bmpHeight * 8];
int[,] colorB = new int[bmpWidth * 8, bmpHeight * 8];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
int dx = x * 8;
int dy = y * 8;
for (int i = 0; i < 8; i++)
{
for (int j = 0; j < 8; j++)
{
colorR[dx + i, dy + j] = pixelColor.R;
colorG[dx + i, dy + j] = pixelColor.G;
colorB[dx + i, dy + j] = pixelColor.B;
}
}
}
}
for (int y = 0; y < (bmpHeight * 8); y++)
{
for (int x = 0; x < (bmpWidth * 8); x++)
{
Color mySpecialColor = Color.FromArgb(colorR[x, y], colorG[x, y], colorB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void button5_Click_2(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage5;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel4.CreateGraphics();
int[,] colorR = new int[bmpWidth, bmpHeight];
int[,] colorG = new int[bmpWidth, bmpHeight];
int[,] colorB = new int[bmpWidth, bmpHeight];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
colorR[x, y] = pixelColor.R;
colorG[x, y] = pixelColor.G;
colorB[x, y] = pixelColor.B;
}
}
int[,] colorSR = new int[bmpWidth /2, bmpHeight /2];
int[,] colorSG = new int[bmpWidth /2, bmpHeight /2];
int[,] colorSB = new int[bmpWidth /2, bmpHeight /2];
for (int i = 0; i < bmpWidth / 2; i++)
{
for (int j = 0; j < bmpHeight /2; j++)
{
colorSR[i, j] = (colorR[2 * i, 2 * j] + colorR[2 * i, 2 * j + 1] + colorR[2 * i + 1, 2 * j] + colorR[2 * i + 1, 2 * j + 1]) / 4;
colorSG[i, j] = (colorG[2 * i, 2 * j] + colorG[2 * i, 2 * j + 1] + colorG[2 * i + 1, 2 * j] + colorG[2 * i + 1, 2 * j + 1]) / 4;
colorSB[i, j] = (colorB[2 * i, 2 * j] + colorB[2 * i, 2 * j + 1] + colorB[2 * i + 1, 2 * j] + colorB[2 * i + 1, 2 * j + 1]) / 4;
}
}
for (int y = 0; y < (bmpHeight / 2); y++)
{
for (int x = 0; x < (bmpWidth / 2); x++)
{
Color mySpecialColor = Color.FromArgb(colorSR[x, y], colorSG[x, y], colorSB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void button6_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage6;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel5.CreateGraphics();
int[,] colorR = new int[bmpWidth, bmpHeight];
int[,] colorG = new int[bmpWidth, bmpHeight];
int[,] colorB = new int[bmpWidth, bmpHeight];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
colorR[x, y] = pixelColor.R;
colorG[x, y] = pixelColor.G;
colorB[x, y] = pixelColor.B;
}
}
int[,] colorSR = new int[bmpWidth / 4, bmpHeight / 4];
int[,] colorSG = new int[bmpWidth / 4, bmpHeight / 4];
int[,] colorSB = new int[bmpWidth / 4, bmpHeight / 4];
for (int i = 0; i < bmpWidth / 4; i++)
{
for (int j = 0; j < bmpHeight / 4; j++)
{
colorSR[i, j] = (colorR[4 * i, 4 * j] + colorR[4 * i, 4 * j + 1] + colorR[4 * i + 1, 4 * j] + colorR[4 * i + 1, 4 * j + 1]) / 4;
colorSG[i, j] = (colorG[4 * i, 4 * j] + colorG[4 * i, 4 * j + 1] + colorG[4 * i + 1, 4 * j] + colorG[4 * i + 1, 4 * j + 1]) / 4;
colorSB[i, j] = (colorB[4 * i, 4 * j] + colorB[4 * i, 4 * j + 1] + colorB[4 * i + 1, 4 * j] + colorB[4 * i + 1, 4 * j + 1]) / 4;
}
}
for (int y = 0; y < (bmpHeight / 4); y++)
{
for (int x = 0; x < (bmpWidth / 4); x++)
{
Color mySpecialColor = Color.FromArgb(colorSR[x, y], colorSG[x, y], colorSB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void button7_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage7;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel6.CreateGraphics();
int[,] colorR = new int[bmpWidth, bmpHeight];
int[,] colorG = new int[bmpWidth, bmpHeight];
int[,] colorB = new int[bmpWidth, bmpHeight];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
colorR[x, y] = pixelColor.R;
colorG[x, y] = pixelColor.G;
colorB[x, y] = pixelColor.B;
}
}
int[,] colorSR = new int[bmpWidth / 8, bmpHeight / 8];
int[,] colorSG = new int[bmpWidth / 8, bmpHeight / 8];
int[,] colorSB = new int[bmpWidth / 8, bmpHeight / 8];
for (int i = 0; i < bmpWidth / 8; i++)
{
for (int j = 0; j < bmpHeight / 8; j++)
{
colorSR[i, j] = (colorR[8 * i, 8 * j] + colorR[8 * i, 8 * j + 1] + colorR[8 * i + 1, 8 * j] + colorR[8 * i + 1, 8 * j + 1]) / 4;
colorSG[i, j] = (colorG[8 * i, 8 * j] + colorG[8 * i, 8 * j + 1] + colorG[8 * i + 1, 8 * j] + colorG[8 * i + 1, 8 * j + 1]) / 4;
colorSB[i, j] = (colorB[8 * i, 8 * j] + colorB[8 * i, 8 * j + 1] + colorB[8 * i + 1, 8 * j] + colorB[8 * i + 1, 8 * j + 1]) / 4;
}
}
for (int y = 0; y < (bmpHeight / 8); y++)
{
for (int x = 0; x < (bmpWidth / 8); x++)
{
Color mySpecialColor = Color.FromArgb(colorSR[x, y], colorSG[x, y], colorSB[x, y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void button8_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Open Image";
dlg.Filter = "*.bmp|*.bmp|*.jpg|*.jpg|*.*|*.*";
if (dlg.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(dlg.FileName);
}
}
if (pictureBox1.Image == null)
{
MessageBox.Show("Please choose a image file.");
}
else
{
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
if (bmpHeight > 800 || bmpWidth > 800)
{
MessageBox.Show("Image size can't be bigger than 800x800 pixels.");
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button10.Enabled = false;
}
else
{
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button5.Enabled = true;
button6.Enabled = true;
button7.Enabled = true;
button10.Enabled = false;
}
}
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void button10_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
tabControl1.SelectedTab = tabPage8;
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
Bitmap bmpFirst = (Bitmap)pictureBox1.Image.Clone();
Graphics g = panel7.CreateGraphics();
int[,] colorR = new int[bmpWidth, bmpHeight];
int[,] colorG = new int[bmpWidth, bmpHeight];
int[,] colorB = new int[bmpWidth, bmpHeight];
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
Color pixelColor = bmpFirst.GetPixel(x, y);
colorR[x, y] = pixelColor.R;
colorG[x, y] = pixelColor.G;
colorB[x, y] = pixelColor.B;
}
}
for (int y = 0; y < bmpHeight; y++)
{
for (int x = 0; x < bmpWidth; x++)
{
int dx = bmpWidth - 1;
int dy = bmpHeight - 1;
Color mySpecialColor = Color.FromArgb(colorR[dx - x, dy - y], colorG[dx - x, dy - y], colorB[dx - x, dy - y]);
SolidBrush pixelBrush = new SolidBrush(mySpecialColor);
g.FillRectangle(pixelBrush, x, y, 1, 1);
}
}
}
private void button9_Click(object sender, EventArgs e)
{
tabControl1.SelectedTab = tabPage1;
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Open Image";
dlg.Filter = "*.bmp|*.bmp|*.jpg|*.jpg|*.*|*.*";
if (dlg.ShowDialog() == DialogResult.OK)
{
pictureBox1.Image = new Bitmap(dlg.FileName);
}
}
if (pictureBox1.Image == null)
{
MessageBox.Show("Please choose a image file.");
}
else
{
int bmpHeight = pictureBox1.Image.Height;
int bmpWidth = pictureBox1.Image.Width;
if (bmpHeight > 800 || bmpWidth > 800)
{
MessageBox.Show("Image size can't be bigger than 800x800 pixels");
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button10.Enabled = false;
}
else
{
button1.Enabled = false;
button2.Enabled = false;
button3.Enabled = false;
button5.Enabled = false;
button6.Enabled = false;
button7.Enabled = false;
button10.Enabled = true;
}
}
}
}
Related
DrawPolygon() erases the old polygon when drawing
I set the points and when the points of the same color form a square, I draw a polygon. But when a new square is formed, the old one disappears. can you tell me how to make sure that when drawing a new polygon, the old one does not disappear? in the checkpoint() function, I check whether there is a square of points of the same color and return e coordinates for drawing. public partial class Form1 : Form { private Class1 Class1 = new Class1(); private CellState currentPlayer = CellState.Red; public const int SIZE = 11; public const int Icon_Size = 30; public Form1() { InitializeComponent(); } //ставит точки protected override void OnMouseClick(MouseEventArgs e) { base.OnMouseClick(e); var p = new Point((int)Math.Round(1f * e.X / Icon_Size), (int)Math.Round(1f * e.Y / Icon_Size)); if (Class1[p] == CellState.Empty) { Class1.SetPoint(p, currentPlayer); currentPlayer = Class1.Inverse(currentPlayer); Invalidate(); } } //рисуем private void OnPaint(object sender, PaintEventArgs e) { e.Graphics.ScaleTransform(Icon_Size, Icon_Size); //рисуем сеточку using (var pen = new Pen(Color.Gainsboro, 0.1f)) { for (int x = 1; x < SIZE; x++) e.Graphics.DrawLine(pen, x, 1, x, SIZE - 1); for (int y = 1; y < SIZE; y++) e.Graphics.DrawLine(pen, 1, y, SIZE - 1, y); } e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; //рисуем точки using (var brush = new SolidBrush(Color.White)) for (int x = 1; x < Form1.SIZE; x++) for (int y = 1; y < Form1.SIZE; y++) { var p = new Point(x, y); var cell = Class1[p]; if (cell != CellState.Empty) { brush.Color = StateToColor(cell); e.Graphics.FillEllipse(brush, x - 0.2f, y - 0.2f, 0.4f, 0.4f); } } using (var PenP = new Pen(Color.Black, 0.1f)) using (var brush = new SolidBrush(Color.White)) { Class1.CheckPoint(); int i = Class1.CheckPoint()[0]; int j = Class1.CheckPoint()[1]; int cp = Class1.CheckPoint()[2]; if (cp == 1) { PenP.Color = Color.Red; brush.Color = Color.IndianRed; Point[] a = { new Point(i, j), new Point(i + 1, j), new Point(i + 1, j + 1), new Point(i, j + 1) }; e.Graphics.FillPolygon(brush, a); e.Graphics.DrawPolygon(PenP, a); } if (cp == 2) { PenP.Color = Color.Blue; brush.Color = Color.RoyalBlue; Point[] a = { new Point(i, j), new Point(i + 1, j), new Point(i + 1, j + 1), new Point(i, j + 1) }; e.Graphics.FillPolygon(brush, a); e.Graphics.DrawPolygon(PenP, a); } } } //условие смены цвета под ход игрока Color StateToColor(CellState state, byte alpha = 255) { var res = state == CellState.Blue ? Color.Blue : Color.Red; return Color.FromArgb(alpha, res); } }
C# windows form render isometric tile
I know so many questions have been already asked based on this topic and still i am unable to generate tiles in isometric view. please check the below code and its out put private void picIsometricBox_Paint(object sender, PaintEventArgs e) { try { int paddingTop = sdpaddingTop.Value * -80; int paddingleft = sdpaddingLeft.Value * 40; int rotateangle = sbRotate.Value * 5; int noofCells = 9; int cellsize = 60; int x = 0; for (int j = 1; j <= noofCells; j++) { for (int i = 1; i <= noofCells; i++) { var ep = (x % 2) == 0 ? Brushes.White : Brushes.Black; int xv = (j * cellsize + paddingleft); int yv = (i * cellsize) + paddingTop; int xxv = (i * cellsize) + paddingleft; int yyv = cellsize + paddingTop; e.Graphics.RotateTransform(rotateangle); e.Graphics.FillRectangle(ep, xv, yv, cellsize, cellsize); e.Graphics.FillRectangle(ep, xxv, yyv, cellsize, cellsize); e.Graphics.ResetTransform(); x++; } } } catch (Exception ex) { } } output is rendered in picture box: I am not sure how to generate tiles like below
XNA multiples cubes
firstly, forgive my English, I'm French... I wrote a code that does not work. I want to draw a mutliples blocks, like Minecraft, but in Voxel. on one side of my map, the result is good: This render is opaque, good ! but on the other side, I get this: But in this side of my map, it's no good :( Some faces appear through some other faces... Who has an idea ? My Normals ? My function Remake() is not used, it's for remove faces... namespace LandOfCube.Models { class Block { VertexBuffer instanceBuffer; public enum Form { all, noUp, noDown, noRight, noLeft, noFront, noBack } public Form cubeForm = Form.all; GraphicsDevice Graphics; Effect shader; private VertexBuffer vb; Color CubeColor; public Vector3 pos; VertexPositionColorNormal[] vertices; VertexPositionColorNormal[] verticesNoUp; VertexPositionColorNormal[] verticesNoDown; VertexPositionColorNormal[] verticesNoFront; VertexPositionColorNormal[] verticesNoBack; VertexPositionColorNormal[] verticesNoRight; VertexPositionColorNormal[] verticesNoLeft; private VertexPositionColorNormal[] Front = new VertexPositionColorNormal[5]; private VertexPositionColorNormal[] Back = new VertexPositionColorNormal[5]; private VertexPositionColorNormal[] Right = new VertexPositionColorNormal[5]; private VertexPositionColorNormal[] Up = new VertexPositionColorNormal[5]; private VertexPositionColorNormal[] Left = new VertexPositionColorNormal[5]; private VertexPositionColorNormal[] Down = new VertexPositionColorNormal[5]; public Vector3 normalFront = Vector3.Forward; public Vector3 normalBack = Vector3.Backward; public Vector3 normalTop = Vector3.Up; public Vector3 normalBottom = Vector3.Down; public Vector3 normalLeft = Vector3.Left; public Vector3 normalRight = Vector3.Right; public Block(GraphicsDevice graph, Color color, Vector3 position, ContentManager content) { Graphics = graph; shader = content.Load<Effect>("effects"); CubeColor = color; pos = position; Init(); SetVertices(); } bool test = false; public void Draw(Camera camera) { Graphics.SetVertexBuffer(vb); shader.CurrentTechnique = shader.Techniques["Colored"]; shader.Parameters["xView"].SetValue(camera.View); shader.Parameters["xProjection"].SetValue(camera.Projection); shader.Parameters["xWorld"].SetValue(Matrix.Identity); Vector3 lightDirection = new Vector3(1.0f, -1.0f, -1.0f); lightDirection.Normalize(); shader.Parameters["xLightDirection"].SetValue(lightDirection); shader.Parameters["xAmbient"].SetValue(0.1f); shader.Parameters["xEnableLighting"].SetValue(true); foreach (EffectPass pass in shader.CurrentTechnique.Passes) { pass.Apply(); this.Graphics.DrawPrimitives(PrimitiveType.TriangleList, 0, vertices.Length / 3); } } #region Methode abstraites private void Init() { InitFront(); InitBack(); InitDown(); InitUp(); InitLeft(); InitRight(); } public void Remake() { switch (cubeForm) { case Form.noBack: vertices = verticesNoBack; break; case Form.noFront: vertices = verticesNoFront; break; case Form.noUp: vertices = verticesNoUp; break; case Form.noDown: vertices = verticesNoDown; break; case Form.noRight: vertices = verticesNoRight; break; case Form.noLeft: vertices = verticesNoLeft; break; } vb = new VertexBuffer(Graphics, typeof(VertexPositionColorNormal), vertices.Length, BufferUsage.None); vb.SetData(vertices); verticesNoBack = null; verticesNoDown = null; verticesNoFront = null; verticesNoLeft = null; verticesNoRight = null; verticesNoUp = null; test = true; } public void SetVertices() { this.vertices = new VertexPositionColorNormal[36]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } setNoBack(); setNoFront(); setNoUp(); setNoDown(); setNoRight(); setNoLeft(); vb = new VertexBuffer(Graphics, typeof(VertexPositionColorNormal), vertices.Length, BufferUsage.None); vb.SetData(vertices); Clean(); } #region InitFaces public void setNoBack() { this.verticesNoBack = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } } public void setNoFront() { this.verticesNoFront = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } } public void setNoUp() { this.verticesNoUp = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } } public void setNoDown() { this.verticesNoFront = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } } public void setNoLeft() { this.verticesNoLeft = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Right[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } } public void setNoRight() { this.verticesNoRight = new VertexPositionColorNormal[30]; int y = 0; for (int x = 0; x < 6; x++) { this.vertices[y] = Up[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Down[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Back[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Front[x]; y++; } for (int x = 0; x < 6; x++) { this.vertices[y] = Left[x]; y++; } } public void InitFront() { this.Front = new VertexPositionColorNormal[6]; Front[0].Position = new Vector3(pos.X, pos.Y + 1, pos.Z); Front[0].Color = Color.Blue; Front[0].Normal = normalFront; Front[1].Position = new Vector3(pos.X, pos.Y, pos.Z + 1); Front[1].Color = Color.Blue; Front[1].Normal = normalFront; Front[2].Position = new Vector3(pos.X, pos.Y, pos.Z); Front[2].Color = Color.Blue; Front[2].Normal = normalFront; Front[3].Position = new Vector3(pos.X, pos.Y + 1, pos.Z); Front[3].Color = Color.Blue; Front[3].Normal = normalFront; Front[4].Position = new Vector3(pos.X, pos.Y + 1, pos.Z + 1); Front[4].Color = Color.Blue; Front[4].Normal = normalFront; Front[5].Position = new Vector3(pos.X, pos.Y, pos.Z + 1); Front[5].Color = Color.Blue; Front[5].Normal = normalFront; } public void InitBack() { this.Back = new VertexPositionColorNormal[6]; Back[0].Position = new Vector3(pos.X + 1, pos.Y, pos.Z + 1); Back[0].Color = Color.Red; Back[0].Normal = normalBack; Back[1].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Back[1].Color = Color.Red; Back[1].Normal = normalBack; Back[2].Position = new Vector3(pos.X + 1, pos.Y, pos.Z); Back[2].Color = Color.Red; Back[2].Normal = normalBack; Back[3].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z + 1); Back[3].Color = Color.Red; Back[3].Normal = normalBack; Back[4].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Back[4].Color = Color.Red; Back[4].Normal = normalBack; Back[5].Position = new Vector3(pos.X + 1, pos.Y, pos.Z + 1); Back[5].Color = Color.Red; Back[5].Normal = normalBack; } public void InitUp() { this.Up = new VertexPositionColorNormal[6]; Up[0].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Up[0].Color = Color.Black; Up[0].Normal = normalTop; Up[1].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z + 1); Up[1].Color = Color.Black; Up[1].Normal = normalTop; Up[2].Position = new Vector3(pos.X, pos.Y + 1, pos.Z + 1); Up[2].Color = Color.Black; Up[2].Normal = normalTop; Up[3].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Up[3].Color = Color.Black; Up[3].Normal = normalTop; Up[4].Position = new Vector3(pos.X, pos.Y + 1, pos.Z + 1); Up[4].Color = Color.Black; Up[4].Normal = normalTop; Up[5].Position = new Vector3(pos.X, pos.Y + 1, pos.Z); Up[5].Color = Color.Black; Up[5].Normal = normalTop; } public void InitDown() { this.Down = new VertexPositionColorNormal[6]; Down[0].Position = new Vector3(pos.X + 1, pos.Y, pos.Z); Down[0].Color = Color.Orange; Down[0].Normal = normalBottom; Down[1].Position = new Vector3(pos.X, pos.Y, pos.Z); Down[1].Color = Color.Orange; Down[1].Normal = normalBottom; Down[2].Position = new Vector3(pos.X, pos.Y, pos.Z + 1); Down[2].Color = Color.Orange; Down[2].Normal = normalBottom; Down[3].Position = new Vector3(pos.X + 1, pos.Y, pos.Z); Down[3].Color = Color.Orange; Down[3].Normal = normalBottom; Down[4].Position = new Vector3(pos.X, pos.Y, pos.Z + 1); Down[4].Color = Color.Orange; Down[4].Normal = normalBottom; Down[5].Position = new Vector3(pos.X + 1, pos.Y, pos.Z + 1); Down[5].Color = Color.Orange; Down[5].Normal = normalBottom; } public void InitRight() { this.Right = new VertexPositionColorNormal[6]; Right[0].Position = new Vector3(pos.X + 1, pos.Y, pos.Z + 1); Right[0].Color = Color.Green; Right[0].Normal = normalRight; Right[1].Position = new Vector3(pos.X, pos.Y, pos.Z + 1); Right[1].Color = Color.Green; Right[1].Normal = normalRight; Right[2].Position = new Vector3(pos.X, pos.Y + 1, pos.Z + 1); Right[2].Color = Color.Green; Right[3].Normal = normalRight; Right[3].Position = new Vector3(pos.X + 1, pos.Y, pos.Z + 1); Right[3].Color = Color.Green; Right[3].Normal = normalRight; Right[4].Position = new Vector3(pos.X, pos.Y + 1, pos.Z + 1); Right[4].Color = Color.Green; Right[4].Normal = normalRight; Right[5].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z + 1); Right[5].Color = Color.Green; Right[5].Normal = normalRight; } public void InitLeft() { this.Left = new VertexPositionColorNormal[6]; Left[0].Position = new Vector3(pos.X, pos.Y, pos.Z); Left[0].Color = Color.Aqua; Left[0].Normal = normalLeft; Left[1].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Left[1].Color = Color.Aqua; Left[1].Normal = normalLeft; Left[2].Position = new Vector3(pos.X, pos.Y + 1, pos.Z); Left[2].Color = Color.Aqua; Left[2].Normal = normalLeft; Left[3].Position = new Vector3(pos.X, pos.Y, pos.Z); Left[3].Color = Color.Aqua; Left[3].Normal = normalLeft; Left[4].Position = new Vector3(pos.X + 1, pos.Y, pos.Z); Left[4].Color = Color.Aqua; Left[4].Normal = normalLeft; Left[5].Position = new Vector3(pos.X + 1, pos.Y + 1, pos.Z); Left[5].Color = Color.Aqua; Left[5].Normal = normalLeft; } #endregion private void setTriangleNormal(VertexPositionColorNormal v1, VertexPositionColorNormal v2, VertexPositionColorNormal v3) { Vector3 side1 = v1.Position - v3.Position; Vector3 side2 = v1.Position - v2.Position; Vector3 normal = Vector3.Cross(side1, side2); v1.Normal += normal; v2.Normal += normal; v3.Normal += normal; v1.Position.Normalize(); v1.Position.Normalize(); v1.Position.Normalize(); } public void Clean() { Front = null; Back = null; Right = null; Left = null; Up = null; Down = null; } #endregion } }
My guess is that you are winding the vertices on the back sides of the cubes in the wrong direction, making their normal point to the inside of the cube instead of the outside. One very common optimization in 3d code is to only draw triangles that have a normal facing the camera.
Edge Detection with Lockbits C#
I made a program that implements an edge detection algorithm, but it takes a long time to process. I've read about using lockbits, and unsafe state instead of getpixel and setpixel, but I still don't understand how to use it. This is my example code: private Bitmap SobelEdgeDetect(Bitmap original) { Bitmap b = original; Bitmap bb = original; int width = b.Width; int height = b.Height; int[,] gx = new int[,] { { -1, 0, 1 }, { -2, 0, 2 }, { -1, 0, 1 } }; int[,] gy = new int[,] { { 1, 2, 1 }, { 0, 0, 0 }, { -1, -2, -1 } }; int[,] allPixR = new int[width, height]; int[,] allPixG = new int[width, height]; int[,] allPixB = new int[width, height]; int limit = 128 * 128; for (int i = 0; i < width; i++) { for (int j = 0; j < height; j++) { allPixR[i, j] = b.GetPixel(i, j).R; allPixG[i, j] = b.GetPixel(i, j).G; allPixB[i, j] = b.GetPixel(i, j).B; } } int new_rx = 0, new_ry = 0; int new_gx = 0, new_gy = 0; int new_bx = 0, new_by = 0; int rc, gc, bc; for (int i = 1; i < b.Width - 1; i++) { for (int j = 1; j < b.Height - 1; j++) { new_rx = 0; new_ry = 0; new_gx = 0; new_gy = 0; new_bx = 0; new_by = 0; rc = 0; gc = 0; bc = 0; for (int wi = -1; wi < 2; wi++) { for (int hw = -1; hw < 2; hw++) { rc = allPixR[i + hw, j + wi]; new_rx += gx[wi + 1, hw + 1] * rc; new_ry += gy[wi + 1, hw + 1] * rc; gc = allPixG[i + hw, j + wi]; new_gx += gx[wi + 1, hw + 1] * gc; new_gy += gy[wi + 1, hw + 1] * gc; bc = allPixB[i + hw, j + wi]; new_bx += gx[wi + 1, hw + 1] * bc; new_by += gy[wi + 1, hw + 1] * bc; } } if (new_rx * new_rx + new_ry * new_ry > limit || new_gx * new_gx + new_gy * new_gy > limit || new_bx * new_bx + new_by * new_by > limit) bb.SetPixel(i, j, Color.Black); else bb.SetPixel(i, j, Color.Transparent); } } return bb; } I am using the fastbitmap class, which I implement like this: private Bitmap SobelEdgeDetectTwo(Bitmap original) { int width = original.Width; int height = original.Height; Bitmap result = new Bitmap(width,height); FastBitmap b = new FastBitmap(original); FastBitmap bb = new FastBitmap(result); b.LockBitmap(); bb.LockBitmap(); int[,] gx = new int[,] { { -1, 0, 1 }, { -2, 0, 2 }, { -1, 0, 1 } }; int[,] gy = new int[,] { { 1, 2, 1 }, { 0, 0, 0 }, { -1, -2, -1 } }; int[,] allPixR = new int[width, height]; int[,] allPixG = new int[width, height]; int[,] allPixB = new int[width, height]; int limit = 128 * 128; for (int i = 0; i < width; i++) { for (int j = 0; j < height; j++) { var pixel = b.GetPixel(i,j); allPixR[i, j] = pixel.Red; allPixG[i, j] = pixel.Green; allPixB[i, j] = pixel.Blue; } } int new_rx = 0, new_ry = 0; int new_gx = 0, new_gy = 0; int new_bx = 0, new_by = 0; int rc, gc, bc; for (int i = 1; i < width - 1; i++) { for (int j = 1; j < height - 1; j++) { new_rx = 0; new_ry = 0; new_gx = 0; new_gy = 0; new_bx = 0; new_by = 0; rc = 0; gc = 0; bc = 0; for (int wi = -1; wi < 2; wi++) { for (int hw = -1; hw < 2; hw++) { rc = allPixR[i + hw, j + wi]; new_rx += gx[wi + 1, hw + 1] * rc; new_ry += gy[wi + 1, hw + 1] * rc; gc = allPixG[i + hw, j + wi]; new_gx += gx[wi + 1, hw + 1] * gc; new_gy += gy[wi + 1, hw + 1] * gc; bc = allPixB[i + hw, j + wi]; new_bx += gx[wi + 1, hw + 1] * bc; new_by += gy[wi + 1, hw + 1] * bc; } } if (new_rx * new_rx + new_ry * new_ry > limit || new_gx * new_gx + new_gy * new_gy > limit || new_bx * new_bx + new_by * new_by > limit) { PixelData p = new PixelData(Color.Black); bb.SetPixel(i, j, p); } else { PixelData p = new PixelData(Color.Transparent); bb.SetPixel(i, j, p); } } } b.UnlockBitmap(); bb.UnlockBitmap(); return result; } However, the image doesn't change at all. Could you give me advice about which part of my code is wrong?
It's easiest to use a class like FastBitmap. Just add a FastBitmap and use GetPixel() on that class instead of on your Bitmap, the rest can be the same. Something like this: Bitmap dstBmp = new Bitmap(width, height, original.PixelFormat); FastBitmap fastBitmap = new FastBitmap(dstBmp); fastBitmap.LockBitmap(); //... var pixel = fastBitmap.GetPixel(x,y); //... fastBitmap.UnlockBitmap();
Ok, let's see what we can do - a quick Google found this, which can be simply adapted to your function something like this private Bitmap SobelEdgeDetect(Bitmap original) { int width = original.Width; int height = original.Height; int BitsPerPixel = Image.GetPixelFormatSize(original.PixelFormat); int OneColorBits = BitsPerPixel / 8; BitmapData bmpData = original.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, original.PixelFormat); int position; int[,] gx = new int[,] { { -1, 0, 1 }, { -2, 0, 2 }, { -1, 0, 1 } }; int[,] gy = new int[,] { { 1, 2, 1 }, { 0, 0, 0 }, { -1, -2, -1 } }; byte Threshold = 128; Bitmap dstBmp = new Bitmap(width, height, original.PixelFormat); BitmapData dstData = dstBmp.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, dstBmp.PixelFormat); unsafe { byte* ptr = (byte*)bmpData.Scan0.ToPointer(); byte* dst = (byte*)dstData.Scan0.ToPointer(); for (int i = 1; i < height - 1; i++) { for (int j = 1; j < width - 1; j++) { int NewX = 0, NewY = 0; for (int ii = 0; ii < 3; ii++) { for (int jj = 0; jj < 3; jj++) { int I = i + ii - 1; int J = j + jj - 1; byte Current = *(ptr + (I * width + J) * OneColorBits); NewX += gx[ii, jj] * Current; NewY += gy[ii, jj] * Current; } } position = ((i * width + j) * OneColorBits); if (NewX * NewX + NewY * NewY > Threshold * Threshold) dst[position] = dst[position + 1] = dst[position + 2] = 255; else dst[position] = dst[position + 1] = dst[position + 2] = 0; } } } original.UnlockBits(bmpData); dstBmp.UnlockBits(dstData); return dstBmp; } It's not complete copy/paste solution but you should be able to see how the original author is accessing the pixel data by using LockBits in exactly the way you need. The rest is up to you ;-) You will need to set the unsafe option in your project properties as I explained in my answer to your previous question.
Image splitting into 9 pieces
My Code: private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { ngr.Dispose(); List<Image> list = new List<Image>(); Graphics g = Graphics.FromImage(pictureBox1.Image); Brush redBrush = new SolidBrush(Color.Red); Pen pen = new Pen(redBrush,3); MessageBox.Show(pictureBox1.Image.Width + " " + pictureBox1.Image.Height); for (int i = 0; i < pictureBox1.Image.Width; i = (pictureBox1.Image.Width / 3) + i) { for (int y = 0; y < pictureBox1.Image.Height; y = (pictureBox1.Image.Height / 3) + y) { Rectangle r = new Rectangle(i, y, pictureBox1.Image.Width / 3, pictureBox1.Image.Height / 3); g.DrawRectangle(pen,r ); if (i > 0 && y > 0) { if (i + r.Width < pictureBox1.Image.Width && y + r.Height < pictureBox1.Image.Height) { list.Add(cropImage(pictureBox1.Image, r)); } } } } g.Dispose(); pictureBox1.Invalidate(); pictureBox1.Image = list[0]; } private static Image cropImage(Image img, Rectangle cropArea) { Bitmap bmpImage = new Bitmap(img); Bitmap bmpCrop = bmpImage.Clone(cropArea, System.Drawing.Imaging.PixelFormat.DontCare); return (Image)(bmpCrop); } This Code adds only 2 pieces to the list but not the other 7 pieces. Please Help!!
Change this part of code and try again: for (int i = 0; i < 3; i++) { for (int y = 0; y < 3; y++) { Rectangle r = new Rectangle(i*(pictureBox1.Image.Width / 3), y*(pictureBox1.Image.Height / 3), pictureBox1.Image.Width / 3, pictureBox1.Image.Height / 3); g.DrawRectangle(pen,r ); list.Add(cropImage(pictureBox1.Image, r)); } }