File: tmxrasterizer.1.ronn

package info (click to toggle)
tiled-qt 1.2.1%2Bdfsg.1-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 31,084 kB
  • sloc: cpp: 85,970; java: 3,602; python: 1,469; xml: 1,251; sh: 56; makefile: 32; ruby: 15
file content (47 lines) | stat: -rw-r--r-- 1,360 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
tmxrasterizer(1) -- renders a tile map to an image
========================================

## SYNOPSIS

`tmxrasterizer` [<OPTIONS>] [INPUT FILE] [OUTPUT FILE]

## DESCRIPTION

This application can be used to render maps created by the Tiled Map Editor to
an image.
This is very helpful for creating small-scale previews, such as mini-maps.

## OPTIONS

  * `-h` `--help`:
    Displays the help
  * `-v` `--version`:
    Displays the version
  * `-s` `--scale` SIZE:
    The scale of the output image
  * `-t` `--tilesize` SIZE:
    The requested size in pixels at which a tile is rendered.
    Overrides the --scale option.
  * `--size` SIZE:
    The output image fits within a SIZE x SIZE square.
    Overrides the --scale and --tilesize options.
  * `-a` `--anti-aliasing`:
    Smooth the output image using anti-aliasing
  * `--ignore-visibility`:
    Ignore all layer visibility flags in the map file and render
    all layers in the output (default is to omit invisible layers).
  * `--hide-layer`:
    Specifies a layer to omit from the output image.
    Can be repeated to hide multiple layers.
    The layername is case insensitive.

    *Example*:

    `tmxrasterizer` --hide-layer collision --hide-layer otherlayer [...]

## AUTHOR
Vincent Petithory <<vincent.petithory@gmail.com>>

## SEE ALSO

tiled(1), tmxviewer(1), <http://www.mapeditor.org/>