README
                                                      POSTER RENDERING 

                      The CentOS Artwork SIG <centos-devel@centos.org>
                                  https://projects.centos.org/artwork/

**********************************************************************

To render Anaconda's progress slides use the following command:

    ./render.sh version language filename

Where:

    version:    Is a character or number representing the CentOS
                version. This value is replace wherever the =VERSION=
                marker be inside svg templates. It is also used to
                organize rendered images inside img directory.

    language:   Represents the language you want to get images rendered
                for. It should match directories under:

                trunk/Translations/Promo/Poster/$LANGUAGE

                Note that here you can use a perl regular expression to
                match more than one value at a time.

                If omited images are rendered for all available
                languages.

    filename:   Represents the file you want to get images rendered
                for. It should match files under:

                trunk/Translations/Promo/Poster/$LANGUAGE/$FILE

                Note that here you can use a perl regular expression
                to match more than one value at a time.

                If omited images are rendered for all available files.

Examples:

    # Render all available posters in English language for CentOS-5.
    ./render.sh '5' 'en'

    # Render EL4People poster in English and Spanish only for
    # CentOS-5.
    ./render.sh '5' 'e(n|s)' 'EL4People'