NaCl: Update revision in DEPS, r12770 -> r12773
[chromium-blink-merge.git] / chrome / utility / cloud_print / pwg_encoder.h
blob3b89e612d1435303fbcf5f0d69ddab8eabaa967d
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_
6 #define CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_
8 #include <string>
10 #include "base/basictypes.h"
12 namespace cloud_print {
14 class BitmapImage;
16 class PwgEncoder {
17 public:
18 PwgEncoder();
20 void EncodeDocumentHeader(std::string *output) const;
21 bool EncodePage(const BitmapImage& image, const uint32 dpi,
22 const uint32 total_pages, std::string* output) const;
24 private:
25 void EncodePageHeader(const BitmapImage& image, const uint32 dpi,
26 const uint32 total_pages, std::string* output) const;
27 bool EncodeRowFrom32Bit(const uint8* row, const int width,
28 const int color_space, std::string* output) const;
29 const uint8* GetRow(const BitmapImage& image, int row) const;
32 } // namespace cloud_print
34 #endif // CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_