iTextSharp.text.pdf.SpotColor.SpotColor C# (CSharp) Метод

SpotColor() публичный Метод

public SpotColor ( PdfSpotColor spot, float tint ) : System
spot PdfSpotColor
tint float
Результат System
        public SpotColor(PdfSpotColor spot, float tint)
            : base(TYPE_SEPARATION,
                ((float)spot.AlternativeCS.R / 255f - 1f) * tint + 1,
                ((float)spot.AlternativeCS.G / 255f - 1f) * tint + 1,
                ((float)spot.AlternativeCS.B / 255f - 1f) * tint + 1)
        {
            this.spot = spot;
            this.tint = tint;
        }