53 lines
1.9 KiB
C#
53 lines
1.9 KiB
C#
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Photoshop PSD FileType Plugin for Paint.NET
|
||
|
// http://psdplugin.codeplex.com/
|
||
|
//
|
||
|
// This software is provided under the MIT License:
|
||
|
// Copyright (c) 2006-2007 Frank Blumenberg
|
||
|
// Copyright (c) 2010-2012 Tao Yue
|
||
|
//
|
||
|
// See LICENSE.txt for complete licensing and attribution information.
|
||
|
//
|
||
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace PhotoshopFile
|
||
|
{
|
||
|
internal static class PsdBlendMode
|
||
|
{
|
||
|
public const string Normal = "norm";
|
||
|
public const string Darken = "dark";
|
||
|
public const string Lighten = "lite";
|
||
|
public const string Hue = "hue ";
|
||
|
public const string Saturation = "sat ";
|
||
|
public const string Color = "colr";
|
||
|
public const string Luminosity = "lum ";
|
||
|
public const string Multiply = "mul ";
|
||
|
public const string Screen = "scrn";
|
||
|
public const string Dissolve = "diss";
|
||
|
public const string Overlay = "over";
|
||
|
public const string HardLight = "hLit";
|
||
|
public const string SoftLight = "sLit";
|
||
|
public const string Difference = "diff";
|
||
|
public const string Exclusion = "smud";
|
||
|
public const string ColorDodge = "div ";
|
||
|
public const string ColorBurn = "idiv";
|
||
|
public const string LinearBurn = "lbrn";
|
||
|
public const string LinearDodge = "lddg";
|
||
|
public const string VividLight = "vLit";
|
||
|
public const string LinearLight = "lLit";
|
||
|
public const string PinLight = "pLit";
|
||
|
public const string HardMix = "hMix";
|
||
|
public const string PassThrough = "pass";
|
||
|
public const string DarkerColor = "dkCl";
|
||
|
public const string LighterColor = "lgCl";
|
||
|
public const string Subtract = "fsub";
|
||
|
public const string Divide = "fdiv";
|
||
|
}
|
||
|
}
|