選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

plugin_example.py 292 B

12345678910
  1. from core.models import Image
  2. from django_images.models import Thumbnail
  3. class Plugin:
  4. def process_image_pre_creation(self, django_settings, image_instance: Image):
  5. pass
  6. def process_thumbnail_pre_creation(self, django_settings, thumbnail_instance: Thumbnail):
  7. pass