static
| 62 | |
| 63 | // static |
| 64 | Image* Image::createCopy(const Image* image, const ImageBufferPtr& buffer) |
| 65 | { |
| 66 | ASSERT(image); |
| 67 | return crop_image(image, 0, 0, image->width(), image->height(), |
| 68 | image->maskColor(), buffer); |
| 69 | } |
| 70 | |
| 71 | } // namespace doc |
nothing calls this directly
no test coverage detected