Ok, as promised I have some code that will hopefully get some people started, its attached as a PyQt example
I apologize for the lack of comments and docstrings but this was more of a mockup than anything else
Here's how to use:
widget = QdContactSheet()
images = # list of images you want to view as thumbnails
images.sort()
widget.load(images)
widget.setWindowTitle("Contact Sheet")
widget.resize(1000, 800)
widget.show()
app.exec_()
app = QtGui.QApplication([])
widget = QdContactSheet()
images = # list of images you want to view as thumbnails
images.sort()
widget.load(images)
widget.setWindowTitle("Contact Sheet")
widget.resize(1000, 800)
widget.show()
app.exec_()
To copy to clipboard, switch view to plain text mode
Bookmarks