本文整理匯總了Python中sgml.HTMLParser.HTMLParser.start_pre方法的典型用法代碼示例。如果您正苦於以下問題:Python HTMLParser.start_pre方法的具體用法?Python HTMLParser.start_pre怎麽用?Python HTMLParser.start_pre使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sgml.HTMLParser.HTMLParser
的用法示例。
在下文中一共展示了HTMLParser.start_pre方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: start_pre
# 需要導入模塊: from sgml.HTMLParser import HTMLParser [as 別名]
# 或者: from sgml.HTMLParser.HTMLParser import start_pre [as 別名]
def start_pre(self, attrs):
HTMLParser.start_pre(self, attrs)
new_size = AS_IS
width = extract_keyword('width', attrs, 0, conv=conv_integer)
if width > 0:
ps = self.formatter.writer.ps
space_width = ps._font.text_width(' ')
pagewidth = ps.get_pagewidth()
required = space_width * width
if required > pagewidth:
factor = pagewidth / required
new_size = ps.get_fontsize() * factor
self.formatter.push_font((new_size, AS_IS, AS_IS, AS_IS))