반응형

그래픽

(파이썬) 터틀 그래픽, 랜덤하게 별 100개 그리기

별 크기와 위치를 랜덤하게 생성해서 100개를 무작위로 그리는 파이썬 코드입니다. import turtle import random t = turtle.Turtle() t.shape("turtle") t.speed(0) for i in range(100): # 0.0 - 1.0 사이의 난수 red = random.random() green = random.random() blue = random.random() # 색을 지정한다 t.color(red, green, blue) # 이동할 때 선을 그리지않게 한다 t.penup() # x,y 좌표 값을 랜덤하게 생성 x = random.randint(-200, 100) y = random.randint(0, 200) t.goto(x, y) t.pendown(..

Python 2023.12.18

(파이썬) Matplotlib: plot()파이썬에서 시각화하기 (1)

Matplotlib: Visualization with Python 파이썬에서 Matplotlib 라이브러리를 이용해서 그래프나 이미지를 표현할 수 있습니다. 사이트: https://matplotlib.org/ Matplotlib — Visualization with Python seaborn seaborn is a high level interface for drawing statistical graphics with Matplotlib. It aims to make visualization a central part of exploring and understanding complex datasets. statistical data visualization Cartopy Cartopy is a Pyt..

Python 2023.11.12

(C#) GDI+, 이미지 출력하기

C#, 윈폼(winform, Windows Forms)에서 이미지를 출력하는 간단한 예제입니다. // using System; using System.Drawing; using System.Windows.Forms; namespace ImageEx { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Paint(object sender, PaintEventArgs e) { // Bitmap 객체 생성 Bitmap bmp = new Bitmap(@"c:\temp\kakao11.png"); int w = bmp.Width; // 원본 이미지 가로 크기 int h = bmp.Height;..

C# 2023.07.18
반응형