You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/chalk/doc/scripts/dcop.py

15 lines
319 B

from pydcop import *
app = ""
for a in apps():
if (a.startswith("chalk")):
app = anyAppCalled(a)
doc = app.KoApplicationIface.getDocuments()[0]
img=doc.currentImage()
dev=img.activeDevice()
dev.setName("A new name")
print(dev.pixelSize())
print(dev.nChannels())
print(dev.readBytes(10, 10, 1, 1))