2021-05-02 22:12:04 +00:00
|
|
|
from dehance.resources._shared import DehanceResource
|
2020-09-18 02:22:24 +00:00
|
|
|
|
|
|
|
|
2021-05-02 22:12:04 +00:00
|
|
|
class ThumbnailScale(DehanceResource):
|
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-02 22:12:04 +00:00
|
|
|
class ThumbnailResize(DehanceResource):
|
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
|