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