Hi, I'm creating a video game using the canvas element and jQuery. Part of this requires drawing arched paths and circles. Unfortunately this creates subpixels and an antialiasing problem. No browser allows you to simply disable the antialiasing, so I've been thinking about using images that have circles within them. Another part of this is that the window for the game can change sizes depending on the browser window and will therefore change the size of images inside them.
A more thorough example of my question is: if I create an image at (e.g.) 80px and the game wants to scale it to 37px, can I have that as a prerender for objects inside my game? Additionally, if I do that, will the canvas render it with subpixels?
P.S. I'm not looking for any code samples, this is just a technical question that I can't seem to find any documentation on.