I don't see such an API, so probably not... but I have overlooked stuff before!
Can I directly scale an image to, say, exactly 57x37 pixels? Instead of scaling by a proportion?
This indirect method seems to work, but I know internally it's using not-quite-integer pixel sizes. No biggie, but I'd do it more directly if I could.
w, h = originalImage:getSize()
resizedImage = originalImage:scaledImage(57 / w, 37 / h)