Scaling a bitmap correctly?

  • Thread starter Thread starter James Dean
  • Start date Start date
J

James Dean

I want to scale my bitmap. I use interpolation mode(Bicubic) and
scaletransform of the graphics class. Does this automatically ensure the
best quality when i scale my image. Do i need to do anything else?.
 
Hi James
I want to scale my bitmap. I use interpolation mode(Bicubic) and
scaletransform of the graphics class. Does this automatically ensure the
best quality when i scale my image. Do i need to do anything else?.

You can try:

graphics.CompositingQuality = CompositingQuality.HighQuality;
graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

Cheers!

Marcin
 
Back
Top