Hey, guys. I need to merge two RenderTargetBitmaps of the same size into one. How would I do that?
thanks.
Wyh not create a third RenderTargetBitmap and render in this the both images you created with your RenderTargetBitmap_a and RenderTargetBitmap_b.
Something like:
... Image imgA = new Image(){Source=renderTargetBitmapA}; Image imgB = new Image(){Source=renderTargetBitmapB}; renderTargetBitmapDest.Render(imgA); renderTargetBitmapDest.Render(imgB); ...
Wyh not create a third RenderTargetBitmap and render in this the both images you created with your RenderTargetBitmap_a and RenderTargetBitmap_b.
Something like: