3

我正在使用 android-V11 开发 RDP 客户端应用程序。

服务器:屏幕分为 4 个部分,分别发送 byte[]、left、top、right、bottom、Screen resolution(width --> 1024/1280, height --? 768/ 1024) 值为每一帧的图像数据给客户。

客户端:我正在使用表面视图来显示从服务器接收的图像。我需要显示 4 帧(服务器的一个屏幕)以完全适合平板电脑屏幕。

示例代码:

 class mySurfaceView extends SurfaceView implements SurfaceHolder.Callback
    {



       class TutorialThread extends Thread 
       {
         @Override
         public void run() 
         {
           Canvas c = null;
          // Socket commnuication
           ......
         Bitmap bmp;
          while(true){
           c=null;
           //logic to get the details from server
          .....
         bmp = BitmapFactory.decodeByteArray(imageBytes, 0,imageBytes.length);

        //Logic to calculate the Top Left, right bottom corners to divide the tablet screen into   4parts for 4 frames receiving from server
          .....

    //Frame rectangle for each frame

        Rect rect = new Rect(newLeft, newTop,newWidth,newHeight);

    //display image

       try{

        c  = _surfaceHolder.lockCanvas(rect);

        if(c!=null){
            synchronized (_surfaceHolder) 
            {
                       c.drawBitmap(scaledBitmap, newLeft,newTop, paint);
                    }
              }
          }
          finally{
        if(c!=null){                                     _surfaceHolder.unlockCanvasAndPost(c);
               }
        }
        //End of while
    }
    //End of run()
    }
    //End Tutorial Thread
    }
    //End of surfaceView
    }

我们无法将位图完全适合矩形。框架显示在平板电脑中,它们之间有间隙。

调试代码后,似乎检索到的位图(bmp)宽度为 514,矩形(矩形)宽度为 640。因此,位图不适合矩形。

请告诉我如何缩放位图以完全适合矩形。

注意:我还需要捏缩放图像。

谢谢和问候亚米尼。

4

1 回答 1

2

首先获取位图的高和宽,

final int height= bitmap.getHeight() ;
final int width= bitmap.getWidth();
float h= (float) height;
float w= (float) width;

现在让你的矩形的位置是(newLeft,newTop) 和高度,宽度 分别是newHeightnewWidth

现在将位置和比例因子设置为矩阵对象

Matrix mat=new Matrix();
mat.setTranslate( newLeft, newTop );
mat.setScale(newWidth/w ,newHeight/h);

现在用矩阵绘制你的位图

canvas.drawBitmap(bitmap, mat, new paint());

现在您的位图将填充矩形..

试试看,万事如意!

于 2013-01-25T09:41:58.937 回答