Android Bitmap(点阵图像、绘制图像)

Bitmap 称为点阵图像或绘制图像,是由称作像素(图片元素)的单个点组成的,这些点通过不同的排列和染色以构成图样。

Bitmap 是 Android 系统中图像处理最重要的类之一,用它可以获取图像文件信息,对图像进行剪切、旋转、缩放等操作,并可以将图像保存成特定格式的文件。

Bitmap 位于 android.graphics 包中,不提供对外的构造方法,只能通过 BitmapFactory 类进行实例化。利用 BitmapFactory 的 decodeFile 方法可以从特定文件中获取 Bitmap 对象,也可以使用 decodeResource() 从特定的图片资源中获取 Bitmap 对象。

实例 BitmapDemo 从资源文件中创建 Bitmap 对象,并对其进行一些操作,运行效果如图 1 所示。
 

Android Bitmap(点阵图像、绘制图像)_第1张图片
图 1  Bitmap对象的效果


其对应布局文件 Main.xml 的内容如下:

 
  1. android:layout_width="fill_parent"
  2. android:layout_height="fill_parent"
  3. android:orientation="vertical">
  4.  
  5. android:id="@+id/seekBarId"
  6. android:layout_width="fill_parent"
  7. android:layout_height="wrap_content" />
  8.  
  9. android:id="@+id/imageview"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:src="@drawable/img1" />

BitmapActivity.Java 的代码如下:

 
  1. package introduction.android.bitmapdemo;
  2.  
  3. import android.annotation.SuppressLint;
  4. import android.app.Activity;
  5. import android.graphics.Bitmap;
  6. import android.graphics.BitmapFactory;
  7. import android.graphics.Matrix;
  8. import android.os.Bundle;
  9. import android.widget.ImageView;
  10. import android.widget.SeekBar;
  11.  
  12. public class BitmapActivity extends Activity {
  13.  
  14. ImageView myImageView;
  15. Bitmap myBmp, newBmp;
  16. int bmpWidth, bmpHeight;
  17. SeekBar seekbarRotate;
  18. float rotAngle;
  19.  
  20. @Override
  21. public void onCreate(Bundle savedInstanceState) {
  22. super.onCreate(savedInstanceState);
  23. setContentView(R.layout.activity_bitmap);
  24. myImageView = (ImageView) findViewById(R.id.imageview);
  25. //由Resource载入图片
  26. myBmp = BitmapFactory.decodeResource(getResources(), R.drawable.img1);
  27. bmpWidth = myBmp.getWidth();
  28. bmpHeight = myBmp.getHeight();
  29. //实例化matrix
  30. Matrix matrix = new Matrix();
  31. //设定Matrix属性 x、y缩放比例为1.5
  32. matrix.postScale(1.5F, 1.5F);
  33. //顺时针旋转45度
  34. matrix.postRotate(45.0F);
  35. newBmp = Bitmap.createBitmap(myBmp, 0, 0, bmpWidth, bmpHeight, matrix, true);
  36. seekbarRotate = (SeekBar) findViewById(R.id.seekBarId);
  37. seekbarRotate.setOnSeekBarChangeListener(onRotate);
  38. }
  39.  
  40. private SeekBar.OnSeekBarChangeListener onRotate = new SeekBar.OnSeekBarChangeListener() {
  41. public void onStopTrackingTouch(SeekBar seekBar) {
  42. // TODO Auto-generated method stub
  43. }
  44.  
  45. public void onStartTrackingTouch(SeekBar seekBar) {
  46. // TODO Auto-generated method stub
  47. }
  48.  
  49. public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
  50. // TODO Auto-generated method stub
  51. Matrix m = new Matrix();
  52. m.postRotate((float) progress * 3.6F);
  53. newBmp = Bitmap.createBitmap(myBmp, 0, 0, bmpWidth, bmpHeight, m, true);
  54. myImageView.setImageBitmap(newBmp);
  55. }
  56. };
  57. }

本实例实现了拖动进度条图片旋转的效果。

使用 BitmapFactory 从资源中载入图片,并获取图片的宽和高,之后使用 Matrix 类对图片进行缩放和旋转操作。

你可能感兴趣的:(android)