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

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

public AddImage ( Image image, float a, float b, float c, float d, float e, float f ) : void
image Image
a float
b float
c float
d float
e float
f float
Результат void
        public override void AddImage(Image image, float a, float b, float c, float d, float e, float f)
        {
            if (stencil && !image.IsMask())
                CheckNoColor();
            base.AddImage(image, a, b, c, d, e, f);
        }