• Skip to content
  • Skip to link menu
KDE 3.5 API Reference
  • KDE API Reference
  • API Reference
  • Sitemap
  • Contact Us
 

kviewshell

GScaler.h

Go to the documentation of this file.
00001 //C-  -*- C++ -*-
00002 //C- -------------------------------------------------------------------
00003 //C- DjVuLibre-3.5
00004 //C- Copyright (c) 2002  Leon Bottou and Yann Le Cun.
00005 //C- Copyright (c) 2001  AT&T
00006 //C-
00007 //C- This software is subject to, and may be distributed under, the
00008 //C- GNU General Public License, Version 2. The license should have
00009 //C- accompanied the software or you may obtain a copy of the license
00010 //C- from the Free Software Foundation at http://www.fsf.org .
00011 //C-
00012 //C- This program is distributed in the hope that it will be useful,
00013 //C- but WITHOUT ANY WARRANTY; without even the implied warranty of
00014 //C- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015 //C- GNU General Public License for more details.
00016 //C- 
00017 //C- DjVuLibre-3.5 is derived from the DjVu(r) Reference Library
00018 //C- distributed by Lizardtech Software.  On July 19th 2002, Lizardtech 
00019 //C- Software authorized us to replace the original DjVu(r) Reference 
00020 //C- Library notice by the following text (see doc/lizard2002.djvu):
00021 //C-
00022 //C-  ------------------------------------------------------------------
00023 //C- | DjVu (r) Reference Library (v. 3.5)
00024 //C- | Copyright (c) 1999-2001 LizardTech, Inc. All Rights Reserved.
00025 //C- | The DjVu Reference Library is protected by U.S. Pat. No.
00026 //C- | 6,058,214 and patents pending.
00027 //C- |
00028 //C- | This software is subject to, and may be distributed under, the
00029 //C- | GNU General Public License, Version 2. The license should have
00030 //C- | accompanied the software or you may obtain a copy of the license
00031 //C- | from the Free Software Foundation at http://www.fsf.org .
00032 //C- |
00033 //C- | The computer code originally released by LizardTech under this
00034 //C- | license and unmodified by other parties is deemed "the LIZARDTECH
00035 //C- | ORIGINAL CODE."  Subject to any third party intellectual property
00036 //C- | claims, LizardTech grants recipient a worldwide, royalty-free, 
00037 //C- | non-exclusive license to make, use, sell, or otherwise dispose of 
00038 //C- | the LIZARDTECH ORIGINAL CODE or of programs derived from the 
00039 //C- | LIZARDTECH ORIGINAL CODE in compliance with the terms of the GNU 
00040 //C- | General Public License.   This grant only confers the right to 
00041 //C- | infringe patent claims underlying the LIZARDTECH ORIGINAL CODE to 
00042 //C- | the extent such infringement is reasonably necessary to enable 
00043 //C- | recipient to make, have made, practice, sell, or otherwise dispose 
00044 //C- | of the LIZARDTECH ORIGINAL CODE (or portions thereof) and not to 
00045 //C- | any greater extent that may be necessary to utilize further 
00046 //C- | modifications or combinations.
00047 //C- |
00048 //C- | The LIZARDTECH ORIGINAL CODE is provided "AS IS" WITHOUT WARRANTY
00049 //C- | OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
00050 //C- | TO ANY WARRANTY OF NON-INFRINGEMENT, OR ANY IMPLIED WARRANTY OF
00051 //C- | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
00052 //C- +------------------------------------------------------------------
00053 // 
00054 // $Id: GScaler.h,v 1.9 2003/11/07 22:08:21 leonb Exp $
00055 // $Name: release_3_5_15 $
00056 
00057 #ifndef _GSCALER_H_
00058 #define _GSCALER_H_
00059 #ifdef HAVE_CONFIG_H
00060 #include "config.h"
00061 #endif
00062 #if NEED_GNUG_PRAGMAS
00063 # pragma interface
00064 #endif
00065 
00066 // From: Leon Bottou, 1/31/2002
00067 // Almost equal to my initial code.
00068 
00069 #include "GException.h"
00070 #include "GRect.h"
00071 #include "GBitmap.h"
00072 #include "GPixmap.h"
00073 
00074 #ifdef HAVE_NAMESPACES
00075 namespace DJVU {
00076 # ifdef NOT_DEFINED // Just to fool emacs c++ mode
00077 }
00078 #endif
00079 #endif
00080 
00081 
00103 
00104 
00117 class GScaler  : public GPEnabled
00118 {
00119 protected:  
00120   GScaler();
00121 public:
00122   virtual ~GScaler();
00126   void set_input_size(int w, int h);
00130   void set_output_size(int w, int h);
00134   void set_horz_ratio(int numer, int denom);
00138   void set_vert_ratio(int numer, int denom);
00145   void get_input_rect( const GRect &desired_output, GRect &required_input );
00146 protected:
00147   // The sizes
00148   int inw, inh;
00149   int xshift, yshift;
00150   int redw, redh;
00151   int outw, outh;
00152   // Fixed point coordinates
00153   int *vcoord;
00154   GPBuffer<int> gvcoord;
00155   int *hcoord;
00156   GPBuffer<int> ghcoord;
00157   // Helper
00158   void make_rectangles(const GRect &desired, GRect &red, GRect &inp);
00159 };
00160 
00161 
00162 
00185 class GBitmapScaler : public GScaler
00186 {
00187 protected:
00188   GBitmapScaler(void);
00189   GBitmapScaler(int inw, int inh, int outw, int outh);
00190 public:
00192   virtual ~GBitmapScaler();
00193 
00197   static GP<GBitmapScaler> create(void) {return new GBitmapScaler(); }
00198 
00203   static GP<GBitmapScaler> create(
00204     const int inw, const int inh, const int outw, const int outh)
00205   { return new GBitmapScaler(inw,inh,outw,outh); }
00206 
00217   void scale( const GRect &provided_input, const GBitmap &input,
00218               const GRect &desired_output, GBitmap &output );
00219 protected:
00220   // Helpers
00221   unsigned char *get_line(int, const GRect &, const GRect &, const GBitmap &);
00222   // Temporaries
00223   unsigned char *lbuffer;
00224   GPBuffer<unsigned char> glbuffer;
00225   unsigned char *conv;
00226   GPBuffer<unsigned char> gconv;
00227   unsigned char *p1;
00228   GPBuffer<unsigned char> gp1;
00229   unsigned char *p2;
00230   GPBuffer<unsigned char> gp2;
00231   int l1;
00232   int l2;
00233 };
00234 
00235 
00259 class GPixmapScaler : public GScaler
00260 {
00261 protected:
00262   GPixmapScaler(void);
00263   GPixmapScaler(int inw, int inh, int outw, int outh);
00264 public:
00266   virtual ~GPixmapScaler();
00267 
00271   static GP<GPixmapScaler> create(void) {return new GPixmapScaler(); }
00272 
00277   static GP<GPixmapScaler> create(
00278     const int inw, const int inh, const int outw, const int outh)
00279   { return new GPixmapScaler(inw,inh,outw,outh); }
00280 
00288   void scale( const GRect &provided_input, const GPixmap &input,
00289               const GRect &desired_output, GPixmap &output );
00290 protected:
00291   // Helpers
00292   GPixel *get_line(int, const GRect &, const GRect &, const GPixmap &);
00293   // Temporaries
00294   GPixel *lbuffer;
00295   GPBufferBase glbuffer;
00296   GPixel *p1;
00297   GPBufferBase gp1;
00298   GPixel *p2;
00299   GPBufferBase gp2;
00300   int    l1;
00301   int    l2;
00302 };
00303 
00304 
00305 
00306 
00307 
00309     
00310 
00311 
00312 
00313 // -------- END
00314 
00315 #ifdef HAVE_NAMESPACES
00316 }
00317 # ifndef NOT_USING_DJVU_NAMESPACE
00318 using namespace DJVU;
00319 # endif
00320 #endif
00321 #endif

kviewshell

Skip menu "kviewshell"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

API Reference

Skip menu "API Reference"
  • kviewshell
Generated for API Reference by doxygen 1.5.9
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal