Home | History | Annotate | Download | only in printing

Lines Matching defs:Image

24 // Lightweight raw-bitmap management. The image, once initialized, is immutable.
25 // The main purpose is testing image contents.
26 class PRINTING_EXPORT Image {
28 // Creates the image from the given file on disk. Uses extension to
30 // If image loading fails size().IsEmpty() will be true.
31 explicit Image(const base::FilePath& path);
33 // Creates the image from the metafile. Deduces bounds based on bounds in
35 explicit Image(const Metafile& metafile);
38 explicit Image(const Image& image);
40 ~Image();
46 // Return a checksum of the image (MD5 over the internal data structure).
49 // Save image as PNG.
53 double PercentageDifferent(const Image& rhs) const;
74 Image(const void* data, size_t size);
82 // Pixel dimensions of the image.
96 Image& operator=(const Image& image);