Я пытаюсь сохранить изображение BMP в PDF:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
try {
scannedImageView.setImageBitmap(bitmap);
// open a new document
PrintedPdfDocument document = new PrintedPdfDocument(context, bitmap); // cannot resolve symbol context.
// start a page
PdfDocument.Page page = document.startPage(0);
// draw something on the page
View content = scannedImageView;
content.draw(page.getCanvas());
// finish the page
document.finishPage(page);
// add more pages
// write the document content
document.writeTo(getOutputStream()); // cannot resolve method getOutputStream()
//close the document
document.close();
}
Я прокомментировал ошибки в context
и getOutputStream()
. Есть идеи, как решить?