A sprite generator for html, as png and webp, providing associated .css file
Project description
Introduction
spriteforhtml is a python package aimed at building a sprite from small images. The sprite is created as a png and a webp image.
Typically, from single small images
and
and
and
and
,
spriteforhtml will create the following bigger image (the sprite), that contains all small image (in 2 versions: the png one, and the webp one):
as well as a .css file, that used by the html to display a small image from the sprite. Typically, it includes:
#english-id {
background-position: -0px -32px;
width: 32px;
height: 32px;
}
#english-id {
content: "";
display: inline-block;
vertical-align: middle;
background-image:url(sprite.png);
}
It is then rather easy to display the english flag in html, using for example:
<p>
<span id="english-id"> </span>
English flag, as a css id
</p>
For more information about sprites and their benefits, here is a link selection:
Usage
Installation
Run python -m pip install spriteforhtlm to install the python package.
Also, please install the optional binary optipng
(using apt-get, pacman, or directly from
sourceforge)
to further optimize the png version of the sprite.
Demo
Running python -m spriteforhtml runs a demo based on the file at https://github.com/pascal-brand38/py-spriteforhtml/tree/main/src/spriteforhtml/data:
-
sprite.json: describe the small images to use in the sprite, their position, and what the .css file will contain (css classes, pseudo,...). This json file is the default argument of
python -m spriteforhtml, but you will use your own json file. -
the small images, as png file
and it will result
-
sprite.png and sprite.webp, the resulting sprite images
-
sprite.css, the css to be used in your html file. As an example, page.html uses it.
In this demo, the outputs are created in the tmp rootdir (as specified in sprite.json). But a copy of them is in https://github.com/pascal-brand38/py-spriteforhtml/tree/main/src/spriteforhtml/data
Generating my sprite
Command and API
There are 2 ways to generate a sprite and css file:
- Using the command line:
python -m spriteforhtml <mysprite.json> - Using the API in your favorite python source, with the following:
from spriteforhtml.create import create_sprites
create_sprites('<mysprite.json>')
<mysprite.json>
This file is a json file format that includes all the information used to create the sprite: small images name, position in sprite, css class to generate, filenames of the resulting sprite, filename of the runsulting css file,...
Do not hesitate to check the one of the demo.
Note that in the following, when a path or a filename is considered, there are 2 different cases to take care:
- an absolute path
- a relative path: it is then relative to the
location of
<mysprite.json>
The properties of the json are:
"subimages"
A list of objects describing all the sub images to be used in the sprite. Each sub image is made of a json object containing the following properties:
"filename": the name of the subimage"posHor": its horizontal position in the sprite"posVer": its vertical position in the sprite"cssSelector": the css selector to use it in html. It can be a class (starting with a .), an id (starting with a #),..."cssPseudo": It is optional. If present, this is the pseudo-class added at the end of thecssSelector
"spriteFilename"
A string of the name of the resulting sprite, without the image extension.
2 versions is be created: a .png, and a .webp.
"cssCommon"
A list of
css rules "property: value;"
common to
all the designated selectors for the sprite.
Typically, we could have "display: inline-block;.
Here, this is important to add the background-image property, with the correct path of the sprite image. As an example, it could be
"background-image:url(sprite.png)"
cssFilename
This is an optional property. If present, a css file containing the selectors is created. This css file can then be used by your html.
If not present, the generated css content is displayed on the console.
Use the result
To basically use the generated files, you must add in the head section of the html a link to the created .css file, for example
<link href="sprite.css" rel="stylesheet" media="all">
and use the icons in the body. This usage depends on the way the selectors are defined in your sprite.json, but it can be typically
<span class="icon-facebook"> </span>
You may refer to the example page.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file spriteforhtml-1.0.0.tar.gz.
File metadata
- Download URL: spriteforhtml-1.0.0.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4178b8dc15f34bf859de7d11da65cb4e42cba7eb562612ffda44745fa6b37f46
|
|
| MD5 |
917ae6d4a1836f042d877100fa02bf7f
|
|
| BLAKE2b-256 |
bde70c0b050061b75269f13824e5b6bc05a0c919f6129ad4622d8d63f0d90956
|
File details
Details for the file spriteforhtml-1.0.0-py3-none-any.whl.
File metadata
- Download URL: spriteforhtml-1.0.0-py3-none-any.whl
- Upload date:
- Size: 17.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc7f3ea544c4c21acb8e40674abca82357b2973595b3f6a36d113453805f342c
|
|
| MD5 |
3f4cef93612381fabd7029030dfaadb5
|
|
| BLAKE2b-256 |
fda83f1587eed1273f16717a312109c4ed3010669bafe0c9b755987c4080f7c1
|