Previous | Next

Input Parameters

register(
  "python_fu_hello_world",
  "Hello world image",
  "Create an image with a user-provided string",
  "Akkana Peck", "Akkana Peck", "2010",
  "Hello world...",
  "",
  [
    (PF_STRING, "string", "String", 'Hello, world!'),
    (PF_FONT, "font", "Font face", "Sans"),
    (PF_SPINNER, "size", "Font size", 50, (1, 3000, 1)),
    (PF_COLOR, "color", "Text color", (1.0, 0.0, 0.0))
  ],
  [],
  hello_world, menu="<Image>/File/Create")

main()