<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了Android實現圖片的裁剪和上傳的具體程式碼,供大家參考,具體內容如下
1、開發工具與關鍵技術:Eclipse、AndroidStudio
2、撰寫時間:2020年06月18日
接著上一次,呼叫系統的相機。上一次,我們已經拿到了圖片的uri。接下來,就要進行圖片的裁剪和上傳啦!其實圖片的裁剪和上傳比較簡單。如何簡單呢?好,我們來看程式碼。
1、首先,設定maven,這裡是使用uCrop裁剪圖片
//影象裁剪 , 需要先設定 maven { url "https://jitpack.io" } implementation 'com.github.yalantis:ucrop:2.2.4' //載入層 需要先設定 maven implementation 'com.github.ForgetAll:LoadingDialog:v1.1.2'
2、其次,在清單檔案中新增。注意:fullSensor看個人的用法,有些版本太高,不可使用
<activity android:name="com.yalantis.ucrop.UCropActivity" android:screenOrientation="fullSensor" android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
3、裁剪的方法
//開始圖片裁剪 使用UCrop private void startPhotoZoom(Uri uri) { //裁剪後儲存到檔案中 Uri cropFileUri = Uri.fromFile(mCropFile); UCrop uCrop = UCrop.of(uri, cropFileUri);//原始檔url,裁剪後輸出檔案uri UCrop.Options options = new UCrop.Options(); //設定裁剪圖片可操作的手勢 options.setAllowedGestures(UCropActivity.SCALE, UCropActivity.ROTATE, UCropActivity.ALL); //是否能調整裁剪框 options.setFreeStyleCropEnabled(false); uCrop.withOptions(options); //設定比例為1:1 uCrop.withAspectRatio(1, 1); //注意!!!!Fragment中使用uCrop 必須這樣,否則Fragment的onActivityResult接收不到回撥 uCrop.start(mActivityContext, this); }
4、在上次的Activity方法中呼叫裁剪的方法
public class UserFragment extends Fragment { private static final int IMAGE_REQUEST_CODE = 100; private static final int IMAGE_REQUEST_CODE_GE7 = 101; private static final int CAMERA_REQUEST_CODE = 104; private static final int REQUEST_EXTERNAL_STORAGE_CODE = 200; private Activity mActivityContext;//獲取上下文 private MyApplication myApplication;//獲取myApplication中的BestLogin物件 private BestLogin member;//使用者物件 private File mGalleryFile;//存放相簿選擇是返回的圖片 private File mCameraFile;//存放相機的圖片 private File mCropFile;//存放影象裁剪的圖片 private LoadingDialog loadingDialog;//載入層 **//注意:這個方法裡面有些程式碼是上次的系統呼叫相機的,請留意和上次程式碼是否有重複** @Override public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); if (resultCode == Activity.RESULT_OK && (data != null || requestCode == CAMERA_REQUEST_CODE)) { switch (requestCode) { case IMAGE_REQUEST_CODE://版本<7.0 相簿返回 //獲取圖片的全路徑 Uri uri = data.getData(); Log.e("ImagUri", uri.getPath()); **//進行影象裁剪 這裡需要呼叫圖片裁剪的方法** startPhotoZoom(uri); break; case IMAGE_REQUEST_CODE_GE7://版本>= 7.0 相簿返回 //獲取檔案路徑 String strPath = GetImagePath.getPath(mActivityContext, data.getData()); if (Tools.isNotNull(strPath)) { File imgFile = new File(strPath); //通過FileProvider建立一個content型別的Uri Uri dataUri = FileProvider.getUriForFile(mActivityContext, "com.gx.reservation.fileprovider", imgFile); Log.e("ImagUri", dataUri.getPath()); **//進行影象裁剪 這裡需要呼叫圖片裁剪的方法** startPhotoZoom(dataUri); } else { Toast.makeText(mActivityContext, "選擇圖片失敗", Toast.LENGTH_SHORT).show(); } break; **//這個還算比較重要的程式碼** case CAMERA_REQUEST_CODE://相機的返回 Uri inputUrl; if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.N){ //Android7.0及以上 //通過FileProvider建立一個content型別的Uri inputUrl=FileProvider.getUriForFile(mActivityContext,"com.gx.reservation.fileprovider",mCameraFile); }else { //Android7.0以下 inputUrl=Uri.fromFile(mCameraFile); } //啟動圖片裁剪 if (inputUrl!=null){ startPhotoZoom(inputUrl); } break; **//核心程式碼,其他的程式碼上次呼叫系統的相機都有用到** case UCrop.REQUEST_CROP://Ucrop裁剪返回 Uri resultUri = UCrop.getOutput(data); if (resultUri != null) { //uri轉檔案路徑 String strPathCrop = GetImagePath.getPath(mActivityContext, resultUri); if (Tools.isNotNull(strPathCrop)) { File fileUp = new File(strPathCrop); if (fileUp.exists()) { //=====上傳檔案 String url = ServiceUrls.getMemberMethodUrl("uploadMemberPicture"); //引數map Map<String, Object> pMap = new HashMap<>(); pMap.put("memberId", myApplication.getBestlogin().getLoginid()); //檔案map Map<String, File> fileMap = new HashMap<>(); fileMap.put("photo", fileUp); //顯示載入層 loadingDialog.setLoadingText("上傳中...").show(); //傳送請求 OkHttpTool.httpPostWithFile(url, pMap, fileMap, new OkHttpTool.ResponseCallback() { @Override public void onResponse(final boolean isSuccess, final int responseCode, String response, Exception exception) { mActivityContext.runOnUiThread(new Runnable() { @Override public void run() { //關閉載入層 loadingDialog.close(); String strText = "網路環境不佳,請稍後再試"; if (isSuccess && responseCode == 200) { try { JSONObject jsonObject = new JSONObject(response); int code = jsonObject.getInt("code"); strText = jsonObject.getString("text"); if (code == 200) { //提示:這裡我是使用者的資訊的修改,所以把修改後的資料設定到BestLogin物件中 String strData = jsonObject.getString("data"); BestLogin newMember = gson.fromJson(strData, BestLogin.class); if (newMember != null) { myApplication.setBestlogin(newMember); //重新載入本頁面 initView(); } } } catch (JSONException e) { e.printStackTrace(); } } Toast.makeText(mActivityContext, strText, Toast.LENGTH_LONG).show(); } }); } }); return; } } } Toast.makeText(mActivityContext, "圖片裁剪失敗", Toast.LENGTH_SHORT).show(); break; } } else { Toast.makeText(mActivityContext, "操作失敗", Toast.LENGTH_SHORT).show(); } }
5、伺服器端的上傳方法
public Object uploadMemberPicture(int memberId, @RequestParam(value = "photo") MultipartFile mPhoto) { JsonReturn jsonReturn=new JsonReturn(); if(!mPhoto.isEmpty() && mPhoto.getSize()>0) {//判斷檔案是否為空 if(memberId>0) {//判斷memberid BestLogin member=this.appMemberService.selectMemberById(memberId); if(member!=null) { //獲取檔名稱 String fileName=mPhoto.getOriginalFilename(); //獲取副檔名稱 String strExt=fileName.substring(fileName.lastIndexOf('.')); String phoneName=memberId + "_" + System.currentTimeMillis() + "_" + System.nanoTime() + strExt; //儲存圖片 try { FileUtils.writeByteArrayToFile(new File(AppSeting.UPLOAD_MEMBER_PHOTO_DIR, phoneName),mPhoto.getBytes()); //刪除以前的圖片 if(Tools.isNotNull(member.getPhoto())) { File oldImage=new File(AppSeting.UPLOAD_MEMBER_PHOTO_DIR,member.getPhoto()); if(oldImage.exists()) { oldImage.delete(); } } //將頭像的檔名稱儲存的資料庫 member.setPhoto(phoneName); int intR=this.appMemberService.updateMemberById(member); if(intR>0) { BestLogin memberVo=this.appMemberService.findMemberById(memberId); jsonReturn.setCode(200); jsonReturn.setText("頭像上傳成功"); jsonReturn.setData(memberVo); }else { jsonReturn.setCode(300); jsonReturn.setText("頭像上傳失敗,稍後再試"); } } catch (IOException e) { e.printStackTrace(); jsonReturn.setCode(300); jsonReturn.setText("頭像上傳失敗,稍後再試"); } }else { jsonReturn.setCode(500); jsonReturn.setText("引數異常"); } }else { jsonReturn.setCode(500); jsonReturn.setText("引數異常"); } }else { jsonReturn.setCode(500); jsonReturn.setText("上傳的頭像為空"); } return gson.toJson(jsonReturn); }
6、效果圖:
效果二:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45