我正在使用 Android 应用程序,我想生成和打印 PDF。但我遇到了一些麻烦。我需要生成PDF
80mm 的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 PDF
?PDF
我怎样才能用 80mm生成我的width
?
该应用程序的这一部分是由一位老员工制作的。
谢谢。