{"id":21997671,"url":"https://github.com/osfunapps/os_android_google_play_feature_graphic_maker-py","last_synced_at":"2026-05-10T16:15:10.446Z","repository":{"id":57449683,"uuid":"259228710","full_name":"osfunapps/os_android_google_play_feature_graphic_maker-py","owner":"osfunapps","description":"This script will create a simple feature graphic for you to use in the Google Play store","archived":false,"fork":false,"pushed_at":"2021-02-07T13:49:24.000Z","size":60,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-19T03:35:20.916Z","etag":null,"topics":["android","automation","feature-graphic","google-play","image","tools","utils"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/osfunapps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-27T06:44:24.000Z","updated_at":"2021-09-25T07:52:18.000Z","dependencies_parsed_at":"2022-09-26T17:31:07.635Z","dependency_job_id":null,"html_url":"https://github.com/osfunapps/os_android_google_play_feature_graphic_maker-py","commit_stats":null,"previous_names":["osfunapps/os_android_feature_graphic_maker-py"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/osfunapps/os_android_google_play_feature_graphic_maker-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osfunapps%2Fos_android_google_play_feature_graphic_maker-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osfunapps%2Fos_android_google_play_feature_graphic_maker-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osfunapps%2Fos_android_google_play_feature_graphic_maker-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osfunapps%2Fos_android_google_play_feature_graphic_maker-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/osfunapps","download_url":"https://codeload.github.com/osfunapps/os_android_google_play_feature_graphic_maker-py/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/osfunapps%2Fos_android_google_play_feature_graphic_maker-py/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270110300,"owners_count":24529036,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","automation","feature-graphic","google-play","image","tools","utils"],"created_at":"2024-11-29T22:17:37.606Z","updated_at":"2026-05-10T16:15:05.422Z","avatar_url":"https://github.com/osfunapps.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n------------\n\nThis script will create a simple feature graphic for you to use in the Google Play store.\n\n## Installation\nInstall via pip:\n\n    pip install os-android-feature-graphic-maker\n\n## Usage       \n```python\nimport os_android_feature_graphic_maker.feature_graphic_maker as fgm\n\nfgm.create_feature_graphic(logo_path='/Users/home/Desktop/icons/chubby_logo.png',\n                           output_path='/Users/home/Desktop/icons/feature_graphic.png',\n                           gradient_background_hex_color_start='#ed4264',\n                           gradient_background_hex_color_end='#ffedbc',\n                           app_name='Catch The Chubby Hedgehog!',\n                           app_name_custom_font_path='/Users/home/Library/Fonts/Consolas.ttf')\n```    \n\n## Output\n![output](/images/feature_graphic.png)\n\n## Function Signature\n```python\ndef create_feature_graphic(logo_path,\n                       output_path,\n                       fixed_background_hex_color=None,\n                       gradient_background_hex_color_start=None,\n                       gradient_background_hex_color_end=None,\n                       app_name=None,\n                       app_name_font_color_hex='#ffffff',\n                       app_name_custom_font_path=None,\n                       app_name_max_font_size=32,\n                       app_name_distance_from_top=390,\n                       logo_max_width_pixels=300,\n                       logo_distance_from_top=40)\n\"\"\"Will create the feature graphic.\n\nParameters:\n:param logo_path: the path to your logo file\n:param output_path: the path to which the feature graphic image will be saved\n:param fixed_background_hex_color: if you would like to use a fixed hex for the background, set it here\n:param gradient_background_hex_color_start: if you would like to use a dynamic background, set the start color here\n:param gradient_background_hex_color_end: if you would like to use a dynamic background, set the end color here\n:param app_name: the name of your app\n:param app_name_font_color_hex: the color of your app name\n:param app_name_custom_font_path: you can use a custom font for your app name. Just set it here\n:param app_name_max_font_size: if the size is too big/small for you, you can set here a new static size\n:param app_name_distance_from_top: set here the distance of the app name, from the image top\n:param logo_max_width_pixels: the maximum width of the image (the height will be scaled proportionally\n:param logo_distance_from_top: the distance of the logo from the top\n\"\"\"\n```    \n\n\n## Licence\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosfunapps%2Fos_android_google_play_feature_graphic_maker-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fosfunapps%2Fos_android_google_play_feature_graphic_maker-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fosfunapps%2Fos_android_google_play_feature_graphic_maker-py/lists"}