feat: 根据图片分辨率划分
This commit is contained in:
parent
aa4596911b
commit
30a7985ef4
Binary file not shown.
|
@ -24,21 +24,13 @@ var supportImageTypes = []string{
|
||||||
".jpe",
|
".jpe",
|
||||||
".png",
|
".png",
|
||||||
".webp",
|
".webp",
|
||||||
|
".psb",
|
||||||
}
|
}
|
||||||
|
|
||||||
// 水平图片
|
// gif图片
|
||||||
var normalImageList []string
|
|
||||||
var horizontalGifImageList []string
|
var horizontalGifImageList []string
|
||||||
var horizontal2KImageList []string
|
var verticalGifImageList []string
|
||||||
var horizontal1KImageList []string
|
var squareGifImageList []string
|
||||||
var horizontal3KImageList []string
|
|
||||||
var horizontal4KImageList []string
|
|
||||||
var horizontal5KImageList []string
|
|
||||||
var horizontal6KImageList []string
|
|
||||||
var horizontal7KImageList []string
|
|
||||||
var horizontal8KImageList []string
|
|
||||||
var horizontal9KImageList []string
|
|
||||||
var horizontalHKImageList []string
|
|
||||||
|
|
||||||
// 标准横向图片
|
// 标准横向图片
|
||||||
var horizontalStandard720PImageList []string
|
var horizontalStandard720PImageList []string
|
||||||
|
@ -46,40 +38,14 @@ var horizontalStandard1080PImageList []string
|
||||||
var horizontalStandard4KImageList []string
|
var horizontalStandard4KImageList []string
|
||||||
var horizontalStandard8KImageList []string
|
var horizontalStandard8KImageList []string
|
||||||
|
|
||||||
// 垂直图片
|
// psd图片
|
||||||
var verticalGifImageList []string
|
|
||||||
var vertical1KImageList []string
|
|
||||||
var vertical2KImageList []string
|
|
||||||
var vertical3KImageList []string
|
|
||||||
var vertical4KImageList []string
|
|
||||||
var vertical5KImageList []string
|
|
||||||
var vertical6KImageList []string
|
|
||||||
var vertical7KImageList []string
|
|
||||||
var vertical8KImageList []string
|
|
||||||
var vertical9KImageList []string
|
|
||||||
var verticalHKImageList []string
|
|
||||||
|
|
||||||
// 等比图片
|
|
||||||
var squareGifImageList []string
|
|
||||||
var square1KImageList []string
|
|
||||||
var square2KImageList []string
|
|
||||||
var square3KImageList []string
|
|
||||||
var square4KImageList []string
|
|
||||||
var square5KImageList []string
|
|
||||||
var square6KImageList []string
|
|
||||||
var square7KImageList []string
|
|
||||||
var square8KImageList []string
|
|
||||||
var square9KImageList []string
|
|
||||||
var squareHKImageList []string
|
|
||||||
|
|
||||||
// 标准等比图片
|
|
||||||
var squareStandard720PImageList []string
|
|
||||||
var squareStandard1080PImageList []string
|
|
||||||
var squareStandard4KImageList []string
|
|
||||||
var squareStandard8KImageList []string
|
|
||||||
|
|
||||||
var psdImageList []string
|
var psdImageList []string
|
||||||
|
|
||||||
|
// 规格对应图片所在的路径
|
||||||
|
var hSpecs2ImageList = make(map[string][]string)
|
||||||
|
var vSpecs2ImageList = make(map[string][]string)
|
||||||
|
var mSpecs2ImageList = make(map[string][]string)
|
||||||
|
|
||||||
func DoHandleImage(rootDir string) {
|
func DoHandleImage(rootDir string) {
|
||||||
total := len(vars.GlobalImagePathList) // 总数
|
total := len(vars.GlobalImagePathList) // 总数
|
||||||
successCount := 0 // 成功数
|
successCount := 0 // 成功数
|
||||||
|
@ -133,19 +99,19 @@ func DoHandleImage(rootDir string) {
|
||||||
}
|
}
|
||||||
uid := strings.ReplaceAll(uuid.NewV4().String(), "-", "")
|
uid := strings.ReplaceAll(uuid.NewV4().String(), "-", "")
|
||||||
if len(psdImageList) > 0 {
|
if len(psdImageList) > 0 {
|
||||||
psdImagePath := rootDir + string(os.PathSeparator) + uid + "_图片_PSD"
|
psdImagePath := rootDir + string(os.PathSeparator) + uid + "-图片_PSD"
|
||||||
if util.CreateDir(psdImagePath) {
|
if util.CreateDir(psdImagePath) {
|
||||||
doMoveFileToDir(psdImageList, psdImagePath)
|
doMoveFileToDir(psdImageList, psdImagePath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(readErrorImagePathList) > 0 {
|
if len(readErrorImagePathList) > 0 {
|
||||||
readInfoErrorPath := rootDir + string(os.PathSeparator) + uid + "_图片_读取异常"
|
readInfoErrorPath := rootDir + string(os.PathSeparator) + uid + "-图片_读取异常"
|
||||||
if util.CreateDir(readInfoErrorPath) {
|
if util.CreateDir(readInfoErrorPath) {
|
||||||
doMoveFileToDir(readErrorImagePathList, readInfoErrorPath)
|
doMoveFileToDir(readErrorImagePathList, readInfoErrorPath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(ignoreImagePathList) > 0 {
|
if len(ignoreImagePathList) > 0 {
|
||||||
ignorePath := rootDir + string(os.PathSeparator) + uid + "_图片_已忽略"
|
ignorePath := rootDir + string(os.PathSeparator) + uid + "-图片_已忽略"
|
||||||
if util.CreateDir(ignorePath) {
|
if util.CreateDir(ignorePath) {
|
||||||
doMoveFileToDir(ignoreImagePathList, ignorePath)
|
doMoveFileToDir(ignoreImagePathList, ignorePath)
|
||||||
}
|
}
|
||||||
|
@ -170,248 +136,83 @@ func doPickImageFile(uid string, rootDir string, imagePath2WidthHeightMap map[st
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if width < height {
|
if width < height {
|
||||||
handleVerticalImage(currentImagePath, height, suffix)
|
handleVerticalImage(currentImagePath, width, height, suffix)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
handleSquareImage(currentImagePath, width, height, suffix)
|
handleSquareImage(currentImagePath, width, height, suffix)
|
||||||
}
|
}
|
||||||
moveNormalImage(rootDir, uid)
|
moveStandardHorizontalImage(rootDir, uid)
|
||||||
moveHorizontalImage(rootDir, uid)
|
moveStandardVerticalImage(rootDir, uid)
|
||||||
moveVerticalImage(rootDir, uid)
|
moveStandardSquareImage(rootDir, uid)
|
||||||
moveSquareImage(rootDir, uid)
|
// 移动特殊规格的
|
||||||
|
moveSpecsHorizontalImage(rootDir, uid)
|
||||||
|
moveSpecsVerticalImage(rootDir, uid)
|
||||||
|
moveSpecsSquareImage(rootDir, uid)
|
||||||
}
|
}
|
||||||
|
|
||||||
func moveSquareImage(rootDir string, uid string) {
|
func moveStandardSquareImage(rootDir string, uid string) {
|
||||||
pathSeparator := string(os.PathSeparator)
|
pathSeparator := string(os.PathSeparator)
|
||||||
squareGifImagePath := rootDir + pathSeparator + uid + "_图片_等比_GIF"
|
squareGifImagePath := rootDir + pathSeparator + uid + "-图片_等比_GIF"
|
||||||
square1KImagePath := rootDir + pathSeparator + uid + "_图片_等比_1k"
|
|
||||||
square2KImagePath := rootDir + pathSeparator + uid + "_图片_等比_2k"
|
|
||||||
square3KImagePath := rootDir + pathSeparator + uid + "_图片_等比_3k"
|
|
||||||
square4KImagePath := rootDir + pathSeparator + uid + "_图片_等比_4k"
|
|
||||||
square5KImagePath := rootDir + pathSeparator + uid + "_图片_等比_5k"
|
|
||||||
square6KImagePath := rootDir + pathSeparator + uid + "_图片_等比_6k"
|
|
||||||
square7KImagePath := rootDir + pathSeparator + uid + "_图片_等比_7k"
|
|
||||||
square8KImagePath := rootDir + pathSeparator + uid + "_图片_等比_8k"
|
|
||||||
square9KImagePath := rootDir + pathSeparator + uid + "_图片_等比_9k"
|
|
||||||
squareHKImagePath := rootDir + pathSeparator + uid + "_图片_等比_原图"
|
|
||||||
if len(squareGifImageList) > 0 {
|
if len(squareGifImageList) > 0 {
|
||||||
util.CreateDir(squareGifImagePath)
|
util.CreateDir(squareGifImagePath)
|
||||||
doMoveFileToDir(squareGifImageList, squareGifImagePath)
|
doMoveFileToDir(squareGifImageList, squareGifImagePath)
|
||||||
}
|
}
|
||||||
if len(square1KImageList) > 0 {
|
|
||||||
util.CreateDir(square1KImagePath)
|
|
||||||
doMoveFileToDir(square1KImageList, square1KImagePath)
|
|
||||||
}
|
}
|
||||||
if len(square2KImageList) > 0 {
|
func moveSpecsSquareImage(rootDir string, uid string) {
|
||||||
util.CreateDir(square2KImagePath)
|
pathSeparator := string(os.PathSeparator)
|
||||||
doMoveFileToDir(square2KImageList, square2KImagePath)
|
for dirName := range mSpecs2ImageList {
|
||||||
}
|
imagePath := rootDir + pathSeparator + uid + "-" + dirName
|
||||||
if len(square3KImageList) > 0 {
|
if len(mSpecs2ImageList[dirName]) > 0 {
|
||||||
util.CreateDir(square3KImagePath)
|
util.CreateDir(imagePath)
|
||||||
doMoveFileToDir(square3KImageList, square3KImagePath)
|
doMoveFileToDir(mSpecs2ImageList[dirName], imagePath)
|
||||||
}
|
}
|
||||||
if len(square4KImageList) > 0 {
|
|
||||||
util.CreateDir(square4KImagePath)
|
|
||||||
doMoveFileToDir(square4KImageList, square4KImagePath)
|
|
||||||
}
|
|
||||||
if len(square5KImageList) > 0 {
|
|
||||||
util.CreateDir(square5KImagePath)
|
|
||||||
doMoveFileToDir(square5KImageList, square5KImagePath)
|
|
||||||
}
|
|
||||||
if len(square6KImageList) > 0 {
|
|
||||||
util.CreateDir(square6KImagePath)
|
|
||||||
doMoveFileToDir(square6KImageList, square6KImagePath)
|
|
||||||
}
|
|
||||||
if len(square7KImageList) > 0 {
|
|
||||||
util.CreateDir(square7KImagePath)
|
|
||||||
doMoveFileToDir(square7KImageList, square7KImagePath)
|
|
||||||
}
|
|
||||||
if len(square8KImageList) > 0 {
|
|
||||||
util.CreateDir(square8KImagePath)
|
|
||||||
doMoveFileToDir(square8KImageList, square8KImagePath)
|
|
||||||
}
|
|
||||||
if len(square9KImageList) > 0 {
|
|
||||||
util.CreateDir(square9KImagePath)
|
|
||||||
doMoveFileToDir(square9KImageList, square9KImagePath)
|
|
||||||
}
|
|
||||||
if len(squareHKImageList) > 0 {
|
|
||||||
util.CreateDir(squareHKImagePath)
|
|
||||||
doMoveFileToDir(squareHKImageList, squareHKImagePath)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleSquareImage(currentImagePath string, width int, height int, suffix string) {
|
func handleSquareImage(currentImagePath string, width int, height int, suffix string) {
|
||||||
if strings.EqualFold(suffix, ".gif") {
|
if strings.EqualFold(suffix, ".gif") {
|
||||||
squareGifImageList = append(squareGifImageList, currentImagePath)
|
squareGifImageList = append(squareGifImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if width < 1000 {
|
// 非标准规格图片处理
|
||||||
normalImageList = append(normalImageList, currentImagePath)
|
prefix := fmt.Sprintf("M_%d_%d", width, height)
|
||||||
} else if width >= 1000 && width < 2000 {
|
if mSpecs2ImageList[prefix] == nil {
|
||||||
// 1280 x 720 -> 720p
|
mSpecs2ImageList[prefix] = make([]string, 1)
|
||||||
if width == 1280 && height == 720 {
|
|
||||||
squareStandard720PImageList = append(squareStandard720PImageList, currentImagePath)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// 1920 x 1080 -> 1080p
|
|
||||||
if width == 1920 && height == 1080 {
|
|
||||||
squareStandard1080PImageList = append(squareStandard1080PImageList, currentImagePath)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
square1KImageList = append(square1KImageList, currentImagePath)
|
|
||||||
} else if width >= 2000 && width < 3000 {
|
|
||||||
square2KImageList = append(square2KImageList, currentImagePath)
|
|
||||||
} else if width >= 3000 && width < 4000 {
|
|
||||||
// 3840 x 2160 -> 4k
|
|
||||||
if width == 3840 && height == 2160 {
|
|
||||||
squareStandard4KImageList = append(squareStandard4KImageList, currentImagePath)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
square3KImageList = append(square3KImageList, currentImagePath)
|
|
||||||
} else if width >= 4000 && width < 5000 {
|
|
||||||
square4KImageList = append(square4KImageList, currentImagePath)
|
|
||||||
} else if width >= 5000 && width < 6000 {
|
|
||||||
square5KImageList = append(square5KImageList, currentImagePath)
|
|
||||||
} else if width >= 6000 && width < 7000 {
|
|
||||||
square6KImageList = append(square6KImageList, currentImagePath)
|
|
||||||
} else if width >= 7000 && width < 8000 {
|
|
||||||
// 7680 x 4320 -> 8k
|
|
||||||
if width == 7680 && height == 4320 {
|
|
||||||
squareStandard8KImageList = append(squareStandard8KImageList, currentImagePath)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
square7KImageList = append(square7KImageList, currentImagePath)
|
|
||||||
} else if width >= 8000 && width < 9000 {
|
|
||||||
square8KImageList = append(square8KImageList, currentImagePath)
|
|
||||||
} else if width >= 9000 && width < 10000 {
|
|
||||||
square9KImageList = append(square9KImageList, currentImagePath)
|
|
||||||
} else if width >= 10000 {
|
|
||||||
squareHKImageList = append(squareHKImageList, currentImagePath)
|
|
||||||
}
|
}
|
||||||
|
mSpecs2ImageList[prefix] = append(mSpecs2ImageList[prefix], currentImagePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 移动垂直图片
|
// 移动垂直图片
|
||||||
func moveVerticalImage(rootDir string, uid string) {
|
func moveStandardVerticalImage(rootDir string, uid string) {
|
||||||
pathSeparator := string(os.PathSeparator)
|
pathSeparator := string(os.PathSeparator)
|
||||||
verticalGifImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_GIF"
|
verticalGifImagePath := rootDir + pathSeparator + uid + "-图片_竖屏_GIF"
|
||||||
vertical1KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_1k"
|
|
||||||
vertical2KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_2k"
|
|
||||||
vertical3KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_3k"
|
|
||||||
vertical4KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_4k"
|
|
||||||
vertical5KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_5k"
|
|
||||||
vertical6KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_6k"
|
|
||||||
vertical7KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_7k"
|
|
||||||
vertical8KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_8k"
|
|
||||||
vertical9KImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_9k"
|
|
||||||
verticalHKImagePath := rootDir + pathSeparator + uid + "_图片_竖屏_原图"
|
|
||||||
if len(verticalGifImageList) > 0 {
|
if len(verticalGifImageList) > 0 {
|
||||||
util.CreateDir(verticalGifImagePath)
|
util.CreateDir(verticalGifImagePath)
|
||||||
doMoveFileToDir(verticalGifImageList, verticalGifImagePath)
|
doMoveFileToDir(verticalGifImageList, verticalGifImagePath)
|
||||||
}
|
}
|
||||||
if len(vertical1KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical1KImagePath)
|
|
||||||
doMoveFileToDir(vertical1KImageList, vertical1KImagePath)
|
|
||||||
}
|
}
|
||||||
if len(vertical2KImageList) > 0 {
|
func moveSpecsVerticalImage(rootDir string, uid string) {
|
||||||
util.CreateDir(vertical2KImagePath)
|
pathSeparator := string(os.PathSeparator)
|
||||||
doMoveFileToDir(vertical2KImageList, vertical2KImagePath)
|
for dirName := range vSpecs2ImageList {
|
||||||
|
imagePath := rootDir + pathSeparator + uid + "-" + dirName
|
||||||
|
if len(vSpecs2ImageList[dirName]) > 0 {
|
||||||
|
util.CreateDir(imagePath)
|
||||||
|
doMoveFileToDir(vSpecs2ImageList[dirName], imagePath)
|
||||||
}
|
}
|
||||||
if len(vertical3KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical3KImagePath)
|
|
||||||
doMoveFileToDir(vertical3KImageList, vertical3KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical4KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical4KImagePath)
|
|
||||||
doMoveFileToDir(vertical4KImageList, vertical4KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical5KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical5KImagePath)
|
|
||||||
doMoveFileToDir(vertical5KImageList, vertical5KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical6KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical6KImagePath)
|
|
||||||
doMoveFileToDir(vertical6KImageList, vertical6KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical7KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical7KImagePath)
|
|
||||||
doMoveFileToDir(vertical7KImageList, vertical7KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical8KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical8KImagePath)
|
|
||||||
doMoveFileToDir(vertical8KImageList, vertical8KImagePath)
|
|
||||||
}
|
|
||||||
if len(vertical9KImageList) > 0 {
|
|
||||||
util.CreateDir(vertical9KImagePath)
|
|
||||||
doMoveFileToDir(vertical9KImageList, vertical9KImagePath)
|
|
||||||
}
|
|
||||||
if len(verticalHKImageList) > 0 {
|
|
||||||
util.CreateDir(verticalHKImagePath)
|
|
||||||
doMoveFileToDir(verticalHKImageList, verticalHKImagePath)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 移动水平图片
|
// 移动水平图片
|
||||||
func moveHorizontalImage(rootDir string, uid string) {
|
func moveStandardHorizontalImage(rootDir string, uid string) {
|
||||||
pathSeparator := string(os.PathSeparator)
|
pathSeparator := string(os.PathSeparator)
|
||||||
horizontalGifImagePath := rootDir + pathSeparator + uid + "_图片_横屏_GIF"
|
horizontalGifImagePath := rootDir + pathSeparator + uid + "-图片_横屏_GIF"
|
||||||
horizontal1KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_1k"
|
horizontalStandard720PImagePath := rootDir + pathSeparator + uid + "-图片_横屏_720P"
|
||||||
horizontal2KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_2k"
|
horizontalStandard1080PImagePath := rootDir + pathSeparator + uid + "-图片_横屏_1080P"
|
||||||
horizontal3KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_3k"
|
horizontalStandard4KImagePath := rootDir + pathSeparator + uid + "-图片_横屏_4KP"
|
||||||
horizontal4KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_4k"
|
horizontalStandard8KImagePath := rootDir + pathSeparator + uid + "-图片_横屏_8KP"
|
||||||
horizontal5KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_5k"
|
|
||||||
horizontal6KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_6k"
|
|
||||||
horizontal7KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_7k"
|
|
||||||
horizontal8KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_8k"
|
|
||||||
horizontal9KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_9k"
|
|
||||||
horizontalHKImagePath := rootDir + pathSeparator + uid + "_图片_横屏_原图"
|
|
||||||
horizontalStandard720PImagePath := rootDir + pathSeparator + uid + "_图片_横屏_720P"
|
|
||||||
horizontalStandard1080PImagePath := rootDir + pathSeparator + uid + "_图片_横屏_1080P"
|
|
||||||
horizontalStandard4KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_4KP"
|
|
||||||
horizontalStandard8KImagePath := rootDir + pathSeparator + uid + "_图片_横屏_8KP"
|
|
||||||
if len(horizontalGifImageList) > 0 {
|
if len(horizontalGifImageList) > 0 {
|
||||||
util.CreateDir(horizontalGifImagePath)
|
util.CreateDir(horizontalGifImagePath)
|
||||||
doMoveFileToDir(horizontalGifImageList, horizontalGifImagePath)
|
doMoveFileToDir(horizontalGifImageList, horizontalGifImagePath)
|
||||||
}
|
}
|
||||||
if len(horizontal1KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal1KImagePath)
|
|
||||||
doMoveFileToDir(horizontal1KImageList, horizontal1KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal2KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal2KImagePath)
|
|
||||||
doMoveFileToDir(horizontal2KImageList, horizontal2KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal3KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal3KImagePath)
|
|
||||||
doMoveFileToDir(horizontal3KImageList, horizontal3KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal4KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal4KImagePath)
|
|
||||||
doMoveFileToDir(horizontal4KImageList, horizontal4KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal5KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal5KImagePath)
|
|
||||||
doMoveFileToDir(horizontal5KImageList, horizontal5KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal6KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal6KImagePath)
|
|
||||||
doMoveFileToDir(horizontal6KImageList, horizontal6KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal7KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal7KImagePath)
|
|
||||||
doMoveFileToDir(horizontal7KImageList, horizontal7KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal8KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal8KImagePath)
|
|
||||||
doMoveFileToDir(horizontal8KImageList, horizontal8KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontal9KImageList) > 0 {
|
|
||||||
util.CreateDir(horizontal9KImagePath)
|
|
||||||
doMoveFileToDir(horizontal9KImageList, horizontal9KImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontalHKImageList) > 0 {
|
|
||||||
util.CreateDir(horizontalHKImagePath)
|
|
||||||
doMoveFileToDir(horizontalHKImageList, horizontalHKImagePath)
|
|
||||||
}
|
|
||||||
if len(horizontalStandard720PImageList) > 0 {
|
if len(horizontalStandard720PImageList) > 0 {
|
||||||
util.CreateDir(horizontalStandard720PImagePath)
|
util.CreateDir(horizontalStandard720PImagePath)
|
||||||
doMoveFileToDir(horizontalStandard720PImageList, horizontalStandard720PImagePath)
|
doMoveFileToDir(horizontalStandard720PImageList, horizontalStandard720PImagePath)
|
||||||
|
@ -429,46 +230,29 @@ func moveHorizontalImage(rootDir string, uid string) {
|
||||||
doMoveFileToDir(horizontalStandard8KImageList, horizontalStandard8KImagePath)
|
doMoveFileToDir(horizontalStandard8KImageList, horizontalStandard8KImagePath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
func moveSpecsHorizontalImage(rootDir string, uid string) {
|
||||||
// 移动图片
|
|
||||||
func moveNormalImage(rootDir string, uid string) {
|
|
||||||
pathSeparator := string(os.PathSeparator)
|
pathSeparator := string(os.PathSeparator)
|
||||||
allNormalImagePath := rootDir + pathSeparator + uid + "_图片_普通"
|
for dirName := range hSpecs2ImageList {
|
||||||
if len(normalImageList) > 0 {
|
imagePath := rootDir + pathSeparator + uid + "-" + dirName
|
||||||
util.CreateDir(allNormalImagePath)
|
if len(hSpecs2ImageList[dirName]) > 0 {
|
||||||
doMoveFileToDir(normalImageList, allNormalImagePath)
|
util.CreateDir(imagePath)
|
||||||
|
doMoveFileToDir(hSpecs2ImageList[dirName], imagePath)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理垂直图片
|
// 处理垂直图片
|
||||||
func handleVerticalImage(currentImagePath string, height int, suffix string) {
|
func handleVerticalImage(currentImagePath string, width int, height int, suffix string) {
|
||||||
if strings.EqualFold(suffix, ".gif") {
|
if strings.EqualFold(suffix, ".gif") {
|
||||||
verticalGifImageList = append(verticalGifImageList, currentImagePath)
|
verticalGifImageList = append(verticalGifImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if height < 1000 {
|
// 非标准规格图片处理
|
||||||
normalImageList = append(normalImageList, currentImagePath)
|
prefix := fmt.Sprintf("V_%d_%d", width, height)
|
||||||
} else if height >= 1000 && height < 2000 {
|
if vSpecs2ImageList[prefix] == nil {
|
||||||
vertical1KImageList = append(vertical1KImageList, currentImagePath)
|
vSpecs2ImageList[prefix] = make([]string, 1)
|
||||||
} else if height >= 2000 && height < 3000 {
|
|
||||||
vertical2KImageList = append(vertical2KImageList, currentImagePath)
|
|
||||||
} else if height >= 3000 && height < 4000 {
|
|
||||||
vertical3KImageList = append(vertical3KImageList, currentImagePath)
|
|
||||||
} else if height >= 4000 && height < 5000 {
|
|
||||||
vertical4KImageList = append(vertical4KImageList, currentImagePath)
|
|
||||||
} else if height >= 5000 && height < 6000 {
|
|
||||||
vertical5KImageList = append(vertical5KImageList, currentImagePath)
|
|
||||||
} else if height >= 6000 && height < 7000 {
|
|
||||||
vertical6KImageList = append(vertical6KImageList, currentImagePath)
|
|
||||||
} else if height >= 7000 && height < 8000 {
|
|
||||||
vertical7KImageList = append(vertical7KImageList, currentImagePath)
|
|
||||||
} else if height >= 8000 && height < 9000 {
|
|
||||||
vertical8KImageList = append(vertical8KImageList, currentImagePath)
|
|
||||||
} else if height >= 9000 && height < 10000 {
|
|
||||||
vertical9KImageList = append(vertical9KImageList, currentImagePath)
|
|
||||||
} else if height >= 10000 {
|
|
||||||
verticalHKImageList = append(verticalHKImageList, currentImagePath)
|
|
||||||
}
|
}
|
||||||
|
vSpecs2ImageList[prefix] = append(vSpecs2ImageList[prefix], currentImagePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理横向图片
|
// 处理横向图片
|
||||||
|
@ -477,9 +261,7 @@ func handleHorizontalImage(currentImagePath string, width int, height int, suffi
|
||||||
horizontalGifImageList = append(horizontalGifImageList, currentImagePath)
|
horizontalGifImageList = append(horizontalGifImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if width < 1000 {
|
if width >= 1000 && width < 2000 {
|
||||||
normalImageList = append(normalImageList, currentImagePath)
|
|
||||||
} else if width >= 1000 && width < 2000 {
|
|
||||||
// 1280 x 720 -> 720p
|
// 1280 x 720 -> 720p
|
||||||
if width == 1280 && height == 720 {
|
if width == 1280 && height == 720 {
|
||||||
horizontalStandard720PImageList = append(horizontalStandard720PImageList, currentImagePath)
|
horizontalStandard720PImageList = append(horizontalStandard720PImageList, currentImagePath)
|
||||||
|
@ -490,36 +272,25 @@ func handleHorizontalImage(currentImagePath string, width int, height int, suffi
|
||||||
horizontalStandard1080PImageList = append(horizontalStandard1080PImageList, currentImagePath)
|
horizontalStandard1080PImageList = append(horizontalStandard1080PImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
horizontal1KImageList = append(horizontal1KImageList, currentImagePath)
|
|
||||||
} else if width >= 2000 && width < 3000 {
|
|
||||||
horizontal2KImageList = append(horizontal2KImageList, currentImagePath)
|
|
||||||
} else if width >= 3000 && width < 4000 {
|
} else if width >= 3000 && width < 4000 {
|
||||||
// 3840 x 2160 -> 4k
|
// 3840 x 2160 -> 4k
|
||||||
if width == 3840 && height == 2160 {
|
if width == 3840 && height == 2160 {
|
||||||
horizontalStandard4KImageList = append(horizontalStandard4KImageList, currentImagePath)
|
horizontalStandard4KImageList = append(horizontalStandard4KImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
horizontal3KImageList = append(horizontal3KImageList, currentImagePath)
|
|
||||||
} else if width >= 4000 && width < 5000 {
|
|
||||||
horizontal4KImageList = append(horizontal4KImageList, currentImagePath)
|
|
||||||
} else if width >= 5000 && width < 6000 {
|
|
||||||
horizontal5KImageList = append(horizontal5KImageList, currentImagePath)
|
|
||||||
} else if width >= 6000 && width < 7000 {
|
|
||||||
horizontal6KImageList = append(horizontal6KImageList, currentImagePath)
|
|
||||||
} else if width >= 7000 && width < 8000 {
|
} else if width >= 7000 && width < 8000 {
|
||||||
// 7680 x 4320 -> 8k
|
// 7680 x 4320 -> 8k
|
||||||
if width == 7680 && height == 4320 {
|
if width == 7680 && height == 4320 {
|
||||||
horizontalStandard8KImageList = append(horizontalStandard8KImageList, currentImagePath)
|
horizontalStandard8KImageList = append(horizontalStandard8KImageList, currentImagePath)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
horizontal7KImageList = append(horizontal7KImageList, currentImagePath)
|
|
||||||
} else if width >= 8000 && width < 9000 {
|
|
||||||
horizontal8KImageList = append(horizontal8KImageList, currentImagePath)
|
|
||||||
} else if width >= 9000 && width < 10000 {
|
|
||||||
horizontal9KImageList = append(horizontal9KImageList, currentImagePath)
|
|
||||||
} else if width >= 10000 {
|
|
||||||
horizontalHKImageList = append(horizontalHKImageList, currentImagePath)
|
|
||||||
}
|
}
|
||||||
|
// 非标准规格图片处理
|
||||||
|
prefix := fmt.Sprintf("H_%d_%d", width, height)
|
||||||
|
if hSpecs2ImageList[prefix] == nil {
|
||||||
|
hSpecs2ImageList[prefix] = make([]string, 1)
|
||||||
|
}
|
||||||
|
hSpecs2ImageList[prefix] = append(hSpecs2ImageList[prefix], currentImagePath)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 判断是否属于支持的图片文件
|
// 判断是否属于支持的图片文件
|
||||||
|
|
4
go.mod
4
go.mod
|
@ -1,15 +1,15 @@
|
||||||
module OdMediaPicker
|
module OdMediaPicker
|
||||||
|
|
||||||
go 1.21
|
go 1.19
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/gabriel-vasile/mimetype v1.4.3
|
github.com/gabriel-vasile/mimetype v1.4.3
|
||||||
|
github.com/redmask-hb/GoSimplePrint v0.0.0-20210302075413-3a3af92bcb7d
|
||||||
github.com/satori/go.uuid v1.2.0
|
github.com/satori/go.uuid v1.2.0
|
||||||
golang.org/x/image v0.16.0
|
golang.org/x/image v0.16.0
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/redmask-hb/GoSimplePrint v0.0.0-20210302075413-3a3af92bcb7d // indirect
|
|
||||||
golang.org/x/net v0.17.0 // indirect
|
golang.org/x/net v0.17.0 // indirect
|
||||||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue