I really really want the code you used to generate the two images with the text “Problem Problem Problem” and “Better”
I want to see how you’re sizing the images.
Looking at what you sent, you’re trying to take a 76x76 image and scale it up to something quite large. In digital imagery, any time you size up an image it gets blurry. This is why we let you specify @2x and @4x images so you can provided resolution preferred images instead of trying to enlarge something beyond what it can do.
Looking at those images, it seems like you’re managing to get a resize done with a different resampling method. By default, Corona uses a method that works well for taking a large image and making it smaller, but going larger means the image becomes blurry. You can go in to Photoshop and do this yourself. Blow your 76x76 up to say 760x760 and see how blurry it gets. But you can play with the different resample methods and find something that’s better with enlargements, but it’s still not good, but for some pixel art it’s tolerable.
Corona lets you change the method. See: http://docs.coronalabs.com/api/library/display/setDefault.html#texture-keys and the magTextureFilter option and try setting it to Linear. If you do this, Corona will scale your images up using a method kinder to pixel art.
Rob