SmoothingModeGraphics.cs 604 B

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