gpt4 book ai didi

Android-ScrollView 到 Bitmap 转换中的问题

转载 作者:搜寻专家 更新时间:2023-11-01 08:45:07 32 4
gpt4 key购买 nike

我正在尝试将 ScrollView 转换为 Bitmap,但生成的图像仅包含部分内容。

这就是我将图像创建为 JPEG 的方式:

ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 10, stream);
byte[] img = stream.toByteArray();

我尝试通过以下方式创建 bitmap 对象:

尝试 1:

int totalWidth=((ScrollView)contentView).getChildAt(0).getWidth();
int totalHeight=((ScrollView)contentView).getChildAt(0).getHeight();
Bitmap bitmap = Bitmap.createBitmap(totalWidth, totalHeight, Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(bitmap);
contentView.layout(contentView.getLeft(), contentView.getTop(), contentView.getRight(), contentView.getBottom());
contentView.draw(c);

尝试 2:

Bitmap bitmap = Bitmap.createBitmap(contentView.getWidth(), contentView.getHeight(), Bitmap.Config.ARGB_8888);
contentView.layout(contentView.getLeft(), contentView.getTop(), contentView.getRight(), contentView.getBottom());
contentView.draw(c);

尝试 3:

Bitmap bitmap = Bitmap.createBitmap(contentView.getMeasuredWidth(), contentView.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
contentView.layout(contentView.getLeft(), contentView.getTop(), contentView.getRight(), contentView.getBottom());
contentView.draw(c);

最后,我像这样将图像添加到 PDF 中:

public boolean saveReportAsPdf(Bitmap bitmap) {
try {
Image image;
String path = Environment.getExternalStorageDirectory()
.getAbsolutePath() + "/Reports";

File dir = new File(path);
if (!dir.exists())
dir.mkdirs();

Log.d("PDFCreator", "PDF Path: " + path);

File file = new File(dir, "audit.pdf");

Document document = new Document();

PdfWriter.getInstance(document, new FileOutputStream(file));
document.open();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 10, stream);
byte[] imageimg = Image.getInstance(stream.toByteArray());
image.setAlignment(Image.MIDDLE);
document.add(image);
document.close();
} catch (Exception i1) {
i1.printStackTrace();
}
return true;
}

这会产生以下输出:

Part of the image shown inside a PDF

这只显示了第 7 行的图像。正如您在下面看到的,还有第 8 行到第 13 行。

enter image description here

第 8 到 13 行缺失。

最佳答案

问题不在于你的形象。根据您在聊天中提供的反馈,图像已完成。但是,您的图像大于 A4 页面,并且您使用 A4 大小的页面创建 PDF 文档。这意味着图像不适合页面。

您应该创建一个页面大小与图像相同的 PDF。这是这样做的:

ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 10, stream);
image = Image.getInstance(stream.toByteArray());
image.setAbsolutePosition(0, 0);
Document document = new Document(image);
PdfWriter.getInstance(document, new FileOutputStream(file));
document.open();
document.add(image);
document.close();

注意以下行:

Document document = new Document(image);

这会导致 PDF 文档的页面与图像具有相同的大小。当我们在 (0, 0) 位置添加图像时,它将完全适合页面。

附注:您使用的是 Java 的 iText 版本。如果您在 Android 上工作,则应该使用 Android 端口。 Android 端口称为 iTextG .

关于Android-ScrollView 到 Bitmap 转换中的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29203970/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com