add comments todo

This commit is contained in:
Antoni Sawicki 2024-07-02 01:23:14 -07:00
parent b546b5cbae
commit 94d0e0d128
2 changed files with 2 additions and 2 deletions

2
txt.go
View File

@ -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
View File

@ -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")