8

我正在使用 Android 应用程序,我想生成和打印 PDF。但我遇到了一些麻烦。我需要生成PDF80mm 的width,并且height可能会有所不同。

我正在尝试这个:

public class PDFGenerator implements Runnable {
    private Context ctx;
    private View view;
    private Intent mShareIntent;
    private OutputStream os;

    public PDFGenerator(Context ctx, View view) {
        this.ctx = ctx;
        this.view = view;
        makeAndSharePDF();
    }

    public void makeAndSharePDF() {
        new Thread(this).start();
    }

    @TargetApi(Build.VERSION_CODES.KITKAT)
    public void run() {
        PrintAttributes printAttrs = new PrintAttributes.Builder().
                setColorMode(PrintAttributes.COLOR_MODE_MONOCHROME).
                setMediaSize(PrintAttributes.MediaSize.ISO_C7).
                setResolution(new PrintAttributes.Resolution("zooey", ctx.PRINT_SERVICE, 500, 500)).
                setMinMargins(PrintAttributes.Margins.NO_MARGINS).
                build();

        PdfDocument document = new PrintedPdfDocument(ctx, printAttrs);
        PdfDocument.PageInfo pageInfo = new  PdfDocument.PageInfo.Builder(view.getWidth(), view.getHeight(), 1).create();
        PdfDocument.Page page = document.startPage(pageInfo);
        view.draw(page.getCanvas());
        document.finishPage(page);

        try {
            File pdfDirPath = new File(ctx.getFilesDir(), "pdfs");
            pdfDirPath.mkdirs();
            File file = new File(pdfDirPath, "danfe.pdf");
            Uri contentUri = FileProvider.getUriForFile(ctx, "br.com.rdscodes.nfcelular", file);
            os = new FileOutputStream(file);
            document.writeTo(os);
            document.close();
            os.close();
            shareDocument(contentUri);
        } catch (IOException e) {
            throw new RuntimeException("Error generating file", e);
        }
    }

    private void shareDocument(Uri uri) {
        mShareIntent = new Intent();
        mShareIntent.setAction(Intent.ACTION_SEND);
        mShareIntent.setType("application/pdf");
        mShareIntent.putExtra(Intent.EXTRA_SUBJECT, "NFC-e");
        mShareIntent.putExtra(Intent.EXTRA_STREAM, uri);
        ctx.startActivity(mShareIntent);
    }
}

此代码生成PDF,但带有letter size

我在Android Developers 媒体大小文档中看到“ISO_C7”媒体大小是我几乎想要的大小,但我可以更改所有“printAttrs”并且 PDF 的最终结果没有任何变化。

有没有更好的方法来生成和打印 a PDFPDF我怎样才能用 80mm生成我的width

该应用程序的这一部分是由一位老员工制作的。

谢谢。

4

2 回答 2

2

只是为了让您不会像我一样对此感到头疼,请查看此错误报告: https ://code.google.com/p/android/issues/detail?id=180405

考虑到这个错误报告,我会说这是 android 打印界面的问题,你不能真正使用 PrintAttributes 设置任何默认值,至少在 android N 之前不能。

如果您找到/找到解决方法,请告诉我:)

于 2016-06-04T22:18:11.703 回答
1

我知道有点晚了。但是,我用这种方法制作了我的自定义尺寸:(widthMils:5800,heightMils:40000)。测量单位是:千分之一英寸。

private PrintAttributes getDefaultPrintAttrs() {
    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) return null;

    PrintAttributes.MediaSize customSize = new 
    PrintAttributes.MediaSize("COIL", "COIL", 5800,40000);
    customSize.asPortrait();

    return new PrintAttributes.Builder()
            .setMediaSize(customSize)
            .setResolution(new PrintAttributes.Resolution("RESOLUTION_ID", "RESOLUTION_ID", 600, 600))
            .setMinMargins(PrintAttributes.Margins.NO_MARGINS)
            .build();

}
于 2019-02-13T01:50:04.633 回答