<<上篇 | 首页 | 下篇>>

Android压缩图片到100K以下并保持不失真的高效方法 - feicien的博客 - eoe移动开发者社区

1.获取原始图片的长和宽

1
2
3
4
5
               BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(filePath, options);
                int height = options.outHeight;
            int width = options.outWidth; 

以上代码是对图片进行解码,inJustDecodeBounds设置为true,可以不把图片读到内存中,但依然可以计算出图片的大小,这正好可以满足我们第一步的需要。
2.计算压缩比例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
     int height = options.outHeight;
     int width = options.outWidth; 
     int inSampleSize = 1;
     int reqHeight=800;
     int reqWidth=480;
     if (height > reqHeight || width > reqWidth) {
    final int heightRatio = Math.round((float) height/ (float) reqHeight);
    final int widthRatio = Math.round((float) width / (float) reqWidth);            
    inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
     }

一般手机的分辨率为 480*800 ,所以我们压缩后图片期望的宽带定为480,高度设为800,这2个值只是期望的宽度与高度,实际上压缩后的实际宽度也高度会比期望的要大。如果图片的原始高度或者宽带大约我们期望的宽带和高度,我们需要计算出缩放比例的数值。否则就不缩放。heightRatio是图片原始高度与压缩后高度的倍数,widthRatio是图片原始宽度与压缩后宽度的倍数。inSampleSize为heightRatio与widthRatio中最小的那个,inSampleSize就是缩放值。 inSampleSize为1表示宽度和高度不缩放,为2表示压缩后的宽度与高度为原来的1/2
3.缩放并压缩图片

1
2
3
4
5
6
7
8
          //在内存中创建bitmap对象,这个对象按照缩放大小创建的
             options.inSampleSize = calculateInSampleSize(options, 480, 800);
        options.inJustDecodeBounds = false;
        Bitmap bitmap= BitmapFactory.decodeFile(filePath, options);

        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bm.compress(Bitmap.CompressFormat.JPEG, 60, baos);
        byte[] b = baos.toByteArray();

前3行的代码其实已经得到了一个缩放的bitmap对象,如果你在应用中显示图片,就可以使用这个bitmap对象了。由于考虑到网络流量的问题。我们好需要牺牲图片的质量来换取一部分空间,这里调用bm.compress()方法进行压缩,这个方法的第二个参数,如果是100,表示不压缩,我这里设置的是60,你也可以更加你的需要进行设置,在实验的过程中我设置为30,图片都不会失真。

阅读全文……

标签 : ,

Android 调用系统拍照 笔记 - 会说话的哑巴的个人页面 - 开源中国社区

用以上代码碰到的问题:

 

  1. 在MIUI下无法取到照片数据,跟踪发现data.getExtras()为空,之后使用BitmapFactory.decodeFile()方法解决;    
  2. 手机上测试没有保存图片,跟踪发现data为null,继续Google,找到以下代码

 

 

1 Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
2 Uri uri = Uri.fromFile(new File(imagePath));
3 intent.putExtra(MediaStore.EXTRA_OUTPUT,uri);
4 startActivityForResult(intent,RESULT_CAPTURE_IMAGE);

 

    将按钮onClick方法中采用以上代码,调用系统拍照并确定之后,无法返回程序Activity。继续Google,终于找到解决办法,代码如下(在 if(resultCode == RESULT_OK)里面)

 

 

01 Bitmap bitmap = null;
02 File file = new File(imagePath);
03 bitmap = BitmapFactory.decodeFile(file.getAbsolutePath());
04 if(bitmap == null) {
05      Toast.makeText(this,R.string.image_save_error,Toast.LENGTH_LONG).show();
06 }
07 try {
08     BufferOutputStream bos = new BufferOutputStream(new FileOutputStream(file));
09     bitmap.compress(Bitmap.CompressFormat.JPEG,80,bos);
10     bos.flush();
11     bos.close();
12 }catch(FileNotFoundException e) {
13     e.printStackTrace();
14 }catch(IOException e) {
15     e.printStackTrace();
16 }
17 super.onActivityResult(requestCode,resultCode,data);

 

  

阅读全文……

标签 : ,

Git 常用命令详解(二) - IT-Homer - 博客频道 - CSDN.NET

1) 远程仓库相关命令

检出仓库:        $ git clone git://github.com/jquery/jquery.git

查看远程仓库:$ git remote -v

添加远程仓库:$ git remote add [name] [url]

删除远程仓库:$ git remote rm [name]

修改远程仓库:$ git remote set-url --push [name] [newUrl]

拉取远程仓库:$ git pull [remoteName] [localBranchName]

推送远程仓库:$ git push [remoteName] [localBranchName]


*如果想把本地的某个分支test提交到远程仓库,并作为远程仓库的master分支,或者作为另外一个名叫test的分支,如下:

$git push origin test:master         // 提交本地test分支作为远程的master分支

$git push origin test:test              // 提交本地test分支作为远程的test分支

阅读全文……

标签 : ,