|
carol.gimp.orggimp2Python:mac proof |
| mac-proof |
|---|
|
File Edit Search Preferences |
import string def macproof_name(macname): rmspace = string.maketrans(" ","_") name = string.translate(macname, rmspace,'()#,?!\/*"<>|:;') name = string.lowercase(name) return name # before you use this string as a file name image_name = macproof_name(image_name) |
|
|
|