任何人都可以告诉我如何在android中使用iText API来转换已经在库中捕获的图像并将其保存为pdf文档。尽快提供帮助。主要目标是创建Android应用程序,从而能够从库中获取多个图像并将其保存为pdf格式。
答案 0 :(得分:1)
要从图库中获取图像,您必须启动startActivityForResult,在onActivityResult中,您可以将图像存储在pdf文件中: -
首先将画廊意图称为: -
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
然后在onActivityResult中获取位图并将其写入PDF
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch(requestCode){
case SELECT_PICTURE:
Uri selectedImageUri = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImageUri,filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
Bitmap bmp = BitmapFactory.decodeFile(picturePath);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
Document document = new Document();
File f=new File(Environment.getExternalStorageDirectory(), "SimpleImages.pdf");
PdfWriter.getInstance(document,new FileOutputStream(f));
document.open();
document.add(new Paragraph("Simple Image"));
Image image = Image.getInstance(stream.toByteArray());
document.add(image);
document.close();
break;
}
}
}
希望这会有所帮助..
答案 1 :(得分:0)
由于我无法对bakriOnFire的答案发表评论,我必须写一个答案。
谢谢你的解决方案。 bttw b.compress这行代码是什么(Bitmap.CompressFormat.PNG,100,stream);什么是b? - 柴5月8日和13日11:20
代码应该是:
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
使用PNG编码压缩Bitmap并将其写入ByteArrayOutputStream。 这是必需的,因为Image.getInstance()只能处理ByteArrays。