user3014065
user3014065

Reputation: 176

Scaling an image up in Corona SDK without it becoming fuzzy

I am working on a classic RPG that requires a pixelated style of graphics. I want to do this by making a small image and scaling it up. However, when I do this, it gets fuzzy. Is there any way to scale it while keeping a crisp edge for every pixel, or do I just need to make a bigger image?

Upvotes: 0

Views: 237

Answers (1)

Teddy Engel
Teddy Engel

Reputation: 1006

You cannot scale an image expecting it to keep a crisp aspect if it's not made in a big enough resolution in the first place. In your case you would have to make a bigger image and scale it down to make the small image. If you do not use the large image all the time however, you should consider having two versions of the same image (one small / one large) for optimization sake.

Upvotes: 1

Related Questions