Hello,
I used this image because it was offset:
https://www.pngall.com/wp-content/uploads/6/Vector-Tribal-Arrow-PNG-Image-HD.png
Code to peruse:
push();
rotate(frameCount*TAU/360);
noFill();
translate(0, -25); // Estimated (visually) that it was about 1/4 of height
rect(0, 0, 200, 100); // To see image size
image(img, 0, 0);
pop();
:)