2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-16 17:19:03 +00:00
Go to file
2022-01-26 10:50:18 +02:00
json Update Codicons, Material Design Icons, Octicons 2022-01-26 09:24:25 +02:00
lib Rename project from SimpleSVG to Iconify 2018-10-21 14:20:25 +03:00
.gitignore Rename project from SimpleSVG to Iconify 2018-10-21 14:20:25 +03:00
collections.json Update Codicons, Material Design Icons, Octicons 2022-01-26 09:24:25 +02:00
collections.md Update Codicons, Material Design Icons, Octicons 2022-01-26 09:24:25 +02:00
composer.json Update Codicons, Material Design Icons, Octicons 2022-01-26 09:24:25 +02:00
package.json Update Codicons, Material Design Icons, Octicons 2022-01-26 09:24:25 +02:00
readme.md Update readme in version 1 for archive 2022-01-26 10:50:18 +02:00

Iconify icons collection in JSON format

This is collection of SVG icons created by various authors, released under various open source licenses. Some collections require attribution when used for commercial purposes. See collections.md for list of collections and their licenses.

All SVG icons have been cleaned up. Content has been optimized, colors for monotone icons have been replaced with currentColor, ready to be inserted in HTML. Tools used for creating this collection are available on Iconify GitHub repository, more specifically @iconify/tools. You can use it to create your own JSON packages from custom icon sets.

This library is intended to be used in packages that generate icons. See Iconify icon sets documentation.

Archive

This branch is archived version 1, which is no longer maintained.

See master branch for updated version.

Difference from updated version is:

  • In new version collections.json uses slightly different format, see IconifyInfo type documentation.
  • In new version Node.js functions are asynchronous.

How to get this repository

Instructions below are for Node.js and PHP projects.

Node.js

Run this command to add icons to your project:

npm install --save @iconify/json

Icons will be available in node_modules/@iconify/json

To resolve filename for any json file, use this:

const icons = require("@iconify/json");

// returns location of mdi.json
let fa = icons.locate("mdi");

PHP

Install and initialize Composer project. See documentation at https://getcomposer.org

Then open composer.json and add following code:

"require": {
    "php": ">=5.6",
    "iconify/json": "*"
}

then run:

composer install

Icons will be available in vendor/iconify/json/

If you don't use Composer, clone GitHub repository and add necessary autoload code.

To resolve filename for any json file, use this:

// returns location of fa.json
$fa = \Iconify\IconsJSON\Finder::locate('mdi');

Format

Icons used by Iconify are in directory json, in Iconify JSON format.

Why JSON instead of SVG? To load images in bulk.

If you need individual SVG images, you can generate them using Iconify JSON Tools. See instructions for PHP version or Node.js version.

Format of json file is very simple:

{
    "icons": {
        "icon-name": {
            "body": "svg body",
            "width": width,
            "height": height
        }
    },
    "aliases": {
        "icon-alias": {
            "parent": "icon-name"
        }
    },
    "width": default width,
    "height": default height
}

"icons" object contains list of all icons.

Each icon has following properties:

  • body - icon body
  • width - width in pixels
  • height - height in pixels
  • rotate - rotation. Default = 0. Values: 0 = 0deg, 1 = 90deg, 2 = 180deg, 3 = 270deg
  • hFlip - horizontal flip. Boolean value, default = false
  • vFlip - vertical flip. Boolean value, default = false
  • hidden - If set to true, icon is hidden. That means icon was removed from collection for some reason, but it is kept in JSON file to prevent applications that rely on old icon from breaking

Width or height might be missing. If icon does not have width or height, use default width or height from root object. rotate, hFlip and vFlip are all optional.

Optional "aliases" object contains list of aliases for icons. Format is similar to "icons" object, with additional property "parent" that points to parent icon. Any other properties overwrite properties of parent icon.

For more information see developer documentation on IconifyJSON documentation

Extracting individual SVG icons

See JSON tools readme for instructions for PHP or Node.js.

const fs = require("fs");
const { SVG, Collection } = require("@iconify/json-tools");

let collection = new Collection();
collection.loadIconifyCollection("mdi");
collection.listIcons(true).forEach((icon) => {
  let svg = new SVG(collection.getIconData(icon));
  fs.writeFileSync(
    "mdi-" + icon + ".svg",
    svg.getSVG({
      height: "auto",
    })
  );
});
use \Iconify\JSONTools\Collection;
use \Iconify\JSONTools\SVG;

$collection = new Collection();
$collection->loadIconifyCollection('mdi');
foreach ($collection->listIcons(true) as $icon) {
    $svg = new SVG($collection->getIconData($icon));
    file_put_contents('mdi-' . $icon . '.svg', $svg->getSVG([
        'height'    => 'auto'
    ]));
}

License

This is collection of works by various authors, not original collection.

See collections.md for list of collections and their licenses.