Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Background image Steam game #811

Closed
tesivo opened this issue Nov 3, 2018 · 3 comments
Closed

Background image Steam game #811

tesivo opened this issue Nov 3, 2018 · 3 comments

Comments

@tesivo
Copy link
Contributor

tesivo commented Nov 3, 2018

I suggest in source/Plugins/SteamLibrary/SteamMetadataProvider.cs to modify the line 283 from
metadata.BackgroundImage = string.Format(@"https://steamcdn-a.akamaihd.net/steam/apps/{0}/page_bg_generated_v6b.jpg", appId);

image

to

metadata.BackgroundImage = string.Format(@"https://steamcdn-a.akamaihd.net/steam/apps/{0}/page_bg_generated.jpg", appId);

image

Exists also the following image:
image

Some games have instead this path:
metadata.BackgroundImage = string.Format(@"https://steamcdn-a.akamaihd.net/steam/apps/{0}/page.bg.jpg", appId);
image

P.S. I used The Elder Scrolls V: Skyrim and Payday 2 background images for the examples

EDIT1: It seems that the older games follow the path of Skyrim, while the more recent the other. Nevertheless it is not said and also sometimes the clean images are completely different images, see Velvet Assasin.

EDIT2: Some games like Ryse: Son of Rome and Dead Space has 3 different images:
page.bg.jpg
page_bg_generated.jpg
page_bg_generated_v6.jpg

@JosefNemec
Copy link
Owner

While clean images are generally lower resolution compared to the blue tinted ones (depends on the game according to my tests), it will probably look better in general.

Since not all games provide page.bg (which seems to be the best choice), we should use images based on this priority:

  • page.bg
  • page_bg_generated
  • page_bg_generated_v6 (blue one, that should be available for all games)

There's also currently option to use game screenshots from store page instead of background and we should still respect that. Maybe even add option to force use the blue backgrounds if somebody prefers those.

@tesivo
Copy link
Contributor Author

tesivo commented Nov 3, 2018

I agree with you. If the user can choose is always perfect

P.S. There is a small difference between
page_bg_generated_v6 and page_bg_generated_v6b

I prefer the last one(which is the one currently in use)

@JosefNemec
Copy link
Owner

Released in 4.59

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants