Exemple #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)
Exemple #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")
Exemple #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")
Exemple #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")
Exemple #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")
Exemple #6
0
def MakeRussianFlag():
    """Make the Russian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfRussian, "ru")
Exemple #7
0
def MakeGreekFlag():
    """Make the Greek flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfGreek, "gr")
Exemple #8
0
def MakeFrenchFlag():
    """Make the French flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfFrench, "fr")
Exemple #9
0
def MakeItalianFlag():
    """Make the Italian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfItalian, "it")
Exemple #10
0
def MakeNorwegianFlag():
    """Make the Norwegian flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfNorwegian, "no")
Exemple #11
0
def MakeSwedishFlag():
    """Make the Swedish flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfSwedish, "se")
Exemple #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")
Exemple #13
0
def MakeCatalanFlag():
    """Make the Catalan flag. Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfCatalan, "ca")
Exemple #14
0
def MakeBritishFlag():
    """Make the Union Jack (simplified). Saves it in the working directory as a PNG file."""
    img_gen.MakeImage(pfBritish, "en")