An API for square channel logos, different variations.
Includes channel name (lowercase) and logo filename
https://jaruba.github.io/channel-logos/logo_paths.json
Example of JSON entries:
{
"fuji tv":"/yS5UJjsSdZXML0YikWTYYHLPKhQ.png",
"abc":"/an88sKsFz0KX5CQngAM95WkncX4.png",
...
}
Currently supported logo variations (background HEX color, logo type: white / color):
transparent-colortransparent-whitefff-color05a9f4-color05a9f4-white212c39-white282c34-whitehttps://jaruba.github.io/channel-logos/export/transparent-color/tuomPhY2UtuPTqqFnKMVHvSb724.png
If you need a new background color + logo type variation, create a pull request for the web branch or an issue for it.
Building steps:
fetch the latest TV channel export from TMDB and save it to a ./logo_paths.json
download original TMDB channel logos locally (optional)
process all logos of the channels in the db export to make them square of a set size, with a set background color and logo color
git clone http://github.com/jaruba/channel-logos
cd channel-logos
npm install
Alternatively, if you want to download all current variations of the logos, you can use: npm install jaruba/channel-logos#web
This step is optional and requires a TMDB API key. If you do not pull the channel data export, then the last export that was committed to this repository will be used.
npm run pull tmdb-api-key
tmdb-api-key: required, your TMDB API KeyThis action will result in the ./logo_paths.json file being created from the newest DB export.
This step is optional, if you download the original channel logos locally, then it will process images much faster if you need to create many different variations of the logos.
npm run download-all
npm start logo-preference background-color box-size margin
logo-preference: optional, default is “color”, can be: “color”, “white”
background-color: optional, default is “transparent”, can be either “transparent” or a HEX color code (example: “000”, “fff”, “05a9f4”, etc.)
box-size: optional, default is “200”, the size of the result image (which is square) in pixels
margin: optional, default is “20”, the size of the padding for the logo in pixels
This action will create a new folder in ./export named based on the logo-preference and background-color choices with the processed images.