2016-06-10 63 views
0

我把文件上傳到AWS S3服務器問心無愧代碼:的Android上傳圖像AWS-調整

private void beginUpload(String filePath) { 
     if (filePath == null) { 
      Toast.makeText(this, "Could not find the filepath of the selected file", 
        Toast.LENGTH_LONG).show(); 
      return; 
     } 
     File file = new File(filePath); 
     TransferObserver observer = transferUtility.upload(AWSConfiguration.BUCKET_NAME, file.getName(), 
       file); 

    } 

之前上傳我要調整圖像(不是我的手機,但只有在服務器上)佔用更少的內存。怎麼做?

回答

1

假設你file是位圖讓我們創建Bitmap對象如HERE然後調整它的大小,如HERE。用HERE創建帶有調整大小的位圖的新文件,發送並刪除文件。