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;
        }