지금까지 작업한 스크립트의 내용은 다음과 같습니다.
;스크립트를 프로시저 데이터베이스(Procedure Database)에 등록
(script-fu-register
;스크립트의 진입점 함수의 이름(entry-point function name)
"script-fu-text-box"
;메뉴 라벨(menu label)
"Text Box"
;스크립트 설명(description)
"Creates a simple text box, sized to fit\
around the user's choice of text,\
font, font size, and color."
;스크립트 작성자(author)
"Michael Terry"
;저작권 알림(copyright notice)
"copyright 1997, Michael Terry;\
2009, the GIMP Documentation Team"
;작성일(date created)
"October 27, 1997"
;스크립트가 동작하는 이미지 타입(image type that the script works on)
""
;프롬프트의 사용자 입력 문자열 변수(a string variable)
SF-STRING "Text" "Text Box"
;프롬프트의 사용자 입력 글꼴(a font variable)
SF-FONT "Font" "Charter"
;프롬프트의 사용자 입력 글꼴 크기(a spin-button)
SF-ADJUSTMENT "Font size" '(50 1 1000 1 10 0 1)
;프롬프트의 사용자 입력 색상(color variable)
SF-COLOR "Color" '(0 0 0)
)
;Text Box 함수 정의
(define (script-fu-text-box inText inFont inFontSize inTextColor))
➡️ 다음: 13.3.4.6. 스크립트를 등록하는 과정(Steps For Registering The Script)
⬅️ 이전: 13.3.4.5. 함수 등록하기(Registering The Function)
⬆️ 위: 13.3.4.5. 함수 등록하기(Registering The Function)
⬆️ 위: 13.3.4. 첫번째 Script-Fu 스크립트(Your first Script-Fu script)