0

在我的应用程序中,我创建了一个 PDF 文件,并使用画布绘制文本和图像,我的问题是,我想在 PDF 页面的底部添加一个图像,所以我使用了这个代码;

 Drawable icon = ContextCompat.getDrawable(context,R.drawable.book);

        icon.setBounds(80, 60, 180, 200);
        icon.draw(canvas2);

使用此代码,我可以在画布上绘制我的应用程序图标,如何将其移动到我的 pdf 文档的底部,有什么方法吗?有人可以帮忙吗?

4

1 回答 1

1
int halfWidth = Width/2;
int halfHeight = Height/2
Rect dstRectForRender = new Rect( X - halfWidth, Y - halfHeight, X + halfWidth, Y + halfHeight );
canvas.drawBitmap ( someBitmap, null, dstRectForRender, null );
于 2015-09-09T08:40:44.500 回答