如何在 android 中使用具有适当多行和多页的长字符串使用 PdfDocument 生成 Pdf?

How to generate a Pdf using PdfDocument from a long string with proper multiline and multipage in android?

我有一个很长的字符串,它可能在没有 space 的情况下是连续的,也可能是不连续的,它应该会在必要时自动生成带有多个页面的 pdf 文件,并在 PdfDocument 中包含适当的多行。

我首先尝试使用油漆,但只打印了一行文字溢出。使用 StaticLayout 解决了此问题,并获得了正确的多行,但现在文本从下方溢出。

我搜索了很多,但没有完全找到,我不想将 iText 用作开源项目。

我通过使用简单的 PdfDocument 和 StaticLayout 解决了这个问题,而不使用任何外部付费库。我在问题中分享的问题是在生成的 pdf 文件中保持文本的正确结构。

我使用了A4尺寸页面的长度和宽度,并将每页中的字符数固定为一个限制,之后当它遇到该行的末尾时它会自动创建下一页,也自动下一行由 StaticLayout 处理,没有看到文本溢出。

如果您觉得可以尝试对每个页面设置不同的字符限制,并根据需要尝试不同的大小。您也可以尝试 StaticLayout.Builder Android 版本 Q/29 及更高版本不低于它。

我给大家分享的代码示例,如果你使用的话,不管你的文本有多长,如果文本很长,它会自动处理多页并生成pdf,它还会维护段落等,你还可以根据您的需要自定义页面形状、字符数等。代码中的其他细节是 self-explanatory.

 String text = "Lorem ipsum...very long text";
 ArrayList<String> texts = new ArrayList<>();
    int tot_char_count = 0;
    //Counts total characters in the long text
    for (int i = 0; i < text.length(); i++) {
        tot_char_count++;
    }
    int per_page_words = 4900;
    int pages = tot_char_count / per_page_words;
    int remainder_pages_extra = tot_char_count % per_page_words;
    if (remainder_pages_extra > 0) {
        pages++;
    }
    int k = pages, count = 0;
    while (k != 0) {
        StringBuilder each_page_text = new StringBuilder();
        for (int y = 0; y < per_page_words; y++) {
            if (count < tot_char_count) {
                each_page_text.append(text.charAt(count));
                if (y == (per_page_words - 1) && text.charAt(count) != ' ') {
                    while (text.charAt(count) != '\n') {
                        count++;
                        each_page_text.append(text.charAt(count));
                    }
                } else {
                    count++;
                }
            }
        }
        texts.add(each_page_text.toString());
        k--;
    }

    PdfDocument pdfDocument = new PdfDocument();
    int pageNumber = 0;
    try {
        pageNumber++;
        for (String each_page_text : texts) {
            PdfDocument.PageInfo mypageInfo = new PdfDocument.PageInfo.Builder(595, 842, pageNumber).create();
            PdfDocument.Page myPage = pdfDocument.startPage(mypageInfo);
            Canvas canvas = myPage.getCanvas();
            TextPaint mTextPaint = new TextPaint();
            mTextPaint.setTextSize(11);
            mTextPaint.setTypeface(ResourcesCompat.getFont(context, R.font.roboto));               
            StaticLayout mTextLayout = new StaticLayout(each_page_text, mTextPaint, canvas.getWidth() - 60, Layout.Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false);               
            canvas.save();
            int textX = 30;
            int textY = 30;
            canvas.translate(textX, textY);
            mTextLayout.draw(canvas);
            canvas.restore();
            pdfDocument.finishPage(myPage);
        }            
        File file = new File(context.getFilesDir(), "GeneratedFile.pdf");
        FileOutputStream fOut = new FileOutputStream(file);
        pdfDocument.writeTo(fOut);
        //  Toast.makeText(context, "PDF file generated successfully.", Toast.LENGTH_SHORT).show();
    } catch (IOException e) {          
        e.printStackTrace();
    }
    pdfDocument.close();