Android实现上传图片功能

本文实例为大家分享了Android实现上传图片功能的具体代码,供大家参考,具体内容如下

设定拍照返回的图片路径

/**
     * 设定拍照返回的图片路径
     * @param image 图片路径
     * @param i 约定值
     */
    protected void image(String image, int i) {
        //创建file对象,用于存储拍照后的图片,这也是拍照成功后的照片路径
        outputImage = new File(getExternalCacheDir(),image);
        try {
            //判断文件是否存在,存在删除,不存在创建
            if (outputImage.exists()){
                outputImage.delete();
            }
            outputImage.createNewFile();
        } catch (IOException e) {
            e.printStackTrace();
        }
        //相机拍照返回图片路径
        Uri photoUri;
        //判断当前Android版本
        if(Build.VERSION.SDK_INT>=24){
            photoUri = FileProvider.getUriForFile(TextActivity.this,"包名.FileProvider",outputImage);
        }else {
            photoUri = Uri.fromFile(outputImage);
        }
        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        intent.putExtra(MediaStore.EXTRA_OUTPUT, photoUri);
        startActivityForResult(intent, i);
    }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
调用系统相机拍照接受返回的图片路径

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (resultCode == RESULT_OK) {
            if (requestCode == IMAGE_Y) {
                getImageView(binding.imageY,"0");
            }
            if (requestCode == IMAGE_Q) {
                getImageView(binding.imageQ,"1");
            }
        }

}
1
2
3
4
5
6
7
8
9
10
11
12
13
上传图片

/**
     * 上传图片
     * @param view 图片展示 view
     */
    protected void getImageView(@NotNull ImageView view, String type) {
        Bitmap photo = BitmapFactory.decodeFile(outputImage.getAbsolutePath());
        view.setImageBitmap(photo);
        int direction = 0;
        try {
            ExifInterface exif = new ExifInterface(String.valueOf(outputImage));
            direction = Integer.parseInt(exif.getAttribute(ExifInterface.TAG_ORIENTATION));
        } catch (IOException e) {
            e.printStackTrace();
        }
        Matrix matrix = new Matrix();
        Uri uri = Uri.fromFile(outputImage);
        String f = uri.getPath();
        Bitmap b = rotateBitmap(getBitmapFromUrl(f,900,1200),0);
        switch (direction) {
            case 1:
                Log.d("图片方向","顶部,左侧(水平/正常)");
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),0);
                break;
            case 2:
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),0);
                Log.d("图片方向","顶部,右侧(水平镜像)");
                break;
            case 3:
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),180);
                Log.d("图片方向","底部,右侧(旋转180)");
                break;
            case 4:
                matrix.postScale(1, -1);
                b = Bitmap.createBitmap(b,0,0,900,1200,matrix,true);
                Log.d("图片方向","底部,左侧(垂直镜像)");
                break;
            case 5:
                matrix.postScale(-1, 1);
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),270);
                b = Bitmap.createBitmap(b,0,0,900,1200,matrix,true);
                Log.d("图片方向","左侧,顶部(水平镜像并顺时针旋转270)");
                break;
            case 6:
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),90);
                Log.d("图片方向","右侧,顶部(顺时针旋转90)");
                break;
            case 7:
                matrix.postScale(-1, 1);
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),90);
                b = Bitmap.createBitmap(b,0,0,900,1200,matrix,true);
                Log.d("图片方向","右侧,底部(水平镜像,顺时针旋转90度)");
                break;
            case 8:
                b = rotateBitmap(getBitmapFromUrl(f,900,1200),270);
                Log.d("图片方向","左侧,底部(顺时针旋转270)");
                break;
            default:
                break;
        }
        try {
            File files = new File(new URI(uri.toString()));
            saveBitmap(b,files);
        } catch (URISyntaxException e) {
            e.printStackTrace();
        }
        try {
            String file = uploadImage(networkApi.getFormal() + "setImage", uri.getPath(), code, userId);
            TextBase.FileInfo fileInfo = new TextBase.FileInfo();
            fileInfo.setFilePath(file);
            mFileInfos.add(fileInfo);
            model.load(file,type);
        } catch (IOException | JSONException e) {
            e.printStackTrace();
        }
    }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
 /**
     * 上传图片
     * @param url 上传接口路径
     * @param imagePath 图片路径
     * @param code 唯一标识
     * @return 服务器图片的路径
     * @throws IOException
     * @throws JSONException
     */
    public static String uploadImage(String url, String imagePath, String code, String userId) throws IOException, JSONException {
        OkHttpClient okHttpClient = new OkHttpClient();
        Log.d("imagePath", imagePath);
        File file = new File(imagePath);
        RequestBody image = RequestBody.create(MediaType.parse("image/jpg"), file);
        RequestBody requestBody = new MultipartBody.Builder()
                .setType(MultipartBody.FORM)
                .addFormDataPart("file", imagePath, image)
                .addFormDataPart("fileOid", code)
                .addFormDataPart("userId", userId)
                .build();
        Request request = new Request.Builder()
                .url(url)
                .addHeader("Authorization",令牌)
                .post(requestBody)
                .build();
        Response response = okHttpClient.newCall(request).execute();
        JSONObject jsonObject = new JSONObject(response.body().string());
        return jsonObject.optString("msg");
    }

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
其他工具类

/**
     * 压缩图片的方法
     * @param url
     * @param width
     * @param height
     * @return
     */
    public static Bitmap getBitmapFromUrl(String url, double width, double height) {
        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true; // 设置了此属性一定要记得将值设置为false
        Bitmap bitmap = BitmapFactory.decodeFile(url);
        // 防止OOM发生
        options.inJustDecodeBounds = false;
        int mWidth = bitmap.getWidth();
        int mHeight = bitmap.getHeight();
        Matrix matrix = new Matrix();
        float scaleWidth = 1;
        float scaleHeight = 1;
        // 按照固定宽高进行缩放
        if(mWidth <= mHeight) {
            scaleWidth = (float) (width/mWidth);
            scaleHeight = (float) (height/mHeight);
        } else {
            scaleWidth = (float) (height/mWidth);
            scaleHeight = (float) (width/mHeight);
        }
        // 按照固定大小对图片进行缩放
        matrix.postScale(scaleWidth, scaleHeight);
        Bitmap newBitmap = Bitmap.createBitmap(bitmap, 0, 0, mWidth, mHeight, matrix, true);
        // 用完了记得回收
        bitmap.recycle();
        return newBitmap;
    }

/**
     * Android保存Bitmap到文件
     * @param bitmap
     * @param file
     * @return
     */
    public static boolean saveBitmap(Bitmap bitmap, File file) {
        if (bitmap == null)
            return false;
        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(file);
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
            fos.flush();
            return true;
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return false;
    }

/**
     * 旋转图片
     * @param bitmap 图片
     * @param rotate 角度
     * @return
     */
    public static Bitmap rotateBitmap(Bitmap bitmap, int rotate) {
        if (bitmap == null)
            return null;

int w = bitmap.getWidth();
        int h = bitmap.getHeight();

Matrix mtx = new Matrix();
        mtx.postRotate(rotate);
        return Bitmap.createBitmap(bitmap, 0, 0, w, h, mtx, true);
    }

(0)

相关推荐

  • Android 开发 使用WebUploader解决安卓微信浏览器上传图片中遇到的bug

    先给大家分析下微信浏览器上传图片bug的原因 微信在新版本中采用的是自己的X5内核浏览器,而在较老的版本中还有可能是安卓的原生浏览器.具体的环境我也不太了解,但是经过实际多台安卓机型的测试,我采取的方案可以基本确保在安卓机中微信浏览器的成功上传.苹果机型没问题,因为微信的ios客户端使用的是Safari的内核,没有各种坑,且效果最好. 这里给出一个 WebUploader 官方关于移动端适配的 issues 链接.里面提供的方法确实有效,但就是解决的方案并没有很清楚的展示出来,从该issues中

  • Android 通过Base64上传图片到服务器实现实例

    Android 通过Base64上传图片到服务器 之前做上传图片是采用HttpServlet上传,不过用了一下Base64上传图片后,感觉比HttpServlet方便很多,大家也可以跟着尝试一下. 前台图片处理:(传Bitmap对象即可) /** * 通过Base32将Bitmap转换成Base64字符串 * @param bit * @return */ public String Bitmap2StrByBase64(Bitmap bit){ ByteArrayOutputStream bo

  • Android Retrofit 2.0框架上传图片解决方案

    本文为大家分享了 Android Retrofit 2.0框架上传图片解决方案,具体内容如下 1.单张图片的上传 /** * 上传一张图片 * @param description * @param imgs * @return */ @Multipart @POST("/upload") Call<String> uploadImage(@Part("fileName") String description, @Part("file\&qu

  • Android异步上传图片到PHP服务器

    原理 Android客户端模拟一个HTTP的Post请求到服务器端,服务器端接收相应的Post请求后,返回响应信息给给客户端. 背景 网上很多上传到java服务器上的,找了好久,找到了上传到php的了,思路跟我当初想的差不多,就是POST过去.废话不多说,直接上图看代码. php代码 <?php $target_path = "./upload/";//接收文件目录 $target_path = $target_path . basename( $_FILES['uploaded

  • Android使用post方式上传图片到服务器的方法

    本文实例讲述了Android使用post方式上传图片到服务器的方法.分享给大家供大家参考,具体如下: /** * 上传文件到服务器类 * * @author tom */ public class UploadUtil { private static final String TAG = "uploadFile"; private static final int TIME_OUT = 10 * 1000; // 超时时间 private static final String CH

  • Android实现本地上传图片并设置为圆形头像

    先从本地把图片上传到服务器,然后根据URL把头像处理成圆形头像. 因为上传图片用到bmob的平台,所以要到bmob(http://www.bmob.cn)申请密钥. 效果图: 核心代码: 复制代码 代码如下: public class MainActivity extends Activity {         private ImageView iv;         private String appKey="";                //填写你的Applicatio

  • Android基于OkHttp实现下载和上传图片

    本文实例为大家分享了OkHttp实现下载图片和上传图片的具体代码,供大家参考,具体内容如下 MainActivity.java public class MainActivity extends AppCompatActivity { private String Path = "https://10.url.cn/eth/ajNVdqHZLLAxibwnrOxXSzIxA76ichutwMCcOpA45xjiapneMZsib7eY4wUxF6XDmL2FmZEVYsf86iaw/"

  • Android使用OkHttp上传图片的实例代码

    简介 上传图片是一个APP的常见功能,可以是通过OOS上传到阿里云,也可以直接上传到Server后台,OOS有提供相应的SDK,此处忽略.下面通过OkHttp来实现图片的上传 代码 直接上代码UploadFileHelper.kt object UploadFileHelper { //--------ContentType private val MEDIA_OBJECT_STREAM = MediaType.parse("multipart/form-data") //------

  • android上传图片到PHP的过程详解

    今天在做上传头像的时候,总是提交连接超时错误,报错信息如下:XXXXXXSokcetTimeOutXXXXXXXX 然后自己设置HTTP的超时时间: 复制代码 代码如下: [java] view plaincopyprint? //设置超时时间  httpclient.setTimeout(20000); 再building,runing,还是不行....这就怪了,明明好好的,怎么会突然就变成连接超时了呢!又折腾了一阵子后,也跟后台那边的朋友沟通过,他也测试了上传接口,发现没什么问题,就让我自己

  • Android实现上传图片至java服务器

    这几天有做到一个小的案例,手机拍照.相册照片上传到服务器.客户端和服务器的代码都贴出来: 客户端 AndroidManifest.xml添加以下权限 <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.CAMERA"/> <uses-permissionandroid

随机推荐