scaled_bitmap.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * scaled_bitmap.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: scaled_bitmap.cpp 8899 2004-10-03 14:11:12Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include "scaled_bitmap.hpp"
  25. ScaledBitmap::ScaledBitmap( intf_thread_t *pIntf, const GenericBitmap &rBitmap,
  26.                             int width, int height ):
  27.     GenericBitmap( pIntf ), m_width( width ), m_height( height )
  28. {
  29.     // XXX We should check that width and height are positive...
  30.     // Allocate memory for the buffer
  31.     m_pData = new uint8_t[m_height * m_width * 4];
  32.     int srcWidth = rBitmap.getWidth();
  33.     int srcHeight = rBitmap.getHeight();
  34.     uint32_t *pSrcData = (uint32_t*)rBitmap.getData();
  35.     uint32_t *pDestData = (uint32_t*)m_pData;
  36.     // Algorithm for horizontal enlargement
  37.     if( width > srcWidth )
  38.     {
  39.         // Decision variables for Bresenham algorithm
  40.         int incX1 = 2 * (srcWidth-1);
  41.         int incX2 = incX1 - 2 * (width-1);
  42.         int dX = incX1 - (width-1);
  43.         for( int y = 0; y < height; y++ )
  44.         {
  45.             uint32_t yOffset = ((y * srcHeight) / height) * srcWidth;
  46.             pSrcData = ((uint32_t*)rBitmap.getData()) + yOffset;
  47.             for( int x = 0; x < width; x++ )
  48.             {
  49.                 *(pDestData++) = *pSrcData;
  50.                 if( dX <= 0 )
  51.                 {
  52.                     dX += incX1;
  53.                 }
  54.                 else
  55.                 {
  56.                     dX += incX2;
  57.                     pSrcData++;
  58.                 }
  59.             }
  60.         }
  61.     }
  62.     // Algorithm for horizontal reduction
  63.     else
  64.     {
  65.         // Decision variables for Bresenham algorithm
  66.         int incX1 = 2 * (width-1);
  67.         int incX2 = incX1 - 2 * (srcWidth-1);
  68.         int dX = incX1 - (srcWidth-1);
  69.         for( int y = 0; y < height; y++ )
  70.         {
  71.             uint32_t yOffset = ((y * srcHeight) / height) * srcWidth;
  72.             pSrcData = ((uint32_t*)rBitmap.getData()) + yOffset;
  73.             for( int x = 0; x < width; x++ )
  74.             {
  75.                 *(pDestData++) = *(pSrcData++);
  76.                 while( dX <= 0 )
  77.                 {
  78.                     dX += incX1;
  79.                     pSrcData++;
  80.                 }
  81.                 dX += incX2;
  82.             }
  83.         }
  84.     }
  85. }
  86. ScaledBitmap::~ScaledBitmap()
  87. {
  88.     if( m_pData )
  89.     {
  90.         delete[] m_pData;
  91.     }
  92. }