I am trying to create a circular image with specific height and width dimensions, but have not found a satisfactory solution. Currently, I can achieve this using a texture, however it is drawn multiple times in the same position.
const test = new Graphics()
test.lineStyle(0,0x000000);
const options = {
width: 25,
height: 25,
}
const baseTexture = new BaseTexture(url,options);
const texture = new Texture(baseTexture);
test.beginTextureFill({texture});
test.drawCircle(0, 0, 15);
test.endFill();