很早就有有看到有朋友在讨论QQ头像的裁剪上传是怎么实现的,吼吼,之前小马也没做过,好奇之下学习下,发现以前项目中有类型的功能,结合官方文档里面的解释,就更好玩了,急急忙忙写51里的,今天听变3主题曲,重新记录在WorePress里,记录编程的过程,希望能与更多的朋友交流学习,文章中的截图是动态的,我晕………….貌似WorePress不支持Gif还是怎么了,今天不动了,jekyll也不支持,啊啊啊啊……想看动态效果看下51:http://mzh3344258.blog.51cto.com/blog/1823534/808837  不看的跳过, 如果觉得有用,请记得分享出去,只求能让更多开发的朋友学习使用,小马先谢谢了,一样的,先看下效果图(效果图小马不解释了,直接流水写下去,小马是直接在模拟器里写的,能在真机上使用,因为很简单),再看代码是怎么实现的:

  一:主布局界面

Android应用开发教程之二十五:自定义图片剪辑头像设置

  二:点击控件触发事件后效果图

Android应用开发教程之二十五:自定义图片剪辑头像设置

  三:拍照完之后效果图

Android应用开发教程之二十五:自定义图片剪辑头像设置

  四:裁剪界面效果图

Android应用开发教程之二十五:自定义图片剪辑头像设置

  五:点击相册后返回的图片效果图

Android应用开发教程之二十五:自定义图片剪辑头像设置

  六:裁剪完从相册PICK的保存后的效果图

Android应用开发教程之二十五:自定义图片剪辑头像设置

  下面直接来看下主控制类代码,如下:

Java代码
  1. package com.xiaoma.piccut.demo;    
  2.    
  3. import java.io.File;  
  4. import android.app.Activity;  
  5. import android.app.AlertDialog;  
  6. import android.content.DialogInterface;  
  7. import android.content.Intent;  
  8. import android.graphics.Bitmap;  
  9. import android.graphics.drawable.BitmapDrawable;  
  10. import android.graphics.drawable.Drawable;  
  11. import android.net.Uri;  
  12. import android.os.Bundle;  
  13. import android.os.Environment;  
  14. import android.provider.MediaStore;  
  15. import android.view.View;  
  16. import android.view.View.OnClickListener;  
  17. import android.widget.Button;  
  18. import android.widget.ImageButton;  
  19. import android.widget.ImageView;  
  20. /** 
  21.  * @Title: PicCutDemoActivity.java 
  22.  * @Package com.xiaoma.piccut.demo 
  23.  * @Description: 图片裁剪功能测试 
  24.  * @author XiaoMa 
  25.  */  
  26. public class PicCutDemoActivity extends Activity implements OnClickListener {    
  27.    
  28.     private ImageButton ib = null;  
  29.     private ImageView iv = null;  
  30.     private Button btn = null;  
  31.     private String tp = null;    
  32.    
  33.     /** Called when the activity is first created. */  
  34.     @Override  
  35.     public void onCreate(Bundle savedInstanceState) {  
  36.         super.onCreate(savedInstanceState);  
  37.         setContentView(R.layout.main);  
  38.         //初始化  
  39.         init();  
  40.     }    
  41.    
  42.     /** 
  43.      * 初始化方法实现 
  44.      */  
  45.     private void init() {  
  46.         ib = (ImageButton) findViewById(R.id.imageButton1);  
  47.         iv = (ImageView) findViewById(R.id.imageView1);  
  48.         btn = (Button) findViewById(R.id.button1);  
  49.         ib.setOnClickListener(this);  
  50.         iv.setOnClickListener(this);  
  51.         btn.setOnClickListener(this);  
  52.     }    
  53.    
  54.     /** 
  55.      * 控件点击事件实现 
  56.      * 
  57.      * 因为有朋友问不同控件的背景图裁剪怎么实现, 
  58.      * 我就在这个地方用了三个控件,只为了自己记录学习 
  59.      * 大家觉得没用的可以跳过啦 
  60.      */  
  61.     @Override  
  62.     public void onClick(View v) {  
  63.         switch (v.getId()) {  
  64.         case R.id.imageButton1:  
  65.             ShowPickDialog();  
  66.             break;  
  67.         case R.id.imageView1:  
  68.             ShowPickDialog();  
  69.             break;  
  70.         case R.id.button1:  
  71.             ShowPickDialog();  
  72.             break;    
  73.    
  74.         default:  
  75.             break;  
  76.         }  
  77.     }    
  78.    
  79.     /** 
  80.      * 选择提示对话框 
  81.      */  
  82.     private void ShowPickDialog() {  
  83.         new AlertDialog.Builder(this)  
  84.                 .setTitle("设置头像...")  
  85.                 .setNegativeButton("相册"new DialogInterface.OnClickListener() {  
  86.                     public void onClick(DialogInterface dialog, int which) {  
  87.                         dialog.dismiss();  
  88.                         /** 
  89.                          * 刚开始,我自己也不知道ACTION_PICK是干嘛的,后来直接看Intent源码, 
  90.                          * 可以发现里面很多东西,Intent是个很强大的东西,大家一定仔细阅读下 
  91.                          */  
  92.                         Intent intent = new Intent(Intent.ACTION_PICK, null);    
  93.    
  94.                         /** 
  95.                          * 下面这句话,与其它方式写是一样的效果,如果: 
  96.                          * intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI); 
  97.                          * intent.setType(""image/*");设置数据类型 
  98.                          * 如果朋友们要限制上传到服务器的图片类型时可以直接写如:"image/jpeg 、 image/png等的类型" 
  99.                          * 这个地方小马有个疑问,希望高手解答下:就是这个数据URI与类型为什么要分两种形式来写呀?有什么区别? 
  100.                          */  
  101.                         intent.setDataAndType(  
  102.                                 MediaStore.Images.Media.EXTERNAL_CONTENT_URI,  
  103.                                 "image/*"); 
  104.                         startActivityForResult(intent, 1);   
  105.   
  106.                     } 
  107.                 }) 
  108.                 .setPositiveButton("拍照", new DialogInterface.OnClickListener() { 
  109.                     public void onClick(DialogInterface dialog, int whichButton) { 
  110.                         dialog.dismiss(); 
  111.                         /** 
  112.                          * 下面这句还是老样子,调用快速拍照功能,至于为什么叫快速拍照,大家可以参考如下官方 
  113.                          * 文档,you_sdk_path/docs/guide/topics/media/camera.html 
  114.                          * 我刚看的时候因为太长就认真看,其实是错的,这个里面有用的太多了,所以大家不要认为 
  115.                          * 官方文档太长了就不看了,其实是错的,这个地方小马也错了,必须改正 
  116.                          */  
  117.                         Intent intent = new Intent(  
  118.                                 MediaStore.ACTION_IMAGE_CAPTURE);  
  119.                         //下面这句指定调用相机拍照后的照片存储的路径  
  120.                         intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri  
  121.                                 .fromFile(new File(Environment  
  122.                                         .getExternalStorageDirectory(),  
  123.                                         "xiaoma.jpg"))); 
  124.                         startActivityForResult(intent, 2); 
  125.                     } 
  126.                 }).show(); 
  127.     }   
  128.   
  129.     @Override 
  130.     protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
  131.         switch (requestCode) { 
  132.         // 如果是直接从相册获取 
  133.         case 1: 
  134.             startPhotoZoom(data.getData()); 
  135.             break; 
  136.         // 如果是调用相机拍照时 
  137.         case 2: 
  138.             File temp = new File(Environment.getExternalStorageDirectory() 
  139.                     + "/xiaoma.jpg"); 
  140.             startPhotoZoom(Uri.fromFile(temp)); 
  141.             break; 
  142.         // 取得裁剪后的图片 
  143.         case 3: 
  144.             /** 
  145.              * 非空判断大家一定要验证,如果不验证的话, 
  146.              * 在剪裁之后如果发现不满意,要重新裁剪,丢弃 
  147.              * 当前功能时,会报NullException,小马只 
  148.              * 在这个地方加下,大家可以根据不同情况在合适的 
  149.              * 地方做判断处理类似情况 
  150.              * 
  151.              */ 
  152.             if(data != null){ 
  153.                 setPicToView(data); 
  154.             } 
  155.             break; 
  156.         default: 
  157.             break;   
  158.   
  159.         } 
  160.         super.onActivityResult(requestCode, resultCode, data); 
  161.     }   
  162.   
  163.     /** 
  164.      * 裁剪图片方法实现 
  165.      * @param uri 
  166.      */ 
  167.     public void startPhotoZoom(Uri uri) { 
  168.         /* 
  169.          * 至于下面这个Intent的ACTION是怎么知道的,大家可以看下自己路径下的如下网页 
  170.          * yourself_sdk_path/docs/reference/android/content/Intent.html 
  171.          * 直接在里面Ctrl+F搜:CROP ,之前小马没仔细看过,其实安卓系统早已经有自带图片裁剪功能, 
  172.          * 是直接调本地库的,小马不懂C C++  这个不做详细了解去了,有轮子就用轮子,不再研究轮子是怎么 
  173.          * 制做的了...吼吼 
  174.          */ 
  175.         Intent intent = new Intent("com.android.camera.action.CROP"); 
  176.         intent.setDataAndType(uri, "image/*"); 
  177.         //下面这个crop=true是设置在开启的Intent中设置显示的VIEW可裁剪 
  178.         intent.putExtra("crop", "true"); 
  179.         // aspectX aspectY 是宽高的比例 
  180.         intent.putExtra("aspectX", 1); 
  181.         intent.putExtra("aspectY", 1); 
  182.         // outputX outputY 是裁剪图片宽高 
  183.         intent.putExtra("outputX", 150); 
  184.         intent.putExtra("outputY", 150); 
  185.         intent.putExtra("return-data", true); 
  186.         startActivityForResult(intent, 3); 
  187.     }   
  188.   
  189.     /** 
  190.      * 保存裁剪之后的图片数据 
  191.      * @param picdata 
  192.      */  
  193.     private void setPicToView(Intent picdata) {  
  194.         Bundle extras = picdata.getExtras();  
  195.         if (extras != null) {  
  196.             Bitmap photo = extras.getParcelable("data");  
  197.             Drawable drawable = new BitmapDrawable(photo);    
  198.    
  199.             /** 
  200.              * 下面注释的方法是将裁剪之后的图片以Base64Coder的字符方式上 
  201.              * 传到服务器,QQ头像上传采用的方法跟这个类似 
  202.              */   
  203.    
  204.             /*ByteArrayOutputStream stream = new ByteArrayOutputStream(); 
  205.             photo.compress(Bitmap.CompressFormat.JPEG, 60, stream); 
  206.             byte[] b = stream.toByteArray(); 
  207.             // 将图片流以字符串形式存储下来   
  208.   
  209.             tp = new String(Base64Coder.encodeLines(b)); 
  210.             /**这个地方大家可以写下给服务器上传图片的实现,直接把tp直接上传就可以了, 
  211.             *服务器处理的方法是服务器那边的事了,吼吼   
  212.   
  213.             *如果下载到的服务器的数据还是以Base64Coder的形式的话,可以用以下方式转换 
  214.             *为我们可以用的图片类型就OK啦...吼吼  */  
  215.             Bitmap dBitmap = BitmapFactory.decodeFile(tp);  
  216.             Drawable drawable = new BitmapDrawable(dBitmap);  
  217.             */  
  218.             ib.setBackgroundDrawable(drawable);  
  219.             iv.setBackgroundDrawable(drawable);  
  220.         }  
  221.     }    
  222.    
  223. }  

       下面来看下裁剪中用到的类,大家详细看下头注释:

Java代码
  1. package com.xiaoma.piccut.demo;    
  2.    
  3. /** 
  4.  * 下面这些注释是下载这个类的时候本来就有的,本来要删除的,但看了下竟然是license,吼吼, 
  5.  * 好东西,留在注释里,以备不时之用,大家有需要加license的可以到下面的网址找哦 
  6.  */   
  7.    
  8. //EPL, Eclipse Public License, V1.0 or later, http://www.eclipse.org/legal  
  9. //LGPL, GNU Lesser General Public License, V2.1 or later, http://www.gnu.org/licenses/lgpl.html  
  10. //GPL, GNU General Public License, V2 or later, http://www.gnu.org/licenses/gpl.html  
  11. //AL, Apache License, V2.0 or later, http://www.apache.org/licenses  
  12. //BSD, BSD License, http://www.opensource.org/licenses/bsd-license.php  
  13. /** 
  14. * A Base64 encoder/decoder. 
  15. * 
  16. * <p> 
  17. * This class is used to encode and decode data in Base64 format as described in RFC 1521. 
  18. * 
  19. * <p> 
  20. * Project home page: <a href="http://www.source-code.biz/base64coder/java/">www.source-code.biz/base64coder/java</a><br> 
  21. * Author: Christian d'Heureuse, Inventec Informatik AG, Zurich, Switzerland<br> 
  22. * Multi-licensed: EPL / LGPL / GPL / AL / BSD. 
  23. */   
  24.    
  25. /** 
  26.  * 这个类在上面注释的网址中有,大家可以自行下载下,也可以直接用这个, 
  27.  * 公开的Base64Coder类(不用深究它是怎么实现的, 
  28.  * 还是那句话,有轮子直接用轮子),好用的要死人了... 
  29.  * 小马也很无耻的引用了这个网址下的东东,吼吼... 
  30. * @Title: Base64Coder.java 
  31. * @Package com.xiaoma.piccut.demo 
  32. * @Description: TODO 
  33. * @author XiaoMa 
  34.  */   
  35.    
  36. public class Base64Coder {    
  37.    
  38. //The line separator string of the operating system.  
  39. private static final String systemLineSeparator = System.getProperty("line.separator");    
  40.    
  41. //Mapping table from 6-bit nibbles to Base64 characters.  
  42. private static char[]    map1 = new char[64];  
  43. static {  
  44.    int i=0;  
  45.    for (char c='A'; c<='Z'; c++) map1[i++] = c; 
  46.    for (char c='a'; c<='z'; c++) map1[i++] = c; 
  47.    for (char c='0'; c<='9'; c++) map1[i++] = c; 
  48.    map1[i++] = '+'; map1[i++] = '/'; }   
  49.   
  50. //Mapping table from Base64 characters to 6-bit nibbles. 
  51. private static byte[]    map2 = new byte[128]; 
  52. static { 
  53.    for (int i=0; i<map2.length; i++) map2[i] = -1; 
  54.    for (int i=0; i<64; i++) map2[map1[i]] = (byte)i; }   
  55.   
  56. /** 
  57. * Encodes a string into Base64 format. 
  58. * No blanks or line breaks are inserted. 
  59. * @param s  A String to be encoded. 
  60. * @return   A String containing the Base64 encoded data. 
  61. */ 
  62. public static String encodeString (String s) { 
  63. return new String(encode(s.getBytes())); }   
  64.   
  65. /** 
  66. * Encodes a byte array into Base 64 format and breaks the output into lines of 76 characters. 
  67. * This method is compatible with <code>sun.misc.BASE64Encoder.encodeBuffer(byte[])</code>. 
  68. * @param in  An array containing the data bytes to be encoded. 
  69. * @return    A String containing the Base64 encoded data, broken into lines. 
  70. */ 
  71. public static String encodeLines (byte[] in) { 
  72. return encodeLines(in, 0, in.length, 76, systemLineSeparator); }   
  73.   
  74. /** 
  75. * Encodes a byte array into Base 64 format and breaks the output into lines. 
  76. * @param in            An array containing the data bytes to be encoded. 
  77. * @param iOff          Offset of the first byte in <code>in</code> to be processed. 
  78. * @param iLen          Number of bytes to be processed in <code>in</code>, starting at <code>iOff</code>. 
  79. * @param lineLen       Line length for the output data. Should be a multiple of 4. 
  80. * @param lineSeparator The line separator to be used to separate the output lines. 
  81. * @return              A String containing the Base64 encoded data, broken into lines. 
  82. */ 
  83. public static String encodeLines (byte[] in, int iOff, int iLen, int lineLen, String lineSeparator) { 
  84. int blockLen = (lineLen*3) / 4; 
  85. if (blockLen <= 0) throw new IllegalArgumentException(); 
  86. int lines = (iLen+blockLen-1) / blockLen; 
  87. int bufLen = ((iLen+2)/3)*4 + lines*lineSeparator.length(); 
  88. StringBuilder buf = new StringBuilder(bufLen); 
  89. int ip = 0; 
  90. while (ip < iLen) { 
  91.    int l = Math.min(iLen-ip, blockLen); 
  92.    buf.append (encode(in, iOff+ip, l)); 
  93.    buf.append (lineSeparator); 
  94.    ip += l; } 
  95. return buf.toString(); }   
  96.   
  97. /** 
  98. * Encodes a byte array into Base64 format. 
  99. * No blanks or line breaks are inserted in the output. 
  100. * @param in  An array containing the data bytes to be encoded. 
  101. * @return    A character array containing the Base64 encoded data. 
  102. */ 
  103. public static char[] encode (byte[] in) { 
  104. return encode(in, 0, in.length); }   
  105.   
  106. /** 
  107. * Encodes a byte array into Base64 format. 
  108. * No blanks or line breaks are inserted in the output. 
  109. * @param in    An array containing the data bytes to be encoded. 
  110. * @param iLen  Number of bytes to process in <code>in</code>. 
  111. * @return      A character array containing the Base64 encoded data. 
  112. */ 
  113. public static char[] encode (byte[] in, int iLen) { 
  114. return encode(in, 0, iLen); }   
  115.   
  116. /** 
  117. * Encodes a byte array into Base64 format. 
  118. * No blanks or line breaks are inserted in the output. 
  119. * @param in    An array containing the data bytes to be encoded. 
  120. * @param iOff  Offset of the first byte in <code>in</code> to be processed. 
  121. * @param iLen  Number of bytes to process in <code>in</code>, starting at <code>iOff</code>. 
  122. * @return      A character array containing the Base64 encoded data. 
  123. */ 
  124. public static char[] encode (byte[] in, int iOff, int iLen) { 
  125. int oDataLen = (iLen*4+2)/3;       // output length without padding 
  126. int oLen = ((iLen+2)/3)*4;         // output length including padding 
  127. char[] out = new char[oLen]; 
  128. int ip = iOff; 
  129. int iEnd = iOff + iLen; 
  130. int op = 0; 
  131. while (ip < iEnd) { 
  132.    int i0 = in[ip++] & 0xff; 
  133.    int i1 = ip < iEnd ? in[ip++] & 0xff : 0; 
  134.    int i2 = ip < iEnd ? in[ip++] & 0xff : 0; 
  135.    int o0 = i0 >>> 2; 
  136.    int o1 = ((i0 &   3) << 4) | (i1 >>> 4); 
  137.    int o2 = ((i1 & 0xf) << 2) | (i2 >>> 6); 
  138.    int o3 = i2 & 0x3F; 
  139.    out[op++] = map1[o0]; 
  140.    out[op++] = map1[o1]; 
  141.    out[op] = op < oDataLen ? map1[o2] : '='; op++; 
  142.    out[op] = op < oDataLen ? map1[o3] : '='; op++; } 
  143. return out; }   
  144.   
  145. /** 
  146. * Decodes a string from Base64 format. 
  147. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  148. * @param s  A Base64 String to be decoded. 
  149. * @return   A String containing the decoded data. 
  150. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  151. */ 
  152. public static String decodeString (String s) { 
  153. return new String(decode(s)); }   
  154.   
  155. /** 
  156. * Decodes a byte array from Base64 format and ignores line separators, tabs and blanks. 
  157. * CR, LF, Tab and Space characters are ignored in the input data. 
  158. * This method is compatible with <code>sun.misc.BASE64Decoder.decodeBuffer(String)</code>. 
  159. * @param s  A Base64 String to be decoded. 
  160. * @return   An array containing the decoded data bytes. 
  161. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  162. */ 
  163. public static byte[] decodeLines (String s) { 
  164. char[] buf = new char[s.length()+3]; 
  165. int p = 0; 
  166. for (int ip = 0; ip < s.length(); ip++) { 
  167.    char c = s.charAt(ip); 
  168.    if (c != ' ' && c != '\r' && c != '\n' && c != '\t') 
  169.       buf[p++] = c; } 
  170.    while ((p % 4) != 0) 
  171.        buf[p++] = '0';   
  172.   
  173. return decode(buf, 0, p); }   
  174.   
  175. /** 
  176. * Decodes a byte array from Base64 format. 
  177. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  178. * @param s  A Base64 String to be decoded. 
  179. * @return   An array containing the decoded data bytes. 
  180. * @throws   IllegalArgumentException If the input is not valid Base64 encoded data. 
  181. */ 
  182. public static byte[] decode (String s) { 
  183. return decode(s.toCharArray()); }   
  184.   
  185. /** 
  186. * Decodes a byte array from Base64 format. 
  187. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  188. * @param in  A character array containing the Base64 encoded data. 
  189. * @return    An array containing the decoded data bytes. 
  190. * @throws    IllegalArgumentException If the input is not valid Base64 encoded data. 
  191. */ 
  192. public static byte[] decode (char[] in) { 
  193. return decode(in, 0, in.length); }   
  194.   
  195. /** 
  196. * Decodes a byte array from Base64 format. 
  197. * No blanks or line breaks are allowed within the Base64 encoded input data. 
  198. * @param in    A character array containing the Base64 encoded data. 
  199. * @param iOff  Offset of the first character in <code>in</code> to be processed. 
  200. * @param iLen  Number of characters to process in <code>in</code>, starting at <code>iOff</code>. 
  201. * @return      An array containing the decoded data bytes. 
  202. * @throws      IllegalArgumentException If the input is not valid Base64 encoded data. 
  203. */ 
  204. public static byte[] decode (char[] in, int iOff, int iLen) { 
  205. if (iLen%4 != 0) throw new IllegalArgumentException ("Length of Base64 encoded input string is not a multiple of 4."); 
  206. while (iLen > 0 && in[iOff+iLen-1] == '=') iLen--; 
  207. int oLen = (iLen*3) / 4; 
  208. byte[] out = new byte[oLen]; 
  209. int ip = iOff; 
  210. int iEnd = iOff + iLen; 
  211. int op = 0; 
  212. while (ip < iEnd) { 
  213.    int i0 = in[ip++]; 
  214.    int i1 = in[ip++]; 
  215.    int i2 = ip < iEnd ? in[ip++] : 'A'; 
  216.    int i3 = ip < iEnd ? in[ip++] : 'A';  
  217.    if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127)  
  218.       throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");  
  219.    int b0 = map2[i0];  
  220.    int b1 = map2[i1];  
  221.    int b2 = map2[i2];  
  222.    int b3 = map2[i3];  
  223.    if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0)  
  224.       throw new IllegalArgumentException ("Illegal character in Base64 encoded data.");  
  225.    int o0 = ( b0       <<2) | (b1>>>4);  
  226.    int o1 = ((b1 & 0xf)<<4) | (b2>>>2);  
  227.    int o2 = ((b2 &   3)<<6) |  b3;  
  228.    out[op++] = (byte)o0;  
  229.    if (op<oLen) out[op++] = (byte)o1;  
  230.    if (op<oLen) out[op++] = (byte)o2; }  
  231. return out; }    
  232.    
  233. //Dummy constructor.  
  234. private Base64Coder() {}    
  235.    
  236. // end class Base64Coder  

       最后,小DEMO源码此下载:http://mzh3344258.blog.51cto.com/blog/1823534/808837 (页面最下方小Demo源码即是),有需要的朋友可以下载下来,共同交流学习。

本文发布:Android开发网
本文地址:http://www.jizhuomi.com/android/course/638.html
2016年12月28日
发布:鸡啄米 分类:Android开发教程 浏览: 评论:0