批量转换文件夹内图片至指定格式(heic、raw、dng、tiff、png、jpeg、bmp等转png、jpeg、bmp、tiff等)

heic、raw、dng、tiff、png、jpeg、bmp等格式转换

from pillow_heif import register_heif_opener
from PIL import Image
import os


def convertImage(inputFile, outputFile, outputFormat):
    try:
        image = Image.open(inputFile)
        image.save(outputFile, format=outputFormat)
    except OSError:
        try:
            image = image.convert('RGB')
            image.save(outputFile, format=outputFormat)
        except Exception as e:
            print(e)


def batchConvertImage(inputFolder, outputFolder, outputFormat):
    for fileName in os.listdir(inputFolder):
        inputFile = os.path.join(inputFolder, fileName)
        outputFile = os.path.join(outputFolder, f"{os.path.splitext(fileName)[0]}.{outputFormat}")
        convertImage(inputFile, outputFile, outputFormat)


# heic需要
register_heif_opener()

# 待转换文件夹
inputFolder = "img1"

# 转换后文件夹
outputFolder = "fig"

# 输出文件格式
outputFormat = "jpeg"
batchConvertImage(inputFolder, outputFolder, outputFormat)

转换前

转换后

  • 11
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Go语言中,你可以使用第三方库来实现HEIC格式图片批量转换为JPG格式。一个常用的库是github.com/dsoprea/go-heic-convert。以下是一个简单的示例代码: ```go package main import ( "fmt" "io/ioutil" "os" "path/filepath" "github.com/dsoprea/go-heic-convert/convert" ) func main() { // 输入HEIC图片所在文件夹路径 inputDir := "/path/to/input/directory" // 输出JPG图片所在文件夹路径 outputDir := "/path/to/output/directory" // 获取输入文件夹下的所有HEIC文件 files, err := ioutil.ReadDir(inputDir) if err != nil { fmt.Printf("无法读取输入文件夹:%v\n", err) os.Exit(1) } // 遍历每个HEIC文件并进行转换 for _, file := range files { if !file.IsDir() && filepath.Ext(file.Name()) == ".heic" { inputFile := filepath.Join(inputDir, file.Name()) outputFile := filepath.Join(outputDir, file.Name()+".jpg") err = convert.ConvertHEICFile(inputFile, outputFile) if err != nil { fmt.Printf("转换失败:%s\n", inputFile) } else { fmt.Printf("转换成功:%s\n", inputFile) } } } } ``` 请确保在运行代码之前,你已经安装了`github.com/dsoprea/go-heic-convert`库。可以使用以下命令进行安装: ```shell go get -u github.com/dsoprea/go-heic-convert/... ``` 注意:该库依赖于ImageMagick和libheif库。在使用之前,请确保这两个库已经正确安装并配置好环境变量。 运行上述代码时,将输入文件夹路径和输出文件夹路径替换为实际的路径。代码将遍历输入文件夹中的所有HEIC文件,并将其转换为JPG格式并保存在输出文件夹中。转换成功的文件将打印在控制台上,而转换失败的文件将显示相应的错误消息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值