---
title: "【steam】记录一次Steam个人主页美化过程"
id: "1590"
type: "post"
slug: "%e3%80%90steam%e3%80%91%e8%ae%b0%e5%bd%95%e4%b8%80%e6%ac%a1steam%e4%b8%aa%e4%ba%ba%e4%b8%bb%e9%a1%b5%e7%be%8e%e5%8c%96%e8%bf%87%e7%a8%8b"
published_at: "2017-10-09T01:33:38+00:00"
modified_at: "2017-10-09T01:33:38+00:00"
url: "https://seq.ink/all/coding/1590.html"
markdown_url: "https://seq.ink/all/coding/1590.html.md"
excerpt: "嗯，如何把steam“艺术作品”上传大家都清楚不再多说，steam艺术作品上传页 选择你需要的背景 并且获取背景连接 至于构图剪裁这个网站可以帮助到你 神奇的传送门 biu~！ 在框里黏贴刚刚复制的背景网址，点击“change BG”预览 ..."
taxonomy_category:
  - "Coding代码堆"
  - "Share分享"
---

嗯，如何把steam“艺术作品”上传大家都清楚不再多说，[steam艺术作品上传页](https://steamcommunity.com/sharedfiles/edititem/767/3/)

选择你需要的背景 并且获取背景连接

至于构图剪裁这个网站可以帮助到你 [神奇的传送门 biu~！](https://steam.design/)
 在框里黏贴刚刚复制的背景网址，点击“change BG”预览效果，再点击“Download BG”即可下载已经裁好的三张图的压缩包。

PS嘛（我用的美图秀秀抠图然后合成背景额….）不多说啦。

---

谷歌浏览器，在网页上登录steam，并且上传目标文件。

打开Console输入以下JS命令

---

var num= document.getElementsByName(“image_width”)[0].value;

document.getElementsByName(“image_height”)[0].value = num-(num-1);

document.getElementsByName(“image_width”)[0].value= num*100;

如果你艺术展柜已经用掉了，想传到截图展柜，则输入下面这段代码。

document.getElementsByName(“file_type”)[0].value= 5;

var num= document.getElementsByName(“image_width”)[0].value;

document.getElementsByName(“image_height”)[0].value = num-(num-1);

document.getElementsByName(“image_width”)[0].value= num*100;

---

以上工作是突破Steam对于作品的上传分辨率限制。

然后会有一个非0的返回值，如果返回值为0。F5重新上传吧 = =！

同样副图也是上面的操作手法。

---

最后完成~
