This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
dev:zsprites [2024/08/18 18:59] – created stub wylem | dev:zsprites [2024/09/18 07:25] (current) – [Overview] add notes about programs antidale | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Creating Zeromus Sprites ====== | ====== Creating Zeromus Sprites ====== | ||
- | (stub page with notes) | + | ===== Overview ===== |
+ | Z sprites have max(ish) dimensions of 140px high and 200px wide. You have about 100px of height before the bottom your image starts interacting with the background layer. Z sprites are limited to a palette of 15 colors, plus a transparency color; the sprite tool will use whatever color that is in the top right pixel of your image for that transparency color. Should your image bump right up against that top right corner, you'll want to adjust it by coloring that pixel to whatever you're using for a transparency color. | ||
- | Running | + | Pretty much any image editing program should work, like Photoshop, GIMP, or paint.net. Photograph oriented ones might not quite be the thing, but you definitely do not need a sprite-specific |
- | * Site will be available at http:// | + | ===== Picking an image ===== |
+ | Sprites from other 16-bit systems, or from 8-bit systems work pretty well as Z sprites. You might want to play with resizing the image a little, like increasing the size of NES sprites, but generally you don't have much need to tinker. | ||
- | Dimensions: Up to 140px high and 200(ish)px | + | Photographs are tricky, |
- | Colors: Will be quantized | + | |
- | Advise: Using an external image editor (Photoshop, etc.), resize first, then quantize | + | Sprites from more more modern games than the 16-bit era will have a sliding scale of difficulty. The closes they are in time or spirit |
- | * Dithering will give the illusion of having | + | |
- | ==== Resources ==== | + | ===== Resizing ===== |
+ | When you're working with an image that's too big, you'll decide on either cropping the image, resizing the image, or both. When resizing an image, pay attention resampling options your editor is giving you. I've found that `Nearest Neighbor` is a good first choice; it provides/ | ||
+ | |||
+ | ===== Quantization - Coloring within the lines ===== | ||
+ | For images that have too many colors, you'll want to use quantization to reduce the amount of colors in the image down to the restrictions that are imposed (15 colors, plus a transparency color). The tools site will automatically apply a quantization to the image, so this isn't a strictly necessary step; however, you can often generate better results than the default values the tools site will use, and if you do this step yourself, you'll have an opportunity to make some edits after you have a set palette to work with to help clean up/enhance the image. | ||
+ | |||
+ | Playing around with dithering values as you're quantizing the image can help either produce a smoother image, or going the other way, can produce an image with more apparent color, at the risk of it looking grainy or gritty. | ||
+ | |||
+ | If you need to both resize the image and quantize it, make sure to resize first. If you resize after quantizing it, you can get messy looking images, and you'll have more clean up work to do to make the final product look good. | ||
+ | |||
+ | ===== Importing and Testing ===== | ||
+ | You'll use the [[dev: | ||
+ | |||
+ | Sometimes I'll find that some part of the process has introduced some semi-transparent pixels, or has added some light pixels at the edge of the image, both of which tend to look not good. I've had success combining erasing some of those pixels with using the color closest to black in the image and either outlining or coloring over the light pixels on the image' | ||
+ | |||
+ | ===== Resources | ||
* Script source: '' | * Script source: '' | ||
* Will use median cut quantization with Floyd-Steinberg dithering | * Will use median cut quantization with Floyd-Steinberg dithering | ||
* [[https:// | * [[https:// |