canvas.drawBitmap( bitmap, null, RectF, null ) not drawing

2k Views Asked by At

I'm trying to get a bitmap image to be drawn on my canvas in my android project. I've been at it for over two days now and just can't seem to figure it out. I attached the code where the function's being called.

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 );
}

The canvas.drawRect( RectF, Paint ) method draws the rectangle correctly, but the bitmap does not show up at all. Any insight would be greatly appreciated, thanks in advance.

EDIT: I added code from my getImageMap() method as requested. It basically just returns all the images in my assets/images/ folder as a Map, so I can easily pull any image I want from the folder.

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: I found my misstake, I updated it in the code. I just wanna thank those who gave me speedy feedback, I appreciate it.

1

There are 1 best solutions below

5
On

Try something simple:

canvas.drawBitmap(logoBitmap, logoSize.left, logoSize.top, null);

Regards.