Skip to content

andrewschaaf/spriteutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Status

Not implemented yet:

  • sprite-html-viz
  • Django tags
  • Django example

Overview

Goal: provide useful spriting tools for

  • your build script
  • your web app's development mode

So far, this repo consists of four command-line tools:

  • sprite-images-from-css
  • sprite-create
  • sprite-html-viz
  • sprite-replace-css

and these language bindings:

  • Python: from spriteutils import spriteImagesFromCss, spriteCreate, ...

and these web framework helpers:

  • Django tags

Installing

  • Put this repo somewhere on your filesystem

  • Optional: add spriteutils/scripts to your PATH

  • Prereqs: Python Imaging Library, OptiPNG (optional), Python (2.6) or (2.5 with simplejson)

    • If you have trouble with PIL, consider doing your work on an Ubuntu VM, SSHFS-mounted via MacFusion (10.6.3 fix) or equivalent. It's awesome — in the long run, you'll avoid many compilation nightmares.

Future Work

  • Find or create a very smart layout engine. (The current one is a trivial stub. It just concatenates vertically)

sprite-images-from-css

cat input.json | sprite-images-from-css > output.json
// input.json
{
    "css": "...see sprite-replace-css...",
    "root": "~/.../myapp/images", // probably not in your public static folder
}
// output.json
{
    "sprite_images_map": {
        "initial": [
            "file:///.../signup.png",
            "file:///.../signup_hover.png",
            "file:///.../signup_active.png",
        ],
        "registration": [
            "http://.../register.gif",
        ],
    }
}

sprite-create

cat input.json | sprite-create > sprite.json
// input.json
{
    // Optional optipng level (0-7. 2 is optipng's default and 7 is "very slow").
    // If omitted, optipng will not be used.
    "optipng": 2,
    
    "background": "#......" or [r, g, b, alpha] // 0-255
    "images": [
        "file:///.../landing/signup.png",
        "file:///.../landing/signup_hover.png",
        "file:///.../landing/signup_active.png",
        "http://.../register.gif",
    ],
}
// sprite.json
{
    "png_64": "...",
    "layout": {
        "file:///...signup.png": [0, 0, 120, 36],
        "file:///...signup_hover.png": [0, 36, 120, 36],
        "file:///...signup_active.png": [0, 72, 120, 36],
        "http://...register.gif": [0, 108, 130, 36],
    }
}

sprite-html-viz

cat sprite.json | sprite-html-viz > output.json
// sprite.json
{
    ...see sprite-create...
}
// output.json
{
    /*
        A table of the sprite's images, with each row containing:
            the image (via a base64 data URI)
            the path from the original CSS
                as a "file://..." link to the image
    */
    "html": "..."
}

sprite-replace-css

Note that if your app serves /images/... when in development mode, your CSS will work before or after compilation.

// input.json
{
    "root": "~/.../myapp/images",
    "sprite_urls": {
        "initial": ".../c1a2245b6b39.png",
        "registration": ".../ea274ffd321f.png",
    },
    "layout": {...see sprite-create...},
    "css": "...
            .signup {
                /* SPRITE initial */
                background: url("/images/landing/signup.png");
                width: 120px;
                height: 36px;
            }
            .signup:hover {
                /* SPRITE initial */
                background: url("/images/landing/signup_hover.png");
            }
            .signup:active {
                /* SPRITE initial */
                background: url("/images/landing/signup_active.png");
            }
            .register {
                /* SPRITE registration */
                background: url("http://artserver:9001/register.gif");
                width: 130px;
                height: 36px;
            }
            ..."
}
// output.json
{
    "css": "...
            .signup {
                background: url(".../c1a2245b6b39.png") 0 0;
                width: 120px;
                height: 36px;
            }
            .signup:hover {
                background-position: 0 -36px;
            }
            .signup:active {
                background-position: 0 -72px;
            }
            .register {
                background: url(".../ea274ffd321f.png") 0 -108px;
                width: 130px;
                height: 36px;
            }
            ..."
}

Django tags

// CSS (before)
    
    {% spriteRoot "~/.../images" %}
    
    .signup {
        {% sprite "initial" "/images/landing/signup.png" %}
    }
    .signup:hover {
        {% spritePos "initial" "/images/landing/signup_hover.png" %}
    }
    .signup:active {
        {% spritePos "initial" "/images/landing/signup_active.png" %}
    }
    .register {
        /* SPRITE registration */
        background: url("http://artserver:9001/register.gif");
        width: 130px;
        height: 36px;
    }
    
    {% endspriteRoot %}

// CSS (after)
...see example input for sprite-replace-css...

Notes:

  • It reads (width, height) from the image file (unless cached)
  • from django.core.cache import cache can be used, the spriteutils caches the value {"w":...,"h":...,} with key 'spriteutils:url_utf8_64:mtime'
  • It doesn't support non-local remote files (like register.gif), so you have to write that CSS manually

About

Command-line spriting tools for your build script

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages