Hi. I have an 4000x3000 image. I want to scale down that image ( e.g to 0.25,0.25). But why text looks no anti aliased?? Aspect ratio is not maintained with 0.25 and 0.25 ?? Smooth is true.
Example code:
using namespace sf;
Texture texture;
texture.loadFromFile(image.png);
texture.setSmooth(true);
Sprite sprite(texture);
sprite.setScale(0.25,0.25);
sprite.setPosition(100,100);
window.clear();
window.draw(sprite);
window.display();