Ejemplo n.º 1
0
def MakeTriad():
    """Make a black and white triple triangle. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfTriad,
                      name="triad",
                      size=256,
                      channels="L",
                      multisample=8)
Ejemplo n.º 2
0
def MakeFadedSpiral():
    """Make a grayscale spiral with added alpha fade. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfFadedSpiral,
                      name="faded_spiral",
                      size=256,
                      channels="LA")
Ejemplo n.º 3
0
def MakeTriangle():
    """Make a black and white triangle. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfTriangle, name="triangle", size=64, channels="L")
Ejemplo n.º 4
0
def MakeBullseye():
    """Make a black and white bullseye symbol. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfBullseye, name="bullseye", size=64, channels="L")
Ejemplo n.º 5
0
def MakeSpiral():
    """Make a grayscale spiral. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfSpiral, name="spiral", size=128, channels="L")
Ejemplo n.º 6
0
def MakeRussianFlag():
    """Make the Russian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfRussian, "ru")
Ejemplo n.º 7
0
def MakeGreekFlag():
    """Make the Greek flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfGreek, "gr")
Ejemplo n.º 8
0
def MakeFrenchFlag():
    """Make the French flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfFrench, "fr")
Ejemplo n.º 9
0
def MakeItalianFlag():
    """Make the Italian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfItalian, "it")
Ejemplo n.º 10
0
def MakeNorwegianFlag():
    """Make the Norwegian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfNorwegian, "no")
Ejemplo n.º 11
0
def MakeSwedishFlag():
    """Make the Swedish flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfSwedish, "se")
Ejemplo n.º 12
0
def MakeSpanishFlag():
    """Make the Spanish flag (without shield). Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfSpanish, "es")
Ejemplo n.º 13
0
def MakeCatalanFlag():
    """Make the Catalan flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfCatalan, "ca")
Ejemplo n.º 14
0
def MakeBritishFlag():
    """Make the Union Jack (simplified). Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfBritish, "en")