1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
CLAW - a C++ Library Absolutely Wonderful
CLAW is a free library without any particular aim but being useful to
anyone.
Copyright (C) 2005-2011 Julien Jorge
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
contact: julien.jorge@gamned.org
*/
/**
* \file targa_writer.cpp
* \brief Implementation of the targa::writer class.
* \author Julien Jorge
*/
#include <claw/targa.hpp>
#include <claw/exception.hpp>
//********************** targa::writer::file_output_buffer *********************
namespace claw
{
namespace graphic
{
/*------------------------------------------------------------------------*/
/**
* \brief Write a pixel in the stream and set its value in the good order.
* \param p The pixel to write.
*
* \remark This method is specialized for the pixels of type
* claw::graphic::rgba_pixel_32.
*/
template< >
void targa::writer::file_output_buffer<claw::graphic::rgba_pixel_8>::
order_pixel_bytes( const pixel_type& p )
{
m_stream << p.components.blue << p.components.green
<< p.components.red << p.components.alpha;
} // targa::writer::file_output_buffer::order_pixel_bytes()
} // namespace graphic
} // namespace claw
//************************** targa::writer::writer *****************************
/*----------------------------------------------------------------------------*/
/**
* \brief Constructor.
* \param img The image to save.
*/
claw::graphic::targa::writer::writer( const image& img )
: m_image(img)
{
} // targa::writer::writer()
/*----------------------------------------------------------------------------*/
/**
* \brief Constructor.
* \param img The image to save.
* \param f The file in which we save the data.
* \param rle Tell if we must encode the data.
*/
claw::graphic::targa::writer::writer
( const image& img, std::ostream& f, bool rle )
: m_image(img)
{
save(f, rle);
} // targa::writer::writer()
/*----------------------------------------------------------------------------*/
/**
* \brief Save the content of the image in a stream.
* \param os The stream in which we write.
* \param rle Tell if we must encode the data.
*/
void claw::graphic::targa::writer::save( std::ostream& os, bool rle ) const
{
header h( m_image.width(), m_image.height() );
if (rle)
h.image_type = rle_true_color;
else
h.image_type = true_color;
os.write( reinterpret_cast<char*>(&h), sizeof(header) );
if (rle)
save_rle_true_color(os);
else
save_true_color(os);
footer f;
os.write( reinterpret_cast<char*>(&f), sizeof(footer) );
} // targa::writer::save()
/*----------------------------------------------------------------------------*/
/**
* \brief Save the content of the image, without compression.
* \param os The stream in which we write.
*/
void claw::graphic::targa::writer::save_true_color( std::ostream& os ) const
{
file_output_buffer<rgba_pixel_8> output_buffer(os);
for (const_iterator it=m_image.begin(); it!=m_image.end(); ++it)
output_buffer.order_pixel_bytes(*it);
} // targa::writer::save_true_color()
/*----------------------------------------------------------------------------*/
/**
* \brief Save the content of the image, with RLE compression.
* \param os The stream in which we write.
*/
void claw::graphic::targa::writer::save_rle_true_color( std::ostream& os ) const
{
rle32_encoder encoder;
rle32_encoder::output_buffer_type output_buffer(os);
for ( unsigned int y=0; y!=m_image.height(); ++y )
encoder.encode( m_image[y].begin(), m_image[y].end(), output_buffer );
} // targa::writer::save_rle_true_color()
|