2010-03-27 7 views

답변

1

fillStyle을 설정 한 다음 fill()을 호출해야합니다.

ctx.strokeStyle = 'red'; 
    ctx.stroke(); 
    ctx.fillStyle= 'blue'; 
    ctx.fill(); 
+0

감사합니다. 질문을 게시 한 후에 알았습니다. 여기 내 질문의 완성 된 제품입니다 : http://nebkat.com/projects/alphaworks/ – NebNeb