我正在尝试在我的android项目中的画布上绘制一个位图图像。我现在已经待了两天多了,似乎无法弄明白。我将代码附加到函数的调用位置。
private void drawLogo(Canvas canvas)
{
Paint test = new Paint();
test.setColor(Color.RED);
test.setStrokeWidth(4);
test.setStyle(Style.FILL_AND_STROKE);
//Here was my problem
//Changed to --> new RectF(scale_x, scale_y, 5*scale_x, 5*scale_y) and works now
RectF logoSize = new RectF(scale_x, 5*scale_y, 5*scale_x, scale_y);
Bitmap logoBitmap = getImageMap().get("LOGO");
canvas.drawRect(logoSize, test);
canvas.drawBitmap( logoBitmap, null, logoSize, null );
}
canvas.drawRect(RectF,Paint)方法正确绘制矩形,但位图根本不显示。非常感谢任何见解,提前谢谢。
编辑: 我根据请求从我的getImageMap()方法添加了代码。它基本上只是将我的assets / images /文件夹中的所有图像作为Map返回,因此我可以轻松地从文件夹中提取我想要的任何图像。
private Map<String, Bitmap> getImageMap()
{
if (imageMap == null)
{
imageMap = new HashMap<String, Bitmap>();
try
{
String[] files = getContext().getAssets().list("images");
for (String imageName : files)
{
// Construct a BitMap from an asset
Bitmap bitmap = BitmapFactory.decodeStream(
getContext().getAssets().open("images/" + imageName));
imageMap.put(imageName.replaceFirst("\\..*", ""), bitmap);
}
}
catch (IOException e) {Log.e("assets/images/ is empty", "IOException", e);}
}
return imageMap;
}
EDIT2:我发现了我的错误,我在代码中更新了它。我只是想感谢那些给我快速反馈的人,我很感激。
答案 0 :(得分:0)
尝试简单的事情:
canvas.drawBitmap(logoBitmap, logoSize.left, logoSize.top, null);
问候。