fix(back) remake file

This commit is contained in:
2026-06-22 15:04:32 +03:00
parent aeee027612
commit 814b93621d
11 changed files with 40 additions and 19 deletions
+28
View File
@@ -0,0 +1,28 @@
package main
import (
"fmt"
"log"
"github.com/disintegration/imaging"
)
func main() {
path := "./uploads/items/background.png"
img, err := imaging.Open(path)
if err != nil {
log.Fatal(err)
}
resized := imaging.Resize(img, 1920, 0, imaging.Lanczos)
newPath := "./uploads/items/background.jpg"
err = imaging.Save(resized, newPath, imaging.JPEGQuality(82))
if err != nil {
log.Fatal(err)
}
fmt.Println("Готово")
}