Ignoring <image> tag?
in
Programming Questions
•
10 months ago
Hello,
I'm trying to use an svg file. I've followed the examples provided. My code looks likeL
PShape play;
void setup() {
size(100, 100);
play = loadShape("playbutton.svg");
}
void draw() {
shape(play, 10, 10, 80, 80);
}
I am getting the following error messages:
Ignoring <#text> tag.
Ignoring <image> tag.
What should I do? I'm basically trying to use the svg file as a button on the screen.
1