我正在使用 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。因此,位图不适合矩形。
请告诉我如何缩放位图以完全适合矩形。
注意:我还需要捏缩放图像。
谢谢和问候亚米尼。