소스 검색

Improve log and flag help message

main
Matt Baer 3 년 전
부모
커밋
9244e91e1b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      cmd/wfgraphic-cli/main.go

+ 2
- 2
cmd/wfgraphic-cli/main.go 파일 보기

@@ -25,7 +25,7 @@ import (
var (
outputFile = flag.String("o", "out.png", "Image output filename")
font = flag.String("font", "serif", "Post font (options: \"serif\", \"sans\", \"mono\")")
instance = flag.String("i", "write.as", "WriteFreely instance hostname (e.g. pencil.writefree.ly)")
instance = flag.String("i", "write.as", "WriteFreely instance hostname (e.g. \"pencil.writefree.ly\")")
author = flag.String("u", "", "WriteFreely author username (for multi-user instances)")
size = flag.String("size", "1024", "Image size, either a single number for a square (e.g. \"900\") or a combined width and height (e.g. \"1080x1920\")")
)
@@ -36,7 +36,7 @@ func main() {

// Validate input
if !textpic.IsValidFont(*font) {
log.Info("Invalid font given. Options: \"serif\", \"sans\", \"mono\"")
log.Info("Invalid --font given. Options: \"serif\", \"sans\", \"mono\"")
os.Exit(1)
}
// Parse image dimensions and validate


불러오는 중...
취소
저장