diff --git a/PIL/Image.py b/PIL/Image.py index 333397701..8d278317e 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -918,10 +918,10 @@ class Image: :returns: An :py:class:`~PIL.Image.Image` object. """ - self.load() if box is None: return self.copy() - + else: + self.load() # lazy operation return _ImageCrop(self, box)