android – 如何通过画布DrawBitmap绘制位图的一部分

前端之家收集整理的这篇文章主要介绍了android – 如何通过画布DrawBitmap绘制位图的一部分前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个

> FrameLayout(标记为红色)
> Source ImageView(黑色)
> Object(imageview)与OnTouchListener(橙色)

Via Object with OnTouchListener,我想显示位图的一部分,它们填充在imageview(源imageview)上.

所以这不是一个问题,我这样做:
Bitmap bt = Bitmap.createBitmap(sourceBitmap,event.getX(),event.getY(),250,250);

哪里:

> SourceBitmap – 是添加到ImageView的图像
> event.getX()/ event.getY()是一个坐标,我开始绘制位图的一部分
> 250,250 – 其大小的部分位图(部分).

结果是:

所以问题出现了,当我的对象(用touchlistener)进入边界(我已经使这个橙色对象的可能性,与Object.width()/ 2)离开界限.

所以在这种情况下

我如何实现这个结果:

部分结果为:

>位图的一部分
>第二部分是framelayout背景的颜色.

我在当下时刻尝试过的

  1. public boolean onTouch(View view,MotionEvent event) {
  2.  
  3. switch (event.getAction()) {
  4. case MotionEvent.ACTION_MOVE:
  5.  
  6. //i want to draw bigger portion then corrds
  7. int CurrentX = (int)view.getX() - (view.getWidth());
  8. int CurrentY = (int)view.getY() - (view.getHeight());
  9.  
  10. //case,when object is going out of border
  11. if(CurrentX <= 0)
  12. {
  13. Paint paint = new Paint();
  14. paint.setStyle( Style.FILL );
  15. paint.setColor( Color.RED );
  16.  
  17. mBitmap = Bitmap.CreateBitmap(sourceBitmap,(int)view.getX() + Math.abs(CurrentX),(int)view.getY(),250);
  18. Canvas canvas = new Canvas(mBitmap);
  19. canvas.drawBitmap(mBitmap,new Rect((int)view.getX()+Math.abs(CurrentX),250-Math.abs(CurrentX),250),new RectF(Math.abs(CurrentX),paint);
  20. }
  21. break;
  22. }
  23.  
  24. return true;
  25. }
  26. }

有什么建议么?谢谢!

解决方法

自己解决
这很复杂,但结果相当不错.
开始了:
所以对于我的情况(当OnTouchListener的对象可以离开X和Y轴上的边框时),我已经做了Post Conditions(某种规定).

条件

Width = imageView的宽度,我想显示结果.
Height = imageView的高度,我想显示结果;

左边

> X_Coord< 0&& Y_Coord - 高度/ 2 < 0&& Y_Coord< Bitmap.Height
这是我们的顶级区域.
> X_Coord< 0&& Y_Coord - Height / 2> 0&& Y_Coord< Bitmap.Height
这是我们的中间区.
> X_Coord< 0&& Y_Coord - Height / 2> 0&& Y_Coord> Bitmap.Height
这是我们的底层.

右边

> X_Coord> Bitmap.Height&& Y_Coord – Height / 2> 0&& Y_Coord Bitmap.Height
这是我们的中间区.
> X_Coord> Bitmap.Height&& Y_Coord – 高度/ 2 < 0&& Y_Coord< Bitmap.Height
这是我们的顶级区域.
> X_Coord> Bitmap.Height&& Y_Coord – Height / 2> 0&& Y_Coord> Bitmap.Height
这是我们的底层.

Standart(中间区域,不会左侧或右侧)

> X_Coord – Width / 2> 0&& X_Coord< Bitmap.Width&& Y_Coord - 高度/ 2 < 0&& Y_Coord< Bitmap.Height
这是我们的顶级区域.
> X_Coord – Width / 2> 0&& X_Coord< Bitmap.Width&& Y_Coord - Height / 2> 0&& Y_Coord> Bitmap.Height
这是我们的底层.
> X_Coord – Width / 2> 0&& X_Coord< Bitmap.Width&& Y_Coord - Height / 2> 0&& Y_Coord< Bitmap.Height
这是我们的中间区.

所以通过这个“条件”,我在我的MotionEvent.ACTION_MOVE情况下绘制位图的一部分.
我们来看一些例子:

  1. public boolean onTouch(View view,MotionEvent event) {
  2.  
  3. switch (event.getAction()) {
  4. case MotionEvent.ACTION_MOVE:
  5.  
  6. int Width = ResultImgView.getWidth();
  7. int Height = ResultImgView.getHeight();
  8. //paint for our Red background
  9. Paint paint = new Paint();
  10. paint.setStyle( Style.FILL );
  11. paint.setColor( Color.RED );
  12. Bitmap mBitmap = null;
  13. Canvas canvas = null;
  14.  
  15. //Our Condition
  16. if(view.getX() - Width / 2 >= SourceBitmap.getWidth()
  17. && view.getY() - Height / 2 > 0 && view.getY() + Height / 2 < SourceBitmap.getHeight())
  18. {
  19. //Nice,we entered here. Seems that we're now located at RightSide at Middle position
  20. //So let's draw part of bitmap.
  21. //our margin for X coords
  22. int Difference = (int)((view.getX() - Width / 2 ) - SourceBitmap.getWidth();
  23. //dont forget to put margin
  24. //BTW we're now took portion of bitmap
  25. mBitmap = Bitmap.createBitmap(SourceBitmap,((int)view.getX() - Width / 2) - Difference,(int)view.getY() - Height / 2,Width,Height);
  26. canvas = new Canvas(mBitmap);
  27. //draw rect
  28. canvas.drawRect(0,mBitmap.getWidth(),mBitmap.getHeight(),paint);
  29. //draw portion of bitmap
  30. canvas.drawBitmap(mBitmap,new Rect(Difference,mBitmap.getHeight()),new Rect(0,mBitmap.getWidth() - Difference,null);
  31. //and that's all!
  32. }
  33.  
  34. //do the same for other condition....etc
  35. break;
  36. }
  37.  
  38.  
  39.  
  40. return true;
  41. }

请享用!

PS对不起我的eng

猜你在找的Android相关文章