[6월 신규 상장] 반도체 소부장 강소기업 '져스텍' 청약 분석 및 수요예측 결과 총정리
```pythonfrom PIL import Image, ImageDraw, ImageFontimport os# 폰트 세팅 (기존 다운로드된 파일 활용)font_path = "NanumGothicBold.ttf"width, height = 1080, 1080bg_color = "#0f172a" image = Image.new("RGB", (width, height), bg_color)draw = ImageDraw.Draw(image)for i in range(0, width + height, 60): draw.line([(0, i), (i, 0)], fill="#1e293b", width=3)draw.rectangle([(50, 50), (1030, 1030)], outline="#38bdf8", ..
2026. 6. 19.