示例#1
0
        private static PdfPCell AddLogo(string Path, Phrase phrase, int align)
        {
            LOGOImageCell LOGO = new LOGOImageCell();
            PdfPCell      cell = new PdfPCell(phrase);

            cell = LOGO.ImageCell(Path, 30f, align, BaseColor.WHITE);
            return(cell);
        }