I have a simple script to export my document as a png. I need access to the "no background" option. But cant find the api information for this.
How can I access this setting?
My script is currently bellow:
import scribus
img = scribus.ImageExport()
document_name = scribus.getDocName()
img.name = document_name.replace(".sla",".png")
img.type = 'PNG'
img.scale = 100
img.quality = 20 # 1-100, 100 = high
img.dpi = 96
# need access to the "no-background" option here for transparency!
img.save()