Posts Tagged: Font

[Processing] Ch.6 Media

Image 추가하는 방법. 단계별로 아래와 같은 절차를 따르면 된다. Image를 data directory에 추가 PImage 변수 생성 loadImage()로 image를 load해 PImage 변수에 저장 만들어진 PImage 변수에 저장된 image를 그리기 위해서는 image 함수 이용. image(image_var, x_coord, y_coord)의 형태로 호출. 사이즈까지 지정하려면 image(image_var, x_coord, y_coord, width, height) 형태로 호출. 지원하는 형태 JPEG, PNG, GIF Font 추가 방법. font를… Read more »