Files
django-stubs/django-stubs/core/files/images.pyi
2019-01-06 21:00:01 +03:00

15 lines
326 B
Python

from io import BytesIO
from typing import Any, Union
from django.core.files import File
class ImageFile(File):
mode: str
name: str
@property
def width(self) -> int: ...
@property
def height(self) -> int: ...
def get_image_dimensions(file_or_path: Union[BytesIO, str], close: bool = ...) -> Any: ...