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_
10 #include "base/basictypes.h"
12 namespace cloud_print
{
20 void EncodeDocumentHeader(std::string
*output
) const;
21 bool EncodePage(const BitmapImage
& image
,
23 const uint32 total_pages
,
28 void EncodePageHeader(const BitmapImage
& image
, const uint32 dpi
,
29 const uint32 total_pages
, std::string
* output
) const;
30 bool EncodeRowFrom32Bit(const uint8
* row
,
32 const int color_space
,
33 std::string
* output
) const;
34 const uint8
* GetRow(const BitmapImage
& image
, int row
) const;
37 } // namespace cloud_print
39 #endif // CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_