2021-05-05 17:48:02 +00:00
|
|
|
from imagemuck.resources._shared import ImageMuckResource
|
2020-09-18 02:22:24 +00:00
|
|
|
|
|
|
|
|
2021-05-05 17:48:02 +00:00
|
|
|
class ThumbnailScale(ImageMuckResource):
|
2020-09-18 02:22:24 +00:00
|
|
|
|
2020-09-21 23:36:07 +00:00
|
|
|
routes = ("/thumb/<string:image_id>/scale/<int:scale_width>.jpg",)
|
2020-09-18 02:22:24 +00:00
|
|
|
|
|
|
|
def get(self, image_id: str, scale_width: int):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|
2021-05-05 17:48:02 +00:00
|
|
|
class ThumbnailResize(ImageMuckResource):
|
2020-09-18 02:22:24 +00:00
|
|
|
|
2020-09-21 23:36:07 +00:00
|
|
|
routes = ("/thumb/<string:image_id>/size/<int:width>x<int:height>.jpg",)
|
2020-09-18 02:22:24 +00:00
|
|
|
|
|
|
|
def get(self, image_id: str, width: int, height: int):
|
|
|
|
raise NotImplementedError
|