vtk-m/vtkm/io/DecodePNG.h

38 lines
1.2 KiB
C
Raw Normal View History

2019-04-15 23:24:21 +00:00
//============================================================================
2016-08-26 19:30:52 +00:00
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
2019-04-15 23:24:21 +00:00
//============================================================================
#ifndef vtk_m_io_DecodePNG_h
#define vtk_m_io_DecodePNG_h
2016-08-26 19:30:52 +00:00
#include <vtkm/Types.h>
2020-04-28 13:12:11 +00:00
#include <vtkm/io/vtkm_io_export.h>
2016-08-26 19:30:52 +00:00
#include <vector>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace io
2017-05-18 14:29:41 +00:00
{
2016-08-26 19:30:52 +00:00
/// Decodes a PNG file buffer in memory, into a raw pixel buffer
/// Output is RGBA 32-bit (8 bit per channel) color format
/// no matter what color type the original PNG image had. This gives predictable,
/// usable data from any random input PNG.
///
2020-04-28 13:12:11 +00:00
VTKM_IO_EXPORT
vtkm::UInt32 DecodePNG(std::vector<unsigned char>& out_image,
unsigned long& image_width,
unsigned long& image_height,
const unsigned char* in_png,
std::size_t in_size);
2016-08-26 19:30:52 +00:00
}
} // vtkm::io
2016-08-26 19:30:52 +00:00
#endif //vtk_m_io_DecodePNG_h