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.
15 lines
316 B
15 lines
316 B
14 years ago
|
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)
|