{"id":18881062,"url":"https://github.com/tylertemp/jollaicon","last_synced_at":"2026-07-04T06:31:52.383Z","repository":{"id":86362591,"uuid":"47453111","full_name":"TylerTemp/jollaicon","owner":"TylerTemp","description":"convert your icon into Sailfish OS style","archived":false,"fork":false,"pushed_at":"2019-07-07T05:53:53.000Z","size":206,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-31T03:26:13.469Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TylerTemp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-12-05T11:21:30.000Z","updated_at":"2019-07-07T05:53:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"a691e3ab-c671-47ea-a973-1ad3e1501304","html_url":"https://github.com/TylerTemp/jollaicon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TylerTemp%2Fjollaicon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TylerTemp%2Fjollaicon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TylerTemp%2Fjollaicon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TylerTemp%2Fjollaicon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TylerTemp","download_url":"https://codeload.github.com/TylerTemp/jollaicon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239850445,"owners_count":19707348,"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","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":[],"created_at":"2024-11-08T06:47:12.667Z","updated_at":"2025-10-27T22:16:14.400Z","avatar_url":"https://github.com/TylerTemp.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"jollaicon\n=========\n\nSummary\n-------\n\n`jollaicon` can convert a png file into Sailfish OS style.\n\nHere is a Android icon set in Sailfish OS style already:\n[TylerTemp-DroidSailizedIcon](https://github.com/TylerTemp/DroidSailizedIcon).\nAlso [here](http://talk.maemo.org/showthread.php?t=92073) and\n[here](https://together.jolla.com/question/104668/custom-sailfish-os-style-icons-for-android-apps/)\n\nIt's a very little tool: it only change the shape of the icon.\nYou may still need to edit the file after converted.\n\nInstall\n-------\n\nIt requires [python](http://python.org/) and [python-pip](https://pip.pypa.io/en/stable/installing/)\n\nInstall by:\n\n```bash\npip install git+git://github.com/TylerTemp/jollaicon.git\n```\n\nor\n\n```bash\ngit clone https://github.com/TylerTemp/jollaicon.git\ncd jollaicon\npip install .\n```\n\nThen run as\n\n```bash\njollaicon --help\n```\n\nIf you're a python developer, you can use it as\n\n```python\nfrom jollaicon import icon\nhelp(icon)\n```\n\nNOTE: this lib depends on python's package `cairocffi`, which depends on system's CFFI package. If you hit any problem installing, plz check and follow [cairocffi official document](https://cairocffi.readthedocs.io/en/latest/overview.html#installing-cffi)\n\n\u003e   *   On Linux, install `python-dev` and `libffi-dev` from your system’s package manager.\n\u003e   *   On OS X, install `pkg-config` and `libffi`, for example with [Homebrew](http://brew.sh/). You may need to [set the PKG_CONFIG_PATH environment variable](http://cffi.readthedocs.org/#macos-x).\n\u003e   *   On Windows, consider using [Christoph Gohlke’s unofficial binary builds](http://www.lfd.uci.edu/~gohlke/pythonlibs/#cffi).\n\nUsage\n---------\n\n```\nUsage:\n    $ python jollaicon.py [options] \u003cinput\u003e \u003coutput\u003e\n\nOptions:\n    -1, --top-left        make top left rectangle instead of round\n    -2, --top-right       make top right rectangle instead of round\n    -3, --bottom-right    make bottom right rectangle instead of round\n    -4, --bottom-left     make bottom left rectangle instead of round\n    -h, --help            print this screen\n    -v, --version         print version of this script\n    -f, --fill[=\u003ccolor\u003e]  fill color for transparent part. No effect when your\n                          icon file is full-filled with color already. It\n                          should in ``(r, g, b)`` or ``(r, g, b, alpha)``\n                          number group. use white when this option appears but\n                          no color specified.\n\n    \u003cinput\u003e               path to your icon file (png format only)\n    \u003coutput\u003e              output file (png format)\n```\n\nThe corners of Sailfish icon are only round or rectangle.\nUse `-1`, `-2`, `-3`, `-4` to set which corner is round/rectangle\n\nExample\n-----------\n\n```\njollaicon -3 example_img/logo.png example_img/out.png\n```\n\nsource image:\n\n![](example_img/logo.png)\n\nresult image:\n\n![](example_img/out.png)\n\nLISENSE\n------------\n\n1.  anything under `example_img` folder: all rights reserved to [steam](https://store.steampowered.com/)\n2.  other file's license please read [LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftylertemp%2Fjollaicon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftylertemp%2Fjollaicon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftylertemp%2Fjollaicon/lists"}