安卓将图片分割或者拉伸或者旋转到指定尺寸并保存到本地

直接上代码吧:你们要用的话可以按照想法改

复制代码
package com.demo.util;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.os.Environment;
import android.util.Log;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

public class ImageProcessingUtils {

    // 将图片分割并拉伸到指定尺寸并保存到本地
    public static void splitAndSaveImage(String imagePath, int splitCount, int targetWidth, int targetHeight) {
        // 1. 读取原始图片
        Log.e("TAG", "imagePath=======" + imagePath);
        Bitmap originalBitmap = BitmapFactory.decodeFile(imagePath);
        try {
            int originalWidth = originalBitmap.getWidth();
            int originalHeight = originalBitmap.getHeight();
            Log.e("TAG", "originalWidth=======" + originalWidth);
            Log.e("TAG", "originalHeight=======" + originalHeight);
            // 2. 计算分割后每部分图片的宽度和高度
            int splitWidth = originalWidth / splitCount;
            int splitHeight = originalHeight - 1;
            Log.e("TAG", "splitWidth=======" + splitWidth);
            Log.e("TAG", "splitHeight=======" + splitHeight);
            // 3. 创建输出目录(如果不存在)
            File outputDirectory = new File(Environment.getExternalStorageDirectory() + "/split_images");
            if (!outputDirectory.exists()) {
                outputDirectory.mkdirs();
            }

            // 4. 分割并拉伸图片,并保存到本地
            for (int col = 0; col < splitCount; col++) {
                Log.e("TAG", "col=======" + col);
                int startX = col * splitWidth;
                int startY = 0;
                Log.e("TAG", "startX=======" + startX);
                Log.e("TAG", "startY=======" + startY);
                // 获取分割区域的图像
                Bitmap splitBitmap = Bitmap.createBitmap(originalBitmap, startX, startY,
                        splitWidth, splitHeight);

                // 拉伸图像尺寸
               //Bitmap resizedBitmap = Bitmap.createScaledBitmap(splitBitmap,
               //        targetWidth, targetHeight, true);


               // // 旋转图像
               // Matrix matrix = new Matrix();
               // matrix.postRotate(90);
               // Bitmap rotatedBitmap = Bitmap.createBitmap(splitBitmap, 0, 0,
               //         splitWidth, splitHeight, matrix, true);
//
                // 构建输出文件路径
                String outputFilePath = outputDirectory.getAbsolutePath() + "/split_image_" + col + ".png";

                Log.e("TAG", "outputFilePath=======" + outputFilePath);
                // 保存图像到本地
                saveImage(splitBitmap, outputFilePath);
            }
        }catch (Exception c){
            Log.e("TAG", "c=======" + c.getMessage());
        }

    }

    // 保存图片到本地
    private static void saveImage(Bitmap bitmap, String filePath) {
        try {
            FileOutputStream out = new FileOutputStream(filePath);
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
            out.flush();
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

调用方式:ImageProcessingUtils.splitAndSaveImage(sourcePath,3,width,height);

sourcePath:原始图像地址

3:平均分成三份

width,height:想要拉伸的尺寸

相关推荐
broadview_java10 小时前
使用 ConstraintLayout 构建自适应界面
android
wy31362282113 小时前
android——开发中的常见Bug汇总与解决方案(闪退)
android·bug
小小测试开发14 小时前
实战派SQL性能优化:从语法层面攻克项目中的性能瓶颈
android·sql·性能优化
QuantumLeap丶14 小时前
《Flutter全栈开发实战指南:从零到高级》- 26 -持续集成与部署
android·flutter·ios
StarShip16 小时前
从Activity.setContentView()开始
android
千里马学框架16 小时前
重学SurfaceFlinger之Layer显示区域bounds计算剖析
android·智能手机·sf·安卓framework开发·layer·surfaceflinger·车载开发
nono牛17 小时前
安卓休眠与唤醒流程
android
二流小码农18 小时前
鸿蒙开发:个人开发者如何使用华为账号登录
android·ios·harmonyos
StarShip18 小时前
Android View框架概览
android·计算机图形学
愤怒的代码18 小时前
解析Android内存分析的指标
android·app