API Gives Me A Fuzzy Image

I'm trying to add an image to my project and I want it to take up most of the phone's screen but my issue is the resolution is very low and the image is fuzzy, the image is originally small but I am wondering if there are any tricks you can do with swift to make the resolution better at larger sizes. I tried a rounded image but that did not help me.
Answered by Claude31 in 655536022
What is the image size in pixels ?
Look at the image in Finder and get its info.

Is it a jpg ?
Is it a png ? If so, what is its resolution ?

You will not be able to increase image resolution from original. So if you increase the size, image appears blurred.
You would then have find a better version of the image.

You may just check that the size in the UIImage is a multiple of the original, even if that makes it not cover entirely the screen. Set in IB the image content mode appropriately.
Accepted Answer
What is the image size in pixels ?
Look at the image in Finder and get its info.

Is it a jpg ?
Is it a png ? If so, what is its resolution ?

You will not be able to increase image resolution from original. So if you increase the size, image appears blurred.
You would then have find a better version of the image.

You may just check that the size in the UIImage is a multiple of the original, even if that makes it not cover entirely the screen. Set in IB the image content mode appropriately.
API Gives Me A Fuzzy Image
 
 
Q