2012-12-06 23:04:36 +01:00
|
|
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
|
|
|
//
|
2013-06-07 08:05:58 +02:00
|
|
|
// Use of this source code is governed by a BSD-style license
|
|
|
|
// that can be found in the COPYING file in the root of the source
|
|
|
|
// tree. An additional intellectual property rights grant can be found
|
|
|
|
// in the file PATENTS. All contributing project authors may
|
|
|
|
// be found in the AUTHORS file in the root of the source tree.
|
2012-12-06 23:04:36 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// TIFF decode.
|
|
|
|
|
|
|
|
#ifndef WEBP_EXAMPLES_TIFFDEC_H_
|
|
|
|
#define WEBP_EXAMPLES_TIFFDEC_H_
|
|
|
|
|
2013-11-25 23:43:12 +01:00
|
|
|
#ifdef __cplusplus
|
2012-12-06 23:04:36 +01:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-12-16 04:41:03 +01:00
|
|
|
struct Metadata;
|
2012-12-06 23:04:36 +01:00
|
|
|
struct WebPPicture;
|
|
|
|
|
|
|
|
// Reads a TIFF from 'filename', returning the decoded output in 'pic'.
|
2015-10-27 22:54:11 +01:00
|
|
|
// Output is RGBA or YUVA, depending on pic->use_argb value.
|
2012-12-06 23:04:36 +01:00
|
|
|
// If 'keep_alpha' is true and the TIFF has an alpha channel, the output is RGBA
|
2015-10-27 22:54:11 +01:00
|
|
|
// or YUVA. Otherwise, alpha channel is dropped and output is RGB or YUV.
|
2012-12-06 23:04:36 +01:00
|
|
|
// Returns true on success.
|
|
|
|
int ReadTIFF(const char* const filename,
|
2012-12-16 04:41:03 +01:00
|
|
|
struct WebPPicture* const pic, int keep_alpha,
|
|
|
|
struct Metadata* const metadata);
|
2012-12-06 23:04:36 +01:00
|
|
|
|
2013-11-25 23:43:12 +01:00
|
|
|
#ifdef __cplusplus
|
2012-12-06 23:04:36 +01:00
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // WEBP_EXAMPLES_TIFFDEC_H_
|