No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PsdBlendMode.cs 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Photoshop PSD FileType Plugin for Paint.NET
  4. // http://psdplugin.codeplex.com/
  5. //
  6. // This software is provided under the MIT License:
  7. // Copyright (c) 2006-2007 Frank Blumenberg
  8. // Copyright (c) 2010-2012 Tao Yue
  9. //
  10. // See LICENSE.txt for complete licensing and attribution information.
  11. //
  12. /////////////////////////////////////////////////////////////////////////////////
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Linq;
  16. using System.Text;
  17. namespace PhotoshopFile
  18. {
  19. internal static class PsdBlendMode
  20. {
  21. public const string Normal = "norm";
  22. public const string Darken = "dark";
  23. public const string Lighten = "lite";
  24. public const string Hue = "hue ";
  25. public const string Saturation = "sat ";
  26. public const string Color = "colr";
  27. public const string Luminosity = "lum ";
  28. public const string Multiply = "mul ";
  29. public const string Screen = "scrn";
  30. public const string Dissolve = "diss";
  31. public const string Overlay = "over";
  32. public const string HardLight = "hLit";
  33. public const string SoftLight = "sLit";
  34. public const string Difference = "diff";
  35. public const string Exclusion = "smud";
  36. public const string ColorDodge = "div ";
  37. public const string ColorBurn = "idiv";
  38. public const string LinearBurn = "lbrn";
  39. public const string LinearDodge = "lddg";
  40. public const string VividLight = "vLit";
  41. public const string LinearLight = "lLit";
  42. public const string PinLight = "pLit";
  43. public const string HardMix = "hMix";
  44. public const string PassThrough = "pass";
  45. public const string DarkerColor = "dkCl";
  46. public const string LighterColor = "lgCl";
  47. public const string Subtract = "fsub";
  48. public const string Divide = "fdiv";
  49. }
  50. }