Pixmap Colorspace.
(self)
| 13599 | |
| 13600 | @property |
| 13601 | def colorspace(self): |
| 13602 | """Pixmap Colorspace.""" |
| 13603 | cs = Colorspace(mupdf.fz_pixmap_colorspace(self.this)) |
| 13604 | if cs.name == "None": |
| 13605 | return None |
| 13606 | return cs |
| 13607 | |
| 13608 | def copy(self, src, bbox): |
| 13609 | """Copy bbox from another Pixmap.""" |
no test coverage detected