summaryrefslogtreecommitdiff
path: root/chromium/components/pwg_encoder/bitmap_image.cc
blob: 2e302bb889170ddb57be13c34d3d337e59021670 (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
// Copyright 2013 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.

#include "components/pwg_encoder/bitmap_image.h"

#include "base/logging.h"

namespace pwg_encoder {

namespace {
const uint8_t kCurrentlySupportedNumberOfChannels = 4;
}

BitmapImage::BitmapImage(const gfx::Size& size, Colorspace colorspace)
    : size_(size),
      colorspace_(colorspace),
      data_(new uint8_t[size.GetArea() * channels()]) {}

BitmapImage::~BitmapImage() {}

uint8_t BitmapImage::channels() const {
  return kCurrentlySupportedNumberOfChannels;
}

const uint8_t* BitmapImage::GetPixel(const gfx::Point& point) const {
  DCHECK_LT(point.x(), size_.width());
  DCHECK_LT(point.y(), size_.height());
  return data_.get() + (point.y() * size_.width() + point.x()) * channels();
}

}  // namespace pwg_encoder