Add frames and titles to your Google Play screenshots. Inspired by fastlane frameit
- Python 2.7
- ImageMagick
- background: Background frame. More frames can be found on Facebook Design.
- font: Title font
- fontsize: Title font size
- resize: Resize ratio of the source image
- xposition: X position of source image to background image
- yposition: Y position of source image to background image
- data: Title keys ("1" for 1.png) Currently supports 1 or 2 lines
{
"background": "background.png",
"data": {
"1": [
"title1_1",
"title1_2"
],
"2": [
"title2_1"
]
},
"font": "font.ttf",
"fontsize":"108",
"xposition":156,
"yposition":780,
"resize":100
}For each language set strings for title keys specified in framer.json
{
"en-US": {
"title1_1": "Follow popular news",
"title1_2": "feeds",
"title2_1": "News summary"
},
"tr-TR": {
"title1_1": "Popüler haber sitelerini",
"title1_2": "takip edin",
"title2_1": "Haber özeti"
}
}.
+-- framer.json
+-- strings.json
+-- font.ttf
+-- images
| +-- en-US
| +-- 1.png
| +-- 2.png
| +-- tr-TR
| +-- 1.png
| +-- 2.png
python framer.py
