How to Draw Alpha Transparency of an image in another color for Debug Purposes

Hi guys!
I want to do something unusual , at least for me,

Basically, i have this :

batchPlayer.setProjectionMatrix(camera.combined);
        batchPlayer.begin();
        worldUpdate.updateAndRenderArrows(batchPlayer);
        worldUpdate.updateAndRenderEnemies(batchPlayer);
        player.draw(batchPlayer);
        batchPlayer.end();

How should i make it in a way, so i can draw the transparency of the images in red for example? or pink?

is there any method in SpriteBatch?