Home | History | Annotate | Download | only in printing

Lines Matching defs:Image

5 #include "printing/image.h"
20 Image::Image(const base::FilePath& path)
40 Image::Image(const Metafile& metafile)
46 Image::Image(const Image& image)
47 : size_(image.size_),
48 row_length_(image.row_length_),
49 data_(image.data_),
50 ignore_alpha_(image.ignore_alpha_) {
53 Image::~Image() {}
55 std::string Image::checksum() const {
61 bool Image::SaveToPng(const base::FilePath& filepath) const {
83 double Image::PercentageDifferent(const Image& rhs) const {
140 bool Image::LoadPng(const std::string& compressed) {
151 bool Image::LoadMetafile(const std::string& data) {