scaled_bitmap.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * scaled_bitmap.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 576c96f12c2ca1598dc4c965e7273635dbc3ee11 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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.         for( int y = 0; y < height; y++ )
  43.         {
  44.             int dX = incX1 - (width-1);
  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.         for( int y = 0; y < height; y++ )
  69.         {
  70.             int dX = incX1 - (srcWidth-1);
  71.             uint32_t yOffset = ((y * srcHeight) / height) * srcWidth;
  72.             pSrcData = ((uint32_t*)rBitmap.getData()) + yOffset;
  73.             if (width == 1)
  74.             {
  75.                 *(pDestData++) = *pSrcData;
  76.             }
  77.             else for( int x = 0; x < width; x++ )
  78.             {
  79.                 *(pDestData++) = *(pSrcData++);
  80.                 while( dX <= 0 )
  81.                 {
  82.                     dX += incX1;
  83.                     pSrcData++;
  84.                 }
  85.                 dX += incX2;
  86.             }
  87.         }
  88.     }
  89. }
  90. ScaledBitmap::~ScaledBitmap()
  91. {
  92.     if( m_pData )
  93.     {
  94.         delete[] m_pData;
  95.     }
  96. }