コード例 #1
0
ファイル: PDFAppend.cs プロジェクト: korkewriya/PDFAppend
        /*
         * public float Append(PdfContentByte pdfContentByte, PDFText pdfText)
         * {
         *  return Append(pdfContentByte, pdfText.Text, pdfText.X, pdfText.Y, pdfText.BoxWidth, pdfText.BoxHeight,
         *                pdfText.FontSize, pdfText.Font, pdfText.Alignment, pdfText.Cyan, pdfText.Magenta, pdfText.Yellow,
         *                pdfText.Black, pdfText.Rotation, pdfText.Scale, pdfText.Orientation);
         * }
         */

        // 複数行テキストの追加

        /*
         * public void AppendMultiLine(PdfContentByte pdfContentByte, PDFText pdfText, int lines = 1, float lastPadding = 0)
         * {
         *  AppendMultiLine(pdfContentByte, pdfText.Font, pdfText.FontSize, pdfText.Text, pdfText.X, pdfText.Y, pdfText.BoxWidth, pdfText.BoxHeight,
         *                  pdfText.Scale, pdfText.Cyan, pdfText.Magenta, pdfText.Yellow, pdfText.Black, pdfText.Leading, lines, lastPadding);
         * }
         */

        public void AppendMultiLine(PdfContentByte pdfContentByte, string font, float fontSize, string text, float x, float y,
                                    float boxWidth, float boxHeight, float scale = 100f, int cyan = 0, int magenta = 0, int yellow = 0, int black = 255,
                                    float leading = 0, int lines = 1, float lastPadding = 0)
        {
            HorizontalText.AppendMultiLine(pdfContentByte, font, fontSize, text, x, y, boxWidth, boxHeight, scale, cyan, magenta, yellow, black,
                                           leading, lines, lastPadding);
        }
コード例 #2
0
ファイル: PDFAppend.cs プロジェクト: korkewriya/PDFAppend
        // 合成フォント風テキストの追加

        /*
         * public void AppendCompositeFontText(PdfContentByte pdfContentByte, PDFText pdfText, string compositeText, float fontSize2, string font2)
         * {
         *  AppendCompositeFontText(pdfContentByte, pdfText.Text, compositeText, pdfText.X, pdfText.Y, pdfText.BoxWidth, pdfText.BoxHeight,
         *                          pdfText.FontSize, pdfText.Font, fontSize2, font2, pdfText.Alignment, pdfText.Cyan, pdfText.Magenta, pdfText.Yellow, pdfText.Black,
         *                          pdfText.Rotation, pdfText.Scale);
         * }
         */

        public void AppendCompositeFontText(PdfContentByte pdfContentByte, string text, string compositeText, float x, float y,
                                            float boxWidth, float boxHeight, float fontSize, string font, float fontSize2, string font2,
                                            int alignment = 0, int cyan = 0, int magenta = 0, int yellow = 0, int black = 255, float rotation = 0, float scale = 100f)
        {
            HorizontalText.AppendCompositeFontText(pdfContentByte, text, compositeText, x, y, boxWidth, boxHeight, fontSize, font, fontSize2, font2,
                                                   alignment, cyan, magenta, yellow, black, rotation, scale);
        }
コード例 #3
0
ファイル: PDFAppend.cs プロジェクト: korkewriya/PDFAppend
        // 複数行テキストの追加(改行で文字列分割)
        public void AppendMultiLineComment(PdfContentByte pdfContentByte, string font, float fontSize, string text, float x, float y, float boxWidth, float boxHeight,
                                           int lines, float leading, string orientation = HORIZONTAL, float scale = 100f,
                                           int cyan = 0, int magenta = 0, int yellow = 0, int black = 255, int alignment = Element.ALIGN_LEFT)
        {
            var bf = BaseFont.CreateFont(font, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);

            pdfContentByte.SetFontAndSize(bf, fontSize);
            pdfContentByte.SetHorizontalScaling(scale);

            pdfContentByte.SetCMYKColorFill(cyan, magenta, yellow, black);

            char[]   separator = new char[] { '\r', '\n' };
            string[] comments  = text.Split(separator, StringSplitOptions.RemoveEmptyEntries);

            // 横書きのパターン
            if (orientation == HORIZONTAL)
            {
                HorizontalText.SetMinScale(pdfContentByte, bf, comments, fontSize, boxWidth, scale);
                // y = y + boxHeight - leading;

                for (int i = 0; comments.Length > i; i++)
                {
                    if (i >= lines)
                    {
                        break;
                    }

                    string comment = comments[i];
                    HorizontalText.ShowTextH(pdfContentByte, x, y, comment, alignment, 0);
                    y -= leading;
                }
            }
            // 縦書きのパターン
            else
            {
                float vScale = VerticalText.GetMinVerticalScaling(comments, fontSize, boxHeight);
                x  = VerticalText.GetAlignedXV(x + boxWidth, fontSize) - leading;
                y -= fontSize * vScale;

                pdfContentByte.BeginText();
                for (int i = 0; comments.Length > i; i++)
                {
                    if (i >= lines)
                    {
                        break;
                    }

                    string comment = comments[i];
                    VerticalText.MakeVerticalLine(pdfContentByte, Kana.ToZenkaku(comment), x, y, fontSize, alignment, vScale, tatechuyoko: true, isShugo: true);
                    x -= leading;
                }
                pdfContentByte.EndText();
            }
        }
コード例 #4
0
ファイル: PDFAppend.cs プロジェクト: korkewriya/PDFAppend
 // 1行テキストの追加
 public float Append(PdfContentByte pdfContentByte, string text, float x, float y, float boxWidth, float boxHeight,
                     float fontSize, string font, int alignment = 0, int cyan = 0, int magenta = 0, int yellow = 0, int black = 255,
                     float rotation = 0, float scale = 100f, string orientation = HORIZONTAL)
 {
     if (orientation == HORIZONTAL)
     {
         float ScaledWidth = HorizontalText.SetFontH(pdfContentByte, font, fontSize, text, boxWidth, cyan, magenta, yellow, black, scale);
         HorizontalText.ShowTextH(pdfContentByte, x, y, text, alignment, rotation);
         return(ScaledWidth + x);
     }
     else
     {
         VerticalText.SetFontV(pdfContentByte, font, fontSize, text, cyan, magenta, yellow, black);
         pdfContentByte.SetHorizontalScaling(100f);
         float alignedY = VerticalText.ShowTextV(pdfContentByte, Kana.ToZenkaku(text), x, y, fontSize, boxHeight, alignment);
         return(alignedY);
     }
 }
コード例 #5
0
ファイル: PDFAppend.cs プロジェクト: korkewriya/PDFAppend
 // 1行テキストの変倍文字幅を返す
 public float GetScaledWidth(string text, float boxWidth, float boxHeight, float fontSize, string font, float scale = 100f)
 {
     return(HorizontalText.GetScaledWidth(text, boxWidth, boxHeight, fontSize, font, scale));
 }