Disabling the image resizing anti-alias.

Greetings!

I am new here and already my eyes are wide open with excitement about this tool. I was wondering if it’s possible to disable the anti-aliasing that occurs when you resize an image (for style purposes), either in the app or tinkering around with the runtime library on the mac.

Thanks in advance for your help!

does noSmooth() help?

Wow it does! I thought that was for the other drawing instructions. Thank you~! :smiley:

Is there a way to tell if anti-aliasing is currently active? For example, suppose I have an object that wants to turn it off when it draws, but then reset it back to it’s previous state when it’s done drawing?

You should use pushStyle() for that:

pushStyle()

-- Change your styles
-- Draw

popStyle() -- Go back to previous style

Ok cool, thanks @Simeon