You can create a shell that will contain an image and a label, for example here:
https://jsfiddle.net/9e7h2LLf/
.wrapper{
border-radius: 50%;
border: 2px solid red;
height: 100px;
width: 100px;
overflow: hidden;
position: absolute;
}
img {
height: 100px;
width: 100px;
}
.label {
background-color: red;
height: 30px;
line-height: 30px;
width: 100%;
position: absolute;
bottom: 0px;
color: white;
text-align: center;
}
<div class="wrapper">
<img src="https://image.freepik.com/free-vector/bathroom-mosaic-pattern_23-2147497370.jpg">
<span class="label">1</span>
</div>
, :
https://jsfiddle.net/3jmfcudo/
.wrapper{
border-radius: 50%;
border: 2px solid red;
height: 100px;
width: 100px;
overflow: hidden;
background-image: url("https://image.freepik.com/free-vector/bathroom-mosaic-pattern_23-2147497370.jpg");
background-size: contain;
position: absolute;
}
.label {
background-color: red;
height: 30px;
line-height: 30px;
width: 100%;
position: absolute;
bottom: 0px;
color: white;
text-align: center;
}
<div class="wrapper">
<span class="label">1</span>
</div>