Hi, Is it possible to stretch a bitmap without using the StretchBlt function ?
Hi,
with GDI you can only stretch with StretchBlt. Why do you need another function? (DirectX BitBlt method does also stretching)
By the way - when I use stretch blits with scaling more than
about 1:32 enlarging, the StretchBlt fails. Is this a bug or
a feature of GDI (or my bug)?
beaster.
Hi I use this funtion to send snapshot of screen to my printer
invoke StretchBlt,lppd.hDC,0,0,dwWidth1,dwHeight1 ,hdc,0,0,dwWidth,
dwHeight,SRCCOPY
this works with my printer at home but not at work,the printer support StretchBlt but it don`t work, BitBlt works but I get a tiny picture ,my thoughts was to stretch before sending to printer with BitBlt
Problem solved. major mistake by me....