我必须使用Direct2D绘制很多形状。我使用工厂创建用于绘制的渲染目标。在这些形状之上,我需要添加其他形状而不更改先前的形状(徒手绘制),但是如果使用相同的渲染目标,则必须刷新整个 Canvas (即,重新绘制所有形状),这是不可行的,因为它太慢了。
我需要一种解决方案,使我可以绘制静态形状,而无需连续清除所有 Canvas 。我本来想通过使用相同的工厂来创建一个新的渲染目标,但是这种解决方案对我不起作用(即新的形状不会显示在屏幕上)。
是否有可以解决此问题的解决方案?例如在位图上绘制静态形状?
最佳答案
好的,这是。我现在没有安装MS VS,因此我在Delphi中编写了一个简单的示例。函数名称都一样,所以希望您能理解。
这是我使用的变量:
FFactory: ID2D1Factory; //ID2D1Factory* FFactory;
FHWNDRT: ID2D1HwndRenderTarget; //ID2D1HwndRenderTarget* FHWNDRT;
FBitmapRT: ID2D1BitmapRenderTarget; //Etc..
FBrush: ID2D1SolidColorBrush;
这是示例:
function TForm1.InitializeD2D: HRESULT;
var
TargetRect: TRect;
BrushProps: D2D1_BRUSH_PROPERTIES;
begin
{ Create factory }
Result := D2D1CreateFactory( D2D1_FACTORY_TYPE_SINGLE_THREADED, ID2D1Factory, nil, FFactory );
If Failed(Result) then Exit;
{ Get form's client rect }
Winapi.Windows.GetClientRect( Self.Handle, targetRect );
{ Create hwnd render target }
Result := FFactory.CreateHwndRenderTarget(
D2D1RenderTargetProperties( D2D1_RENDER_TARGET_TYPE_HARDWARE, D2D1PixelFormat( DXGI_FORMAT_R8G8B8A8_UNORM, D2D1_ALPHA_MODE_PREMULTIPLIED ), 96, 96, D2D1_RENDER_TARGET_USAGE_NONE, D2D1_FEATURE_LEVEL_10 ),
D2D1HwndRenderTargetProperties( Self.Handle, D2D1SizeU( TargetRect.Width, TargetRect.Height ) ),
FHWNDRT
);
If Failed(Result) then Exit;
{ Create bitmap render target }
Result := FHWNDRT.CreateCompatibleRenderTarget(
nil,
nil,
nil,
D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE,
FBitmapRT
);
If Failed(Result) then Exit;
With BrushProps do Begin
opacity := 1;
transform := D2D1_MATRIX_3X2_F.Identity;
End;
{ Create brush so we can draw }
Result := FBitmapRT.CreateSolidColorBrush( D2D1ColorF( 0, 0.25, 0.75, 1 ), @BrushProps, FBrush );
end;
function TForm1.UpdateStaticShapes: HRESULT;
begin
//Draw the static shapes on the offscreen bitmap
FBitmapRT.BeginDraw;
//Clear the offscreen bitmap
FBitmapRT.Clear( D2D1ColorF(0, 0, 0, 1) );
//Draw a line
FBrush.SetColor( D2D1ColorF( 1, 0, 0, 1 ) );
FBitmapRT.DrawLine( D2D1PointF( Random(10)+10, Random(10)+10 ), D2D1PointF( 50, 50 ), FBrush );
//Draw a filled rect
FBrush.SetColor( D2D1ColorF( 0, 0.25, 0.75, 1 ) );
FBitmapRT.FillRectangle( D2D1RectF( Random(50), Random(50), Random(250)+50, Random(300) + 50 ), FBrush );
//Etc.. (draw all your shapes)
Result := FBitmapRT.EndDraw();
end;
function TForm1.Render: HRESULT;
var
pBitmap: ID2D1Bitmap;
begin
FHWNDRT.BeginDraw;
FHWNDRT.Clear( D2D1ColorF( 0, 0, 0, 1 ) );
{ Draw the offscreen bitmap }
FBitmapRT.GetBitmap( pBitmap );
If pBitmap <> nil then Begin
FHWNDRT.DrawBitmap( pBitmap );
pBitmap := nil; //Equivalent to _Release()
End;
{ Draw the additional free hand drawing here }
FBrush.SetColor( D2D1ColorF( 1, 1, 1, 1 ) );
FHWNDRT.DrawRectangle( D2D1RectF( 100, 100, 200, 200 ), FBrush );
Result := FHWNDRT.EndDraw();
end;
屏幕外位图在UpdateStaticShapes()方法中重绘。最后一帧以Render()方法呈现。
编辑:
我尝试进行缩放并了解您的问题。我猜解决方案是每当您更改缩放因子时(以及每次调整窗口大小时)重新创建位图渲染目标。屏幕外位图的大小应为:
OffscreenBitmap.Width/Height = HwndRT.Width/Height * ScaleFactor;
绘制形状时,必须使用相对于屏幕外位图大小的坐标。例如:代替绘制线(50,50,100,100),您应该绘制它(50 * K,50 * K,100 * K,100 * K),其中 K = ScaleFactor ;
这是我创建位图RT的方法:
//In C++ this should look like:
//HRESULT TForm::CreateBitmapRT(float ScaleFactor) {}
function TForm1.CreateBitmapRT(ScaleFactor: Single): HRESULT;
var
DesiredSize: D2D1_POINT_2F;
begin
FBitmapRT := nil; //FBitmapRT->_Release(); FBitmapRT = NULL;
{ Decide offscreen bitmap's size }
DesiredSize := D2D1PointF( FWindowRect.Width * ScaleFactor, FWindowRect.Height * ScaleFactor );
{ Create bitmap render target }
Result := FHWNDRT.CreateCompatibleRenderTarget(
@DesiredSize,
nil,
nil,
D2D1_COMPATIBLE_RENDER_TARGET_OPTIONS_NONE,
FBitmapRT
);
end;
这是更新的Render()方法:
function TForm1.Render: HRESULT;
var
pBitmap: ID2D1Bitmap;
SrcRect, DestRect: D2D1_RECT_F;
begin
FHWNDRT.BeginDraw;
FHWNDRT.Clear( D2D1ColorF( 0, 0, 0, 1 ) );
If FBitmapRT <> nil then Begin
{ Draw the offscreen bitmap }
FBitmapRT.GetBitmap( pBitmap );
If pBitmap <> nil then Begin
SrcRect := D2D1RectF( FZoomOffset.x, FZoomOffset.y, FZoomOffset.x + FWindowRect.Width, FZoomOffset.y + FWindowRect.Height );
DestRect := D2D1RectF( 0, 0, FWindowRect.Width, FWindowRect.Height );
FHWNDRT.DrawBitmap( pBitmap, @DestRect, 1, D2D1_BITMAP_INTERPOLATION_MODE_LINEAR, @SrcRect );
pBitmap := nil; //pBitmap->_Release(); pBitmap = NULL;
End;
End;
{ Draw the additional free hand drawing here }
FBrush.SetColor( D2D1ColorF( 1, 1, 1, 1 ) );
FHWNDRT.DrawRectangle( D2D1RectF( 100, 100, 200, 200 ), FBrush );
Result := FHWNDRT.EndDraw();
end;
如果更改缩放系数(放大或缩小),会发生以下情况:
function TForm1.ApplyZoom(fScaleFactor: Single): HRESULT;
begin
If fScaleFactor = FZoomFactor then Exit(S_OK);
If fScaleFactor = 0 then fScaleFactor := 0.1;
{ Recreate the offscreen bitmap }
Result := CreateBitmapRT( fScaleFactor );
If Failed(Result) then Exit;
{ Here you have to redraw the shapes once again }
Result := UpdateStaticShapes;
If Failed(Result) then Exit;
{ I save the new Zoom Factor in a class field }
FZoomFactor := fScaleFactor;
end;