8

I don't want to use GDI+'s DrawImage because of speed issues. What other ways are there to draw an image resized with decent quality - at least linear or cubic interpolation?

jnm2
  • 7,960
  • 5
  • 61
  • 99

1 Answers1

7

You can use SetStretchBltMode with the HALFTONE setting, but you'll probably run into the same speed issues that you faced with GDI+ -- smoothing always comes at a cost.

casablanca
  • 69,683
  • 7
  • 133
  • 150