I am working on a web application, most of which has been covered by angular js. I'm stuck in one place. I used fabric.js to manipulate the images on the canvas, and this is the best way to do this. Everything works fine, but I canβt add the close button for the downloaded image, as shown in the image.

This angular image appears on the canvas tag. Fabric.js gives me the ability to rotate and add images, but how can I close this particular image. So far I have done with the code:
var canvas = window._canvas = new fabric.Canvas('c');
var imgElement = document.getElementById('my-image');
var imgInstance = new fabric.Image(imgElement);
canvas.add(imgInstance);
My canvas element:
<canvas height="282" width="181" id="c" class="lower-canvas"></canvas>
My uploaded image element.
<img style="display: none;" src="http://*******/angular.png" class="topimg canvas-img" id="my-image">
Below I get from fabric.js

: ? fabric.js? , , . . .