Java2D 기본 사용
1370 단어 Java2D
:
public void CreateImage(OutputStream out,int width,int height) throws Exception
{
BufferedImage readImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);
try
{
Graphics2D g = readImage.createGraphics();
//...
ImageIO.write(readImage, "png", out);
}
catch(Exception ex)
{
throw ex;
}
}
:
g.setFont(new Font("MS Gothic", Font.BOLD, 13));
:
g.setColor(Color.BLACK);
:
Stroke s = new BasicStroke(0.2f,BasicStroke.CAP_SQUARE, BasicStroke.JOIN_MITER, 1.0f, new float[]{3.0f, 3.0f}, 0f );
g.setStroke(s);
:
AffineTransform ct = AffineTransform.getRotateInstance(-Math.PI/50);
g.transform(ct);
( ):
BufferedImage bi2 = new BufferedImage(10, 10,
BufferedImage.TYPE_INT_RGB);
Graphics2D big2 = bi2.createGraphics();
big2.setColor(Color.WHITE);
big2.fillRect(0, 0, 10, 10);
big2.setColor(Color.RED);
big2.drawLine(10, 0, 0, 10);
big2.drawLine(0, 0, 4, 4);
Rectangle2D r2 = new Rectangle(0,0,10,10);
TexturePaint tp2 = new TexturePaint(bi2,r2);
g.setPaint(tp2);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 이미지 불 러 오기 Image 와 BufferedImage 이용Image 는 추상 적 인 열 이 고 BufferedImage 는 Image 의 실현 이다. Image 와 BufferedImage 의 주요 역할 은 그림 을 메모리 에 불 러 오 는 것 입 니 다. 자바 가 메모리...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.