2016-03-17 20:50:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkTypes.h"
|
|
|
|
|
|
|
|
#if defined(SK_BUILD_FOR_WIN)
|
|
|
|
|
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkImageGenerator.h"
|
|
|
|
#include "SkTemplates.h"
|
|
|
|
#include "SkTScopedComPtr.h"
|
|
|
|
|
|
|
|
#include <wincodec.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Any Windows program that uses COM must initialize the COM library by calling
|
|
|
|
* the CoInitializeEx function. In addition, each thread that uses a COM
|
|
|
|
* interface must make a separate call to this function.
|
|
|
|
*
|
|
|
|
* For every successful call to CoInitializeEx, the thread must call
|
|
|
|
* CoUninitialize before it exits.
|
|
|
|
*
|
|
|
|
* SkImageGeneratorWIC requires the COM library and leaves it to the client to
|
|
|
|
* initialize COM for their application.
|
|
|
|
*
|
|
|
|
* For more information on initializing COM, please see:
|
|
|
|
* https://msdn.microsoft.com/en-us/library/windows/desktop/ff485844.aspx
|
|
|
|
*/
|
2018-06-25 18:01:29 +00:00
|
|
|
class SK_API SkImageGeneratorWIC : public SkImageGenerator {
|
2016-03-17 20:50:17 +00:00
|
|
|
public:
|
2018-06-25 18:01:29 +00:00
|
|
|
static std::unique_ptr<SkImageGenerator> MakeFromEncodedWIC(sk_sp<SkData>);
|
2016-03-17 20:50:17 +00:00
|
|
|
|
|
|
|
protected:
|
2018-05-15 18:12:14 +00:00
|
|
|
sk_sp<SkData> onRefEncodedData() override;
|
2016-03-17 20:50:17 +00:00
|
|
|
|
2017-05-12 15:41:27 +00:00
|
|
|
bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options&)
|
|
|
|
override;
|
2016-03-17 20:50:17 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/*
|
|
|
|
* Takes ownership of the imagingFactory
|
|
|
|
* Takes ownership of the imageSource
|
|
|
|
*/
|
|
|
|
SkImageGeneratorWIC(const SkImageInfo& info, IWICImagingFactory* imagingFactory,
|
2018-06-25 18:01:29 +00:00
|
|
|
IWICBitmapSource* imageSource, sk_sp<SkData>);
|
2016-03-17 20:50:17 +00:00
|
|
|
|
|
|
|
SkTScopedComPtr<IWICImagingFactory> fImagingFactory;
|
|
|
|
SkTScopedComPtr<IWICBitmapSource> fImageSource;
|
2016-08-03 20:32:32 +00:00
|
|
|
sk_sp<SkData> fData;
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2016-03-17 20:50:17 +00:00
|
|
|
typedef SkImageGenerator INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SK_BUILD_FOR_WIN
|