views:

242

answers:

3

What is the best way to send Direct3D output to a printer or a plotter?

A: 

I would just take a screenshot of the entire 3d scene, and then print it out.

Max
Thanks. I found a more detailed explanation here:http://www.mvps.org/directx/articles/tilerender/index.htm
Vulcan Eager
+3  A: 

I would do it by creating a BMP file from the front buffer and then printing that BMP:

http://www.mvps.org/directx/articles/screengrab.htm

Walt D
A: 

I would like to say that sending screenshot or image is only suitable for printers (raster graphic). If you want to draw on the plotter, you'll need use the special instruction for the particular model of plotter you intended to draw on. Plotters are restricted to draw only line art as oppose to raster graphics. Take a look at this wikipedia article

faulty