Blame imageio/wicdec.h

Packit 9c6abc
// Copyright 2013 Google Inc. All Rights Reserved.
Packit 9c6abc
//
Packit 9c6abc
// Use of this source code is governed by a BSD-style license
Packit 9c6abc
// that can be found in the COPYING file in the root of the source
Packit 9c6abc
// tree. An additional intellectual property rights grant can be found
Packit 9c6abc
// in the file PATENTS. All contributing project authors may
Packit 9c6abc
// be found in the AUTHORS file in the root of the source tree.
Packit 9c6abc
// -----------------------------------------------------------------------------
Packit 9c6abc
//
Packit 9c6abc
// Windows Imaging Component (WIC) decode.
Packit 9c6abc
Packit 9c6abc
#ifndef WEBP_IMAGEIO_WICDEC_H_
Packit 9c6abc
#define WEBP_IMAGEIO_WICDEC_H_
Packit 9c6abc
Packit 9c6abc
#ifdef __cplusplus
Packit 9c6abc
extern "C" {
Packit 9c6abc
#endif
Packit 9c6abc
Packit 9c6abc
struct Metadata;
Packit 9c6abc
struct WebPPicture;
Packit 9c6abc
Packit 9c6abc
// Reads an image from 'filename', returning the decoded output in 'pic'.
Packit 9c6abc
// If 'keep_alpha' is true and the image has an alpha channel, the output is
Packit 9c6abc
// RGBA otherwise it will be RGB. pic->use_argb is always forced to true.
Packit 9c6abc
// Returns true on success.
Packit 9c6abc
int ReadPictureWithWIC(const char* const filename,
Packit 9c6abc
                       struct WebPPicture* const pic, int keep_alpha,
Packit 9c6abc
                       struct Metadata* const metadata);
Packit 9c6abc
Packit 9c6abc
#ifdef __cplusplus
Packit 9c6abc
}    // extern "C"
Packit 9c6abc
#endif
Packit 9c6abc
Packit 9c6abc
#endif  // WEBP_IMAGEIO_WICDEC_H_