在Android

时间:2015-08-07 18:25:03

标签: android pdf android-print-framework

我在Android应用程序中工作,我想生成并打印PDF。但我遇到了一些麻烦。我需要生成PDF,其中width为80毫米,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 media size documentation中看到“ISO_C7”媒体大小是我几乎想要的大小,但我可以更改所有“printAttrs”,并且PDF的最终结果没有任何变化。

是否有更好的方法来生成和打印PDF?如何生成PDF 80毫米的width

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

感谢。

2 个答案:

答案 0 :(得分:1)

正如你所做的那样,你不要像我一样突破它,看看这个错误报告: https://code.google.com/p/android/issues/detail?id=180405

考虑到这个错误报告,我说这是Android打印界面的一个问题,你无法使用PrintAttributes设置任何默认值,至少在Android N之前没有。

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

答案 1 :(得分: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();

}