1 // Copyright (c) 2011 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 "base/win/scoped_gdi_object.h"
8 #include "base/win/scoped_hdc.h"
9 #include "base/win/scoped_select_object.h"
10 #include "printing/metafile.h"
11 #include "skia/ext/platform_device.h"
12 #include "ui/gfx/gdi_util.h" // EMF support
13 #include "ui/gfx/rect.h"
18 // A simple class which temporarily overrides system settings.
19 // The bitmap image rendered via the PlayEnhMetaFile() function depends on
20 // some system settings.
21 // As a workaround for such dependency, this class saves the system settings
22 // and changes them. This class also restore the saved settings in its
24 class DisableFontSmoothing
{
26 explicit DisableFontSmoothing() : enable_again_(false) {
28 if (SystemParametersInfo(SPI_GETFONTSMOOTHING
, 0, &enabled
, 0) &&
30 if (SystemParametersInfo(SPI_SETFONTSMOOTHING
, FALSE
, NULL
, 0))
35 ~DisableFontSmoothing() {
37 BOOL result
= SystemParametersInfo(SPI_SETFONTSMOOTHING
, TRUE
, NULL
, 0);
45 DISALLOW_COPY_AND_ASSIGN(DisableFontSmoothing
);
52 bool Image::LoadMetafile(const Metafile
& metafile
) {
53 gfx::Rect
rect(metafile
.GetPageBounds(1));
54 DisableFontSmoothing disable_in_this_scope
;
56 // Create a temporary HDC and bitmap to retrieve the rendered data.
57 base::win::ScopedCreateDC
hdc(::CreateCompatibleDC(NULL
));
59 DCHECK_EQ(rect
.x(), 0);
60 DCHECK_EQ(rect
.y(), 0);
61 DCHECK_GE(rect
.width(), 0); // Metafile could be empty.
62 DCHECK_GE(rect
.height(), 0);
64 if (rect
.width() < 1 || rect
.height() < 1)
68 gfx::CreateBitmapV4Header(rect
.width(), rect
.height(), &hdr
);
69 unsigned char* bits
= NULL
;
70 base::win::ScopedBitmap
bitmap(
71 ::CreateDIBSection(hdc
, reinterpret_cast<BITMAPINFO
*>(&hdr
), 0,
72 reinterpret_cast<void**>(&bits
), NULL
, 0));
74 base::win::ScopedSelectObject
select_object(hdc
, bitmap
);
76 skia::InitializeDC(hdc
);
78 bool success
= metafile
.Playback(hdc
, NULL
);
80 row_length_
= size_
.width() * sizeof(uint32
);
81 size_t bytes
= row_length_
* size_
.height();
84 data_
.assign(bits
, bits
+ bytes
);
89 } // namespace printing