代码拉取完成,页面将自动刷新
同步操作将从 巴拉迪维/ImgResizer 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//Copyright (c) [2022] [巴拉迪维]
//[ImgResizer] is licensed under Mulan PSL v2.
//You can use this software according to the terms and conditions of the Mulan PSL v2.
//You may obtain a copy of Mulan PSL v2 at:
//http://license.coscl.org.cn/MulanPSL2
//THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
//See the Mulan PSL v2 for more details.
package main
import (
"ImgResizer/core"
"flag"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/nfnt/resize"
)
const Version string = "v1.3"
var (
cmdSource string
cmdDest string
cmdResizeMode int
cmdWidth int
cmdHeight int
cmdHelp bool
cmdFormat string
)
func init() {
flag.StringVar(&cmdFormat, "format", "", "Output format \nSupported values: png|jpg|jpeg|bmp|tiff|gif \nOmit to keep original format ")
flag.BoolVar(&cmdHelp, "help", false, "Show help message ")
flag.IntVar(&cmdWidth, "width", -1, "Destination width \nOmit to keep original width")
flag.IntVar(&cmdHeight, "height", -1, "Destination height \nOmit to keep original height")
flag.StringVar(&cmdSource, "source", "", "Source file or directory")
flag.StringVar(&cmdDest, "dest", "", "Destination file or directory")
flag.IntVar(&cmdResizeMode, "mode", 0, `0 - (Default) Nearest-neighbor interpolation
1 - Bilinear interpolation
2 - Bicubic interpolation
3 - Mitchell-Netravali interpolation
4 - Lanczos resampling with a=2
5 - Lanczos resampling with a=3`)
flag.Usage = func() {
fmt.Printf("Usage of ImgResizer %s\nFor more information, please visit: \nhttps://github.com/barats/ImgResizer or https://gitee.com/barat/imgresizer \n\nImgResizer -source {source} -dest {dest} -mode {mode}\n", Version)
flag.PrintDefaults()
}
}
func main() {
flag.Parse()
if cmdHelp {
flag.Usage()
return
}
if strings.EqualFold("", strings.TrimSpace(cmdSource)) || strings.EqualFold("", strings.TrimSpace(cmdDest)) {
fmt.Println("Missing parameter <-source> or <-dest>. Please -h or -help to show help message.")
return
}
sourceInfo, err := os.Stat(cmdSource)
if err != nil {
fmt.Printf("Cant not open %s, error %v", cmdSource, err)
return
}
if sourceInfo.IsDir() {
//Assume that source & destination are directories which include image files in it
//Assume that destination directory is existed(create if it's not)
//Assume that destination directory is empty(override if it's not)
files, err := ioutil.ReadDir(cmdSource)
if err != nil {
fmt.Printf("Error reading directory %s, %v", cmdSource, err)
return
}
err = os.MkdirAll(cmdDest, os.ModePerm)
if err != nil {
fmt.Printf("Error opening or creating directory %s, %v", cmdDest, err)
return
}
for _, f := range files {
if strings.EqualFold(f.Name(), ".DS_Store") {
continue
}
err := core.DealWithFile(filepath.Join(cmdSource, f.Name()), core.OutputOptions{
Format: core.OutputFormat(cmdFormat),
Width: cmdWidth,
Height: cmdHeight,
DestPath: filepath.Join(cmdDest, strings.TrimSuffix(f.Name(), filepath.Ext(f.Name()))),
Interpolation: resize.InterpolationFunction(cmdResizeMode),
})
if err != nil {
fmt.Println(err)
continue
}
} //end of for
} else {
//Assume that source & destination is file
//Assume that destination file does not exist, override if it's not
err := core.DealWithFile(cmdSource, core.OutputOptions{
Format: core.OutputFormat(cmdFormat),
Width: cmdWidth,
Height: cmdHeight,
DestPath: cmdDest,
Interpolation: resize.InterpolationFunction(cmdResizeMode),
})
if err != nil {
fmt.Sprintln(err)
return
}
}
fmt.Println("done.")
} //end of main
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。