summaryrefslogtreecommitdiff
path: root/pbWrangler.py
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-03-03 18:13:33 -0800
committeryo mama <pepper@scannerjammer.com>2015-03-03 18:13:33 -0800
commit81dc62a3c958c3a0462a5d180f62395787d6ffe9 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /pbWrangler.py
parent09afbc6f9d3bd3dbf482f5d4a1234666bf1e6c56 (diff)
working template
Diffstat (limited to 'pbWrangler.py')
-rw-r--r--pbWrangler.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/pbWrangler.py b/pbWrangler.py
deleted file mode 100644
index e1fdb8c..0000000
--- a/pbWrangler.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-
-GRADIENT_PARAM_LIST = "flip flop tilt rotate subtract width height color2 color1 brightness saturation blurriness hue contrast gradienttype bevel percentbeveled halftone stripes stripenumber stripeintensity format name"
-
-GRID_PARAM_LIST = "width height linethickness opacity linecolor spacing vlines hlines shadow bgimage bgcolor imageinstead planebgcolor skycolor planebgimage transition swing tilt roll zoom trim format username"
-
-BREAK_PARAM_LIST = "breakmode breaktype breakangle url username firsttime"
-
-PB_PARAM_LIST = "url transparent flip flop rotate subtract fuzz width height black white brightness saturation hue contrast background compose format name"
-
-class PBwrangler:
- def __init__(self, pb):
- self.pblist = {'imgradient':GRADIENT_PARAM_LIST, 'imgrid':GRID_PARAM_LIST, 'imbreak':BREAK_PARAM_LIST, 'im':PB_PARAM_LIST}
- self.paramlist = pblist[pb]
- for param in self.paramlist:
- setattr(self, param, "")
- def PBwrangle(self):
-