"포스트스크립트"의 두 판 사이의 차이

11번째 줄: 11번째 줄:
<source lang='postscript'>
<source lang='postscript'>
  %!PS
  %!PS
  /Courier            % name the desired font
  /Courier            % 폰트
  20 selectfont        % choose the size in points and establish
  20 selectfont        % 폰트크기(단위: 포인트)
                      % the font as the current one
  72 500 moveto        % 좌표 (72, 500), 원점은 페이지 좌하단 끝
  72 500 moveto        % position the current point at
  (Hello world!) show  % 괄호안 문자열을 출력
                      % coordinates 72, 500 (the origin is at the
  showpage            % 페이지 전체 인쇄
                      % lower-left corner of the page)
  (Hello world!) show  % stroke the text in parentheses
  showpage            % print all on the page
</source>
</source>



2016년 5월 16일 (월) 11:13 판

1 개요

PostScript
포스트스크립트
  • 페이지 기술 언어의 일종
  • 1982년 발표
  • 설계자: 존 워낙, 찰스 게시케
  • 파일확장자: .ps
  • 미디어타입: application/postscript

2 예시

 %!PS
 /Courier             % 폰트
 20 selectfont        % 폰트크기(단위: 포인트)
 72 500 moveto        % 좌표 (72, 500), 원점은 페이지 좌하단 끝
 (Hello world!) show  % 괄호안 문자열을 출력
 showpage             % 페이지 전체 인쇄

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}