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)
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")
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")
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")
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")
def MakeRussianFlag(): """Make the Russian flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfRussian, "ru")
def MakeGreekFlag(): """Make the Greek flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfGreek, "gr")
def MakeFrenchFlag(): """Make the French flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfFrench, "fr")
def MakeItalianFlag(): """Make the Italian flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfItalian, "it")
def MakeNorwegianFlag(): """Make the Norwegian flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfNorwegian, "no")
def MakeSwedishFlag(): """Make the Swedish flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfSwedish, "se")
def MakeSpanishFlag(): """Make the Spanish flag (without shield). Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfSpanish, "es")
def MakeCatalanFlag(): """Make the Catalan flag. Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfCatalan, "ca")
def MakeBritishFlag(): """Make the Union Jack (simplified). Saves it in the working directory as a PNG file.""" img_gen.MakeImage(pfBritish, "en")