A simple css sprite generator.
Project description
A simple css sprite generator.
Free software: BSD 2-Clause License
Installation
pip install css-sprite
You can also install the in-development version with:
pip install https://github.com/ionelmc/python-css-sprite/archive/main.zip
Usage
To generate a css sprite from images:
css-sprite [-h] [--grid GRID] --output OUTPUT [--mode MODE] [--vertical] [--background BACKGROUND] [--template TEMPLATE | --template-path TEMPLATE_PATH] [--verbose] [--version] image [image ...]
Output is mainly a new image but you can also generate the accompanying css.
- Positional arguments:
image Path to image to include in sprite.
- Options:
- -h, --help
show this help message and exit
- --grid GRID, -g GRID
Grid cell size to use. One of: auto, X:Y.
- --output OUTPUT, -o OUTPUT
Output file.
- --mode MODE, -m MODE
Force a certain image mode in the output, see: https://pillow.readthedocs.io/en/latest/handbook/concepts.html#modes.
- --vertical, -v
Stack the images vertically (they are stacked horizontally by default).
- --background BACKGROUND, -b BACKGROUND
Background color.
- --template TEMPLATE, -t TEMPLATE
Jinja template for CSS output on stdout.
- --template-path TEMPLATE_PATH, -p TEMPLATE_PATH
Jinja template path for CSS output on stdout.
- --verbose
Make output verbose.
- --version
show program’s version number and exit
Template variables:
images - list of dicts with fields:
index - counter starting from 1
index0 - counter starting from 0
filename - path to source image
offset - dict with fields: x and y (integers)
position - dict with fields: x and y (integers)
width - integer (same as cell.width for now)
height - integer (same as cell.height for now)
grid - dict with fields
width - integer
height - integer
vertical - bool (True if you have used --vertical)
cell - dict with fields:
count - number of input images
width - integer
height - integer
output - pathlib.Path of output file
Documentation
Development
To run all the tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows |
set PYTEST_ADDOPTS=--cov-append tox |
---|---|
Other |
PYTEST_ADDOPTS=--cov-append tox |
Changelog
0.2.0 (2022-05-06)
Allow images to overlap by using alpha composition. Useful when cell is smaller than images, and images are transparent.
Restructure template context. BACKWARDS INCOMPATIBLE
0.1.1 (2022-04-18)
Remove the universal flag (don’t produce py2.py3 wheels since py2 isn’t supported anyway).
0.1.0 (2022-04-18)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file css-sprite-0.2.0.tar.gz
.
File metadata
- Download URL: css-sprite-0.2.0.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b302899c232a28e322768a0f916cbaad4ddba8e7c89eb2cc279b0e55ad761ca5 |
|
MD5 | 03247981b2ae6c44b54e4d8d48f6650f |
|
BLAKE2b-256 | 39535301c6b251b257583d9d07eb2cb769520c32891c6503f8f7e973359c4b8c |
File details
Details for the file css_sprite-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: css_sprite-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7711899acd806dede0e18a64ce982f93577d1b719960759add102b1b0cb0260 |
|
MD5 | 6260168b639dba13a75ad76f61cb5cc5 |
|
BLAKE2b-256 | 34050038a7245fd2d1394f76cdd5782d2abee8129464b89be0a2162e2097c48e |