Sample Code
Windows Driver Samples/ XPSDrv Driver and Filter Sample/ C++/ src/ filters/ color/ cmimg.h/
/*++ Copyright (c) 2005 Microsoft Corporation All rights reserved. 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. File Name: cmimg.h Abstract: Color management image definition. The CColorManagedImage class is responsible for managing the image resources used in a container. This implements the IResWriter interface so that the font can be added to the resource cache. --*/ #pragma once #include "rescache.h" #include "profman.h" #include "scaniter.h" #include "cmflt.h" class CColorManagedImage : public IResWriter { public: CColorManagedImage( _In_ BSTR bstrResURI, _In_ CProfileManager* pProfManager, _In_ IFixedPage* pFixedPage, _In_ ResDeleteMap* pResDel ); ~CColorManagedImage(); HRESULT WriteData( _In_ IPartBase* pResource, _In_ IPrintWriteStream* pStream ); HRESULT GetKeyName( _Outptr_ BSTR* pbstrKeyName ); HRESULT GetResURI( _Outptr_ BSTR* pbstrResURI ); private: HRESULT SetSrcProfile( _In_ CBmpConverter* pScanIter ); HRESULT TransformScanLines( _In_ CScanIterator* pSrcScans, _In_ CScanIterator* pDstScans ); private: CComBSTR m_bstrBitmapURI; CComBSTR m_bstrSrcProfileURI; CProfileManager* m_pProfManager; CBmpConverter m_srcBmp; CBmpConverter m_dstBmp; CComPtr<IFixedPage> m_pFixedPage; ResDeleteMap* m_pResDel; };
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials