Reputation: 141
I am using request like this:
http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsLookup?country=ru&id=
It shows information about the app from the Apple App Store but I have some problems with icons.
If i'm getting property artworkUrl60 it is too small 60x60 image, but it is rounder. And with artworkUrl100 I'm geting 512x512 image that is too big, not rounded and looks ugly when I'm sizing it down to 100x100.
How can I can get nice looking rounded 100x100 image?
Upvotes: 14
Views: 6012
Reputation: 255
https://itunes.apple.com/lookup?id=1036264023
As per documentation in iTunes Search API : https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/
Upvotes: 4
Reputation: 351
You must get artworkUrl512
and then replace ".png" or ".jpg" with specific size ".100x100-75.png" or ".100x100-75.jpg"
See also list all available image formats (png / jpg):
Upvotes: 25
Reputation: 1
I use JQuery and add the ui-corner-all
class to images to make them have rounded corners. This works for any size image.
Upvotes: -1