blob: 92f9224c4dd98d6a7b573f0e48ba0e72f626e00f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_IMAGE_IMAGE_UTIL_H_
#define UI_GFX_IMAGE_IMAGE_UTIL_H_
#pragma once
#include <vector>
#include "base/basictypes.h"
#include "ui/base/ui_export.h"
namespace gfx {
class Image;
}
namespace gfx {
// Creates an image from the given PNG-encoded input. The caller owns the
// returned Image. If there was an error creating the image, returns NULL.
UI_EXPORT Image* ImageFromPNGEncodedData(const unsigned char* input,
size_t input_size);
// Fills the |dst| vector with PNG-encoded bytes based on the given Image.
// Returns true if the Image was encoded successfully.
UI_EXPORT bool PNGEncodedDataFromImage(const Image& image,
std::vector<unsigned char>* dst);
// Fills the |dst| vector with JPEG-encoded bytes based on the given Image.
// Returns true if the Image was encoded successfully.
UI_EXPORT bool JPEGEncodedDataFromImage(const Image& image,
std::vector<unsigned char>* dst);
}
#endif // UI_GFX_IMAGE_IMAGE_UTIL_H_
|