hey,
i have an array of 50 32x16 stdPictures and i want to save them in a 32x800 bitmap file so they are arranged in a column one above the other. How can i do this?
thanx
Printable View
hey,
i have an array of 50 32x16 stdPictures and i want to save them in a 32x800 bitmap file so they are arranged in a column one above the other. How can i do this?
thanx
Create a Device Context with the 32x800 size...
Use BltBit to blit each picture into its respective place in the new DC...
thanx...
how do i save an offscreen DC to a bmp file?
*bump*
What would be wrong with an offscreen picturebox which you can BitBlt to? Then you do
Set picBox.Picture = picBox.Image
SavePicture picBox.Picture, "blah.bmp"
ok, i created a load of offscreen DCs and used bitblt.. thanx