달력

12025  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
반응형

사용이미지



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 App4ImageCut
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            Bitmap bitmap = Properties.Resources.트와이스;
            Bitmap newBitmap = new Bitmap(bitmap.Width, bitmap.Height);
 
            for (int x = 0; x < bitmap.Width; x++)
            {
                for (int y = 0; y < bitmap.Height; y++)
                {
                    Color pixel = bitmap.GetPixel(x, y);
 
                    if(pixel.R == 255 && pixel.G == 255 && pixel.B == 255)
                        newBitmap.SetPixel(x, y, Color.Transparent);
                    else
                        newBitmap.SetPixel(x, y, pixel);
                }
            }
 
            this.pictureBox1.Image = newBitmap;
        }
    }
}
 
cs


실행



'프로그래밍 > C#' 카테고리의 다른 글

[C#]Tuple 7.0부터 사용가능  (0) 2018.07.26
[C#]ImageResize  (0) 2018.07.24
[C#]텍스트 읽어들이기  (0) 2018.07.17
[C#]동그란 이미지 만들기  (0) 2018.07.01
[C#] 유닉스시간 <> 윈도우시간 변환 함수  (0) 2018.06.27
Posted by 유령회사
|