Pixen icon

Scaling the canvas

Though it is rarely suitable for pixel art, Pixen does provide a sheet for scaling your canvas. If you'd rather merely pad it, resizing the canvas is what you need. The scaling sheet is accessible by Edit > Scale Canvas... We provide several algorithms for scaling, and it's important to choose the right one to get a good result.

To double the size of the canvas:

If you just wish to double the size of the canvas in each dimension, Scale2x will yield spectacular results without destroying your palette. Unfortunately, this algorithm cannot be used for any scaling factors that aren't powers of two (2x, 4x, 8x, 16x, etc)

To multiply the dimensions by integer scaling factors:

If you're multiplying the width and the height by integer scale factors (it doesn't have to be the same one), Nearest Neighbor will yield results that are the least lossy to your palette, which is desirable in most cases of pixel art.

For anything else:

For non-integer scaling factors or more "fuzzy" results, the bicubic algorithm will yield good results, but be warned: it will add many, many colors to your palette in its attempts to approximate the scale.

See also

Resizing the canvas
Manipulating the canvas