本文整理汇总了Python中iiif.request.IIIFRequest.format方法的典型用法代码示例。如果您正苦于以下问题:Python IIIFRequest.format方法的具体用法?Python IIIFRequest.format怎么用?Python IIIFRequest.format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类iiif.request.IIIFRequest
的用法示例。
在下文中一共展示了IIIFRequest.format方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test09_parse_format
# 需要导入模块: from iiif.request import IIIFRequest [as 别名]
# 或者: from iiif.request.IIIFRequest import format [as 别名]
def test09_parse_format(self):
"""Test parse_format."""
r = IIIFRequest(api_version='2.1')
r.format = 'jpg'
r.parse_format()
r.format = 'something_else_Z134'
r.parse_format()
# Bad things
r.format = 'no spaces allowed'
self.assertRaises(IIIFRequestError, r.parse_format)
r.format = '~'
self.assertRaises(IIIFRequestError, r.parse_format)
r.format = ''
self.assertRaises(IIIFRequestError, r.parse_format)
示例2: test03_str
# 需要导入模块: from iiif.request import IIIFRequest [as 别名]
# 或者: from iiif.request.IIIFRequest import format [as 别名]
def test03_str(self):
"""Simple tests of str() method."""
r = IIIFRequest()
r.baseurl = 'http://ex.org/'
r.identifier = 'abc'
# info
r.info = True
r.format = 'json'
self.assertTrue(re.search(r'INFO request', str(r)))
self.assertTrue(re.search(r'format=json', str(r)))
# non-info
r.info = False
r.region = 'R'
r.size = 'S'
r.rotation = 'X'
r.quality = 'Q'
r.format = 'jpg'
self.assertFalse(re.search(r'INFO request', str(r)))
self.assertTrue(re.search(r'region=R', str(r)))
self.assertTrue(re.search(r'format=jpg', str(r)))
示例3: generate_tile
# 需要导入模块: from iiif.request import IIIFRequest [as 别名]
# 或者: from iiif.request.IIIFRequest import format [as 别名]
def generate_tile(self,region,size):
"""Generate one tile for this given region,size of this region."""
r = IIIFRequest(identifier=self.identifier,api_version=self.api_version)
if (region == 'full'):
r.region_full = True
else:
r.region_xywh = region # [rx,ry,rw,rh]
r.size_wh = [size[0],None] # [sw,sh] -> [sw,] canonical form
r.format = 'jpg'
path = r.url()
# Generate...
if (self.dryrun):
print "%s / %s" % (self.dst,path)
else:
m = IIIFManipulatorPIL(api_version=self.api_version)
try:
m.derive(srcfile=self.src, request=r, outfile=os.path.join(self.dst,path))
print "%s / %s" % (self.dst,path)
except IIIFZeroSizeError as e:
print "%s / %s - zero size, skipped" % (self.dst,path)