Android开发实现图片平移、缩放、倒影及旋转功能的方法

 更新时间:2017年10月16日 09:49:15   作者:CharlinGod  
这篇文章主要介绍了Android开发实现图片平移、缩放、倒影及旋转功能的方法,涉及Android针对图片的读取、写入、属性设置及矩阵运算等相关操作技巧,需要的朋友可以参考下

本文实例讲述了Android开发实现图片平移、缩放、倒影及旋转功能的方法。分享给大家供大家参考,具体如下:

解析:

1)根据原来的图片创建新的图片

Bitmap modBm = Bitmap.createBitmap(bm.getWidth()+20, bm.getHeight()+20, bm.getConfig());

2)设置到画布

Canvas canvas = new Canvas(modBm);

3)使用矩阵进行平移…

Matrix matrix = new Matrix();
matrix.setRotate(90, bm.getWidth()/2, bm.getHeight()/2);

4)把改变后图片设置到

canvas.drawBitmap(bm, matrix, paint);
imageView2.setImageBitmap(modBm);

示例代码:

1、平移:

public class TranslateImageActivity extends Activity {
  private ImageView imageView1;
  private ImageView imageView2;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_image_rotate);
    initViews();
  }
  private void initViews() {
    imageView1 = (ImageView) findViewById(R.id.imageView1);
    imageView2 = (ImageView) findViewById(R.id.imageView2);
    Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.mm0);
    imageView1.setImageBitmap(bm);
    Bitmap modBm = Bitmap.createBitmap(bm.getWidth()+20, bm.getHeight()+20, bm.getConfig());
    Canvas canvas = new Canvas(modBm);
    Paint paint = new Paint();
    paint.setColor(Color.BLACK);
    paint.setAntiAlias(true);
    Matrix matrix = new Matrix();
    //matrix.setRotate(90, bm.getWidth()/2, bm.getHeight()/2);
    matrix.setTranslate(20, 20);
    matrix.postTranslate(20, 20);
    canvas.drawBitmap(bm, matrix, paint);
    imageView2.setImageBitmap(modBm);
  }
}

2、缩放

public class ScaleImageActivity extends BaseActivity {
  private static final int DOUBLE = 2;
  private ImageView iv1, iv2;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_scale_iamge);
    iv1 = (ImageView) findViewById(R.id.imageView1);
    iv2 = (ImageView) findViewById(R.id.imageView2);
    Bitmap b1 = BitmapFactory.decodeResource(getResources(), R.drawable.p1);
    iv1.setImageBitmap(b1);
    Bitmap b2 = Bitmap.createBitmap(b1.getWidth()*DOUBLE, b1.getHeight(), Config.ARGB_8888);
    Canvas canvas = new Canvas(b2);
    Matrix matrix = new Matrix();
    matrix.setValues(new float[]{
        DOUBLE * 1.0f, 0,    0,//x
        0,       1.0f,  0,//y
        0,       0,    1.0f//z
    });
    canvas.drawBitmap(b1, matrix, new Paint());
    iv2.setImageBitmap(b2);
  }
}

3、倒影

public class ShadeImageActivity extends Activity {
  private ImageView imageView1;
  private ImageView imageView2;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_image_rotate);
    initViews();
  }
  private void initViews() {
    imageView1 = (ImageView) findViewById(R.id.imageView1);
    imageView2 = (ImageView) findViewById(R.id.imageView2);
    Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.mm3);
    imageView1.setImageBitmap(bm);
    Bitmap modBm = Bitmap.createBitmap(bm.getWidth(), bm.getHeight(), bm.getConfig());
    Canvas canvas = new Canvas(modBm);
    Paint paint = new Paint();
    paint.setColor(Color.BLACK);
    paint.setAntiAlias(true);
    Matrix matrix = new Matrix();
    //matrix.setRotate(90, bm.getWidth()/2, bm.getHeight()/2);
    //matrix.setTranslate(20, 20);
    //镜子效果
    matrix.setScale(1, -1);
    matrix.postTranslate(0, bm.getHeight());
    canvas.drawBitmap(bm, matrix, paint);
    imageView2.setImageBitmap(modBm);
  }
}

4、旋转

public class RotateImageActivity extends Activity {
  private ImageView imageView1;
  private ImageView imageView2;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_image_rotate);
    initViews();
  }
  private void initViews() {
    imageView1 = (ImageView) findViewById(R.id.imageView1);
    imageView2 = (ImageView) findViewById(R.id.imageView2);
    Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.mm0);
    imageView1.setImageBitmap(bm);
    Bitmap modBm = Bitmap.createBitmap(bm.getWidth(), bm.getHeight(), bm.getConfig());
    Canvas canvas = new Canvas(modBm);
    Paint paint = new Paint();
    paint.setColor(Color.BLACK);
    paint.setAntiAlias(true);
    Matrix matrix = new Matrix();
    matrix.setRotate(90, bm.getWidth()/2, bm.getHeight()/2);
    canvas.drawBitmap(bm, matrix, paint);
    imageView2.setImageBitmap(modBm);
  }
}

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Flutter中渐变色的使用案例分享

    Flutter中渐变色的使用案例分享

    在日常的开发中,UI为了让界面更加吸引人往往会在界面上用到大量的渐变色,本文将通过几个案例更好的去了解Flutter中渐变色的使用,需要的可以参考一下
    2023-06-06
  • Android入门之Gallery用法实例解析

    Android入门之Gallery用法实例解析

    这篇文章主要介绍了Android入门之Gallery用法,对Android初学者有一定的参考学习价值,需要的朋友可以参考下
    2014-08-08
  • android中暂停背景音乐

    android中暂停背景音乐

    本文给大家分享的是在Android中暂停背景音乐的方法的示例,以及度娘上其他网友的实现方法,感觉非常不错,这里全部推荐给大家,有需要的小伙伴可以参考下。
    2015-05-05
  • Android 实现代码混淆的实例

    Android 实现代码混淆的实例

    这篇文章主要介绍了Android 实现代码混淆的实例的相关资料,希望通过本文大家能够掌握Android代码混淆的实现方法,需要的朋友可以参考下
    2017-09-09
  • 详解Android中Notification的使用方法

    详解Android中Notification的使用方法

    这篇文章主要介绍了Android中Notification的使用方法,最典型的应用就是未看短信和未接来电的显示,还有QQ微信,想要深入了解Notification的朋友可以参考本文
    2015-12-12
  • 使用Android studio编写一个小的jni程序

    使用Android studio编写一个小的jni程序

    JNI是Java Native Interface的缩写,它提供了若干的API实现了Java和其他语言的通信(主要是C&C++)。这篇文章给大家介绍了基于Android studio写一个小的jni程序的方法,一起看看吧
    2018-03-03
  • Android批量插入数据到SQLite数据库的方法

    Android批量插入数据到SQLite数据库的方法

    这篇文章主要为大家详细介绍了Android批量插入数据到SQLite数据库的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android启动页用户相关政策弹框的实现代码

    Android启动页用户相关政策弹框的实现代码

    这篇文章主要介绍了Android启动页用户相关政策弹框的实现方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-05-05
  • Android动画之逐帧动画(Frame Animation)实例详解

    Android动画之逐帧动画(Frame Animation)实例详解

    这篇文章主要介绍了Android动画之逐帧动画(Frame Animation),结合实例形式较为详细的分析了逐帧动画的原理,注意事项与相关使用技巧,需要的朋友可以参考下
    2016-01-01
  • Android 中Fragment与Activity通讯的详解

    Android 中Fragment与Activity通讯的详解

    这篇文章主要介绍了Android 中Fragment与Activity通讯的详解的相关资料,希望通过本文能帮助到大家,让大家理解掌握如何通信的,需要的朋友可以参考下
    2017-10-10

最新评论