InterpolationModeGraphics.cs 649 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Drawing2D;
  4. namespace LYFZ.OtherExpansion.SkinClass
  5. {
  6. public class InterpolationModeGraphics : IDisposable
  7. {
  8. private InterpolationMode _oldMode;
  9. private Graphics _graphics;
  10. public InterpolationModeGraphics(Graphics graphics) : this(graphics, InterpolationMode.HighQualityBicubic)
  11. {
  12. }
  13. public InterpolationModeGraphics(Graphics graphics, InterpolationMode newMode)
  14. {
  15. this._graphics = graphics;
  16. this._oldMode = graphics.InterpolationMode;
  17. graphics.InterpolationMode = newMode;
  18. }
  19. public void Dispose()
  20. {
  21. this._graphics.InterpolationMode = this._oldMode;
  22. }
  23. }
  24. }