mirror of
https://github.com/tenox7/wrp.git
synced 2024-11-09 04:07:15 +00:00
add comments todo
This commit is contained in:
parent
b546b5cbae
commit
94d0e0d128
2
txt.go
2
txt.go
@ -197,7 +197,7 @@ func smallGif(src []byte) ([]byte, error) {
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("image decode problem: %v", err)
|
||||
}
|
||||
if img.Bounds().Max.X-img.Bounds().Min.X > *txtImgSize {
|
||||
if img.Bounds().Max.X-img.Bounds().Min.X > *txtImgSize { // this should come from the form
|
||||
img = resize.Resize(uint(*txtImgSize), 0, img, resize.NearestNeighbor)
|
||||
}
|
||||
var gifBuf bytes.Buffer
|
||||
|
2
wrp.go
2
wrp.go
@ -51,7 +51,7 @@ var (
|
||||
headless = flag.Bool("h", true, "Headless mode / hide browser window (default true)")
|
||||
noDel = flag.Bool("n", false, "Do not free maps and images after use")
|
||||
defType = flag.String("t", "gif", "Image type: png|gif|jpg|txt")
|
||||
txtImgSize = flag.Int("ts", 200, "txt mode image size")
|
||||
txtImgSize = flag.Int("ts", 200, "txt mode image size") // make it default, this should come from the from
|
||||
jpgQual = flag.Int("q", 80, "Jpeg image quality, default 80%")
|
||||
fgeom = flag.String("g", "1152x600x216", "Geometry: width x height x colors, height can be 0 for unlimited")
|
||||
htmFnam = flag.String("ui", "wrp.html", "HTML template file for the UI")
|
||||
|
Loading…
Reference in New Issue
Block a user