heic转png(windows版)

本文介绍了如何使用Java通过HTTPURLConnection从URL下载HEIF图像,并利用ImageMagick将其转换为JPEG。作者提供了详细的步骤和示例代码,包括处理异常和文件操作。
摘要由CSDN通过智能技术生成

1、电脑下载安装ImageMagick 官网地址:ImageMagick – Create, Edit, Compose, or Convert Digital Images

2、实现代码如下所示:

public static void main(String[] args) {
        String fileUrl = "https://p6-dcd-sign.byteimg.com/tos-cn-p-0015/o4DKIDYbmsfElgA99allnDeqWd7nxqgAAUKhWB~tplv-f042mdwyw7-original:640:0.heif?lk3s=23734399&x-expires=1706950357&x-signature=T2%2FlQj2iMr%2FDkitPbf6kTqrtcuw%3D";
        String destinationPath = "C:\\Users\\Administrator\\Desktop\\1.heic";
        String jpgFilePath = "C:\\Users\\Administrator\\Desktop\\file.jpg";

        try {
            // 创建URL对象
            URL url = new URL(fileUrl);

            // 打开连接
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            // 获取输入流
            InputStream inputStream = connection.getInputStream();

            // 创建输出流
            FileOutputStream outputStream = new FileOutputStream(destinationPath);

            // 创建缓冲区
            BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);

            // 读取数据并写入文件
            byte[] buffer = new byte[1024];
            int bytesRead;
            while ((bytesRead = bufferedInputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, bytesRead);
            }

            // 关闭流
            bufferedInputStream.close();
            outputStream.close();
            connection.disconnect();

            System.out.println("文件下载完成!");
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            // 构建命令行参数
            String[] command = {
                    "C:\\Program Files\\ImageMagick-7.1.1-Q16\\magick.exe",
                    destinationPath,
                    jpgFilePath
            };

            // 创建进程并执行命令
            ProcessBuilder pb = new ProcessBuilder(command);
            Process process = pb.start();

            // 等待进程执行完毕
            int exitCode = process.waitFor();
            if (exitCode == 0) {
                System.out.println("Conversion completed successfully.");
            } else {
                System.out.println("Conversion failed with error code: " + exitCode);
            }
        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值