//============================================================================ // 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. //============================================================================ #ifndef vtk_m_io_ImageWriterPNM_h #define vtk_m_io_ImageWriterPNM_h #include namespace vtkm { namespace io { /// \brief Manages writing images using the PNM format /// /// `ImageWriterPNM` extends `ImageWriterBase`, and implements writing images in a /// valid PNM format (for magic number P6). More details on the PNM /// format can be found here: http://netpbm.sourceforge.net/doc/ppm.html /// /// When a file is writen the MaxColorValue found in the file is used to /// determine the PixelType required to stored PixelType is instead dependent /// upon the read MaxColorValue obtained from the file class VTKM_IO_EXPORT ImageWriterPNM : public vtkm::io::ImageWriterBase { using Superclass = vtkm::io::ImageWriterBase; public: using Superclass::Superclass; VTKM_CONT ~ImageWriterPNM() noexcept override; ImageWriterPNM(const ImageWriterPNM&) = delete; ImageWriterPNM& operator=(const ImageWriterPNM&) = delete; /// Attempts to write the ImageDataSet to a PNM file. The MaxColorValue /// set in the file with either be selected from the stored MaxColorValue /// member variable, or from the templated type if MaxColorValue hasn't been /// set from a read file. /// VTKM_CONT void Write(vtkm::Id width, vtkm::Id height, const ColorArrayType& pixels) override; protected: template VTKM_CONT void WriteToFile(vtkm::Id width, vtkm::Id height, const ColorArrayType& pixels); }; } } // namespace vtkm::io #endif //vtk_m_io_ImageWriterPNM_h