Return whether the image can be composited with its neighbors.
(self)
| 778 | self.stale = True |
| 779 | |
| 780 | def can_composite(self): |
| 781 | """Return whether the image can be composited with its neighbors.""" |
| 782 | trans = self.get_transform() |
| 783 | return ( |
| 784 | self._interpolation != 'none' and |
| 785 | trans.is_affine and |
| 786 | trans.is_separable) |
| 787 | |
| 788 | def set_resample(self, v): |
| 789 | """ |
no test coverage detected