Upload compressed image

后端 未结 3 548
旧时难觅i
旧时难觅i 2021-01-03 18:52

I am new to android. I have created one app to upload an image to server. It works perfectly for small size images but for larger images(>1 MB), this does not work. Here is

3条回答
  •  抹茶落季
    2021-01-03 19:34

    In my app too i face this problem.what i have done was, i uploaded the images and set that to imageview and i gave static height and width to be 300*300. and saved the bitmap in server.

    bitmap = Bitmap.createScaledBitmap(bitmap,desiredImageWidth,desiredImageHeight,true);

    sace this in server. here desiredImageWidth, desiredImageHeight are static values.

提交回复
热议问题