kiosk: Management UI polish.
[chromium-blink-merge.git] / printing / image_mac.cc
blob2ec9ef600481065f12c36e843f9c140ae3e2f096
1 // Copyright (c) 2012 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 #include "printing/image.h"
7 #include <ApplicationServices/ApplicationServices.h>
9 #include "base/mac/scoped_cftyperef.h"
10 #include "printing/metafile.h"
11 #include "ui/gfx/rect.h"
13 namespace printing {
15 bool Image::LoadMetafile(const Metafile& metafile) {
16 // The printing system uses single-page metafiles (page indexes are 1-based).
17 const unsigned int page_number = 1;
18 gfx::Rect rect(metafile.GetPageBounds(page_number));
19 if (rect.width() < 1 || rect.height() < 1)
20 return false;
22 size_ = rect.size();
23 row_length_ = size_.width() * sizeof(uint32);
24 size_t bytes = row_length_ * size_.height();
25 DCHECK(bytes);
27 data_.resize(bytes);
28 base::ScopedCFTypeRef<CGColorSpaceRef> color_space(
29 CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB));
30 base::ScopedCFTypeRef<CGContextRef> bitmap_context(
31 CGBitmapContextCreate(&*data_.begin(),
32 size_.width(),
33 size_.height(),
35 row_length_,
36 color_space,
37 kCGImageAlphaPremultipliedLast));
38 DCHECK(bitmap_context.get());
40 struct Metafile::MacRenderPageParams params;
41 params.shrink_to_fit = true;
42 metafile.RenderPage(page_number, bitmap_context,
43 CGRectMake(0, 0, size_.width(), size_.height()), params);
45 return true;
48 } // namespace printing