git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@2 4cde692c-a291-49d1-8350-778aa11640f8
13 lines
371 B
Python
13 lines
371 B
Python
import DefaultTable
|
|
|
|
class table_D_S_I_G_(DefaultTable.DefaultTable):
|
|
|
|
def toXML(self, xmlWriter, ttFont):
|
|
xmlWriter.comment("note that the Digital Signature will be invalid after recompilation!")
|
|
xmlWriter.newline()
|
|
xmlWriter.begintag("hexdata")
|
|
xmlWriter.newline()
|
|
xmlWriter.dumphex(self.compile(ttFont))
|
|
xmlWriter.endtag("hexdata")
|
|
xmlWriter.newline()
|