Printing Images

  • Thread starter Thread starter Ling Woo
  • Start date Start date
L

Ling Woo

Hello

My application needs to print images that are created within it.
The images are BitMaps and are placed in PictureBoxes.

1.) Can anyone tell me how to I can code so the images are sent to the local
printer.

2.) Is it possible to place more than one image on the same page?

Thank You
 
Ling Woo said:
My application needs to print images that are created within it.
The images are BitMaps and are placed in PictureBoxes.

1.) Can anyone tell me how to I can code so the images are sent to the
local printer.

2.) Is it possible to place more than one image on the same page?

This knowledge base article

http://support.microsoft.com/default.aspx?scid=kb;en-us;97193

points to a sample that discusses Device Independent Bitmaps (DIBs) and how
to do "things" with them - specifically printing. If your bitmaps are DIBs
and not DDBs (device dependent bitmaps) you should be able adapt the
techniques in described in the sample for your purpose.

If that doesn't help, you will probably want to post agin in the graphics
group

microsoft.public.win32.programmer.gdi

or refer to a good text.

Regards,
Will
 
Back
Top