summaryrefslogtreecommitdiff
path: root/print/XpsRasFilter/src/BitmapHandler.cpp
blob: d887ddab9d1346255665f67ce2fdc5623f73e3d4 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved
//
// File Name:
//
//    BitmapHandler.cpp
//
// Abstract:
//
//    Abstract class that encapsulates the processing done to each 
//    individual band bitmap, as well as the concrete implemention
//    that streams the bands as Tiffs to the output stream.
//

#include "precomp.h"
#include "WppTrace.h"
#include "Exception.h"
#include "filtertypes.h"
#include "UnknownBase.h"
#include "xpsrasfilter.h"
#include "OMConvertor.h"
#include "rasinterface.h"
#include "BitmapHandler.h"

#include "BitmapHandler.tmh"

namespace xpsrasfilter
{

//
//Routine Name:
//
//    TiffStreamBitmapHandler::CreateTiffStreamBitmapHandler
//
//Routine Description:
//
//    Static factory method that creates an instance of
//    TiffStreamBitmapHandler.
//
//Arguments:
//
//    pStream         - Filter output stream (IPrintWriteStream)
//
//Return Value:
//
//    TiffStreamBitmapHandler_t (smart ptr)
//    The new TiffStreamBitmapHandler.
//
TiffStreamBitmapHandler_t
TiffStreamBitmapHandler::CreateTiffStreamBitmapHandler(
    const IPrintWriteStream_t &pStream
    )
{
    IWICImagingFactory_t        pWICFactory;

    //
    // Create an instance of a WIC Imaging Factory
    //
    THROW_ON_FAILED_HRESULT(
        ::CoCreateInstance(
            CLSID_WICImagingFactory, 
            NULL, 
            CLSCTX_INPROC_SERVER, 
            __uuidof(IWICImagingFactory), 
            reinterpret_cast<LPVOID*>(&pWICFactory)
            )
        );

    //
    // Construct the TiffStreamBitmapHandler and return it
    //
    TiffStreamBitmapHandler_t toReturn(
                                new TiffStreamBitmapHandler(
                                        pWICFactory,
                                        pStream
                                        )
                                );

    return toReturn;
}

//
//Routine Name:
//
//    TiffStreamBitmapHandler::TiffStreamBitmapHandler
//
//Routine Description:
//
//    Construct the bitmap handler with the WIC factory
//    and filter output stream.
//
//Arguments:
//
//    pWICFactory - Windows Imaging Components object factory
//    pStream     - Output stream
//    pHG         - Encoder cache HGLOBAL
//
TiffStreamBitmapHandler::TiffStreamBitmapHandler(
    const IWICImagingFactory_t        &pWICFactory,
    const IPrintWriteStream_t         &pStream
    ) : m_pWICFactory(pWICFactory),
        m_pWriter(pStream),
        m_nextTiffStart(0),
        m_numTiffs(0),
        m_tiffStarts(0)
{
}

//
//Routine Name:
//
//    TiffStreamBitmapHandler::ProcessBitmap
//
//Routine Description:
//
//    Encode the bitmap as a TIFF and stream out of the filter.
//
//Arguments:
//
//    bitmap    - bitmap of a single band, to stream
//
void
TiffStreamBitmapHandler::ProcessBitmap(
    const IWICBitmap_t &bitmap
    )
{

    //
    // Create an empty HGLOBAL to hold the encode cache
    //
    SafeHGlobal_t pHG(
                    new SafeHGlobal(GMEM_SHARE | GMEM_MOVEABLE, 0)
                    );

    //
    // Create a stream to the encode buffer so that WIC can
    // encode the TIFF in-memory
    //
    IStream_t pIStream;

    THROW_ON_FAILED_HRESULT(
        ::CreateStreamOnHGlobal(
            *pHG,
            FALSE, // Do NOT Free the HGLOBAL on Release of the stream
            &pIStream
            )
        );

    //
    // Create a WIC TIFF Encoder on the stream
    //
    IWICBitmapEncoder_t pWICEncoder;
    THROW_ON_FAILED_HRESULT(
        m_pWICFactory->CreateEncoder(GUID_ContainerFormatTiff, NULL, &pWICEncoder)
        );
    THROW_ON_FAILED_HRESULT(
        pWICEncoder->Initialize(pIStream, WICBitmapEncoderNoCache)
        );

    //
    // Create a new frame for the band and configure it
    //
    IWICBitmapFrameEncode_t pWICFrame;
    IPropertyBag2_t pFramePropertyBag;

    THROW_ON_FAILED_HRESULT(
        pWICEncoder->CreateNewFrame(&pWICFrame, &pFramePropertyBag)
        );

    {
        //
        // Write the compression method to the frame's property bag
        //
        PROPBAG2 option = { 0 };
        option.pstrName = L"TiffCompressionMethod";
        
        VARIANT varValue;    
        VariantInit(&varValue);
        varValue.vt = VT_UI1;
        varValue.bVal = WICTiffCompressionLZW;      

        THROW_ON_FAILED_HRESULT(
            pFramePropertyBag->Write(
                1, // number of properties being set
                &option, 
                &varValue
                )
            );
    }

    THROW_ON_FAILED_HRESULT(
        pWICFrame->Initialize(pFramePropertyBag)
        );

    //
    // Set the frame's size
    //
    UINT bitmapWidth, bitmapHeight;
    THROW_ON_FAILED_HRESULT(
        bitmap->GetSize(&bitmapWidth, &bitmapHeight)
        );
    THROW_ON_FAILED_HRESULT(
        pWICFrame->SetSize(bitmapWidth, bitmapHeight)
        );

    //
    // Set the frame's resolution
    //
    DOUBLE xDPI, yDPI;
    THROW_ON_FAILED_HRESULT(
        bitmap->GetResolution(&xDPI, &yDPI)
        );
    THROW_ON_FAILED_HRESULT(
        pWICFrame->SetResolution(xDPI, yDPI)
        );

    //
    // Set the frame's pixel format
    //
    WICPixelFormatGUID format;
    THROW_ON_FAILED_HRESULT(
        bitmap->GetPixelFormat(&format)
        );
    THROW_ON_FAILED_HRESULT(
        pWICFrame->SetPixelFormat(&format)
        );

    //
    // Write the bitmap data to the frame
    //
    WICRect rect = {0, 0, 0, 0};
    rect.Width = bitmapWidth;
    rect.Height = bitmapHeight;
    THROW_ON_FAILED_HRESULT(
        pWICFrame->WriteSource(bitmap, &rect)
        );

    //
    // Commit the frame and encoder
    //
    THROW_ON_FAILED_HRESULT(
        pWICFrame->Commit()
        );
    THROW_ON_FAILED_HRESULT(
        pWICEncoder->Commit()
        );

    //
    // Get the size of the TIFF from the stream position
    //
    ULARGE_INTEGER tiffSize;
    LARGE_INTEGER zero;
    zero.QuadPart = 0;

    THROW_ON_FAILED_HRESULT(
        pIStream->Seek(zero, SEEK_CUR, &tiffSize)
        );

    ULONG cb;
    
    THROW_ON_FAILED_HRESULT(
        ::ULongLongToULong(tiffSize.QuadPart, &cb)
        );

    //
    // Update the list of Tiff locations so that it can be written to
    // the end of the Tiff stream.
    //
    m_tiffStarts.push_back(m_nextTiffStart);
    m_nextTiffStart += tiffSize.QuadPart;
    m_numTiffs++;

    {
        //
        // Get a pointer to the HGLOBAL memory
        //
        HGlobalLock_t lock = pHG->Lock();
        BYTE *pCache = lock->GetAddress();

        //
        // Write the encoded Tiff to the output stream
        //
        ULONG written;

        THROW_ON_FAILED_HRESULT(
            m_pWriter->WriteBytes(pCache, cb, &written)
            );
    }
}

//
//Routine Name:
//
//    TiffStreamBitmapHandler::WriteFooter
//
//Routine Description:
//
//    Write the footer to the stream, making it easier
//    to decode the individual TIFFs later. The footer
//    looks like this:
//
//       |<--8 bytes--->|
//
//       +--------------+
//       | Tiff 1 start |
//       +--------------+
//       | Tiff 2 start |
//       +--------------+
//       |     ...      |
//       +--------------+
//       | Tiff N start |
//       +--------------+
//       |      N       | 
//       +--------------+
//
void
TiffStreamBitmapHandler::WriteFooter()
{
    ULONG written;

    //
    // Write the vector of Tiff starts to the stream, if any Tiffs
    // have been written to the stream.
    //
    if (m_numTiffs > 0)
    {
        ULONG toWrite;

        THROW_ON_FAILED_HRESULT(
            SizeTToULong(
                sizeof(ULONGLONG) * m_tiffStarts.size(),
                &toWrite
                )
            );

        THROW_ON_FAILED_HRESULT(
            m_pWriter->WriteBytes(
                            reinterpret_cast<BYTE *>(&m_tiffStarts[0]),
                            toWrite, 
                            &written
                            )
            );
    }

    //
    // Write the number of Tiffs to the stream
    //
    THROW_ON_FAILED_HRESULT(
        m_pWriter->WriteBytes(
            reinterpret_cast<BYTE *>(&m_numTiffs),
            sizeof(m_numTiffs),
            &written
            )
        );
}

} // namespace xpsrasfilter