/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef INCLUDED_BASEBMP_SCALEIMAGE_HXX #define INCLUDED_BASEBMP_SCALEIMAGE_HXX #include #include #include #include #include namespace basebmp { template< class SourceIter, class SourceAcc, class DestIter, class DestAcc > void scaleLine( SourceIter s_begin, SourceIter s_end, SourceAcc s_acc, DestIter d_begin, DestIter d_end, DestAcc d_acc ) { const int src_width = s_end - s_begin; const int dest_width = d_end - d_begin; OSL_ASSERT( src_width > 0 && dest_width > 0 ); if( src_width >= dest_width ) { // shrink int rem = 0; while( s_begin != s_end ) { if( rem >= 0 ) { d_acc.set( s_acc(s_begin), d_begin ); rem -= src_width; ++d_begin; } rem += dest_width; ++s_begin; } } else { // enlarge int rem = -dest_width; while( d_begin != d_end ) { if( rem >= 0 ) { rem -= dest_width; ++s_begin; } d_acc.set( s_acc(s_begin), d_begin ); rem += src_width; ++d_begin; } } } /** Scale an image using zero order interpolation (pixel replication) Source and destination range must be at least one pixel wide and high. @param s_begin Start iterator for source image @param s_end End iterator for source image @param s_acc Source accessor @param d_begin Start iterator for destination image @param d_end End iterator for destination image @param d_acc Destination accessor @param bMustCopy When true, scaleImage always copies source, even when doing 1:1 copy */ template< class SourceIter, class SourceAcc, class DestIter, class DestAcc > void scaleImage( SourceIter s_begin, SourceIter s_end, SourceAcc s_acc, DestIter d_begin, DestIter d_end, DestAcc d_acc, bool bMustCopy=false ) { const int src_width ( s_end.x - s_begin.x ); const int src_height( s_end.y - s_begin.y ); const int dest_width ( d_end.x - d_begin.x ); const int dest_height( d_end.y - d_begin.y ); if( !bMustCopy && src_width == dest_width && src_height == dest_height ) { // no scaling involved, can simply copy vigra::copyImage( s_begin, s_end, s_acc, d_begin, d_acc ); return; } typedef vigra::BasicImage TmpImage; typedef typename TmpImage::traverser TmpImageIter; TmpImage tmp_image(src_width, dest_height); TmpImageIter t_begin = tmp_image.upperLeft(); // scale in y direction for( int x=0; x inline void scaleImage( vigra::triple const& src, vigra::triple const& dst, bool bMustCopy=false ) { scaleImage(src.first,src.second,src.third, dst.first,dst.second,dst.third, bMustCopy); } } #endif /* INCLUDED_BASEBMP_SCALEIMAGE_HXX */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */