image.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:5k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1993-1997, Silicon Graphics, Inc.
  3.  * ALL RIGHTS RESERVED 
  4.  * Permission to use, copy, modify, and distribute this software for 
  5.  * any purpose and without fee is hereby granted, provided that the above
  6.  * copyright notice appear in all copies and that both the copyright notice
  7.  * and this permission notice appear in supporting documentation, and that 
  8.  * the name of Silicon Graphics, Inc. not be used in advertising
  9.  * or publicity pertaining to distribution of the software without specific,
  10.  * written prior permission. 
  11.  *
  12.  * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
  13.  * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
  14.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
  15.  * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
  16.  * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
  17.  * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
  18.  * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
  19.  * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
  20.  * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
  21.  * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
  22.  * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
  23.  * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
  24.  * 
  25.  * US Government Users Restricted Rights 
  26.  * Use, duplication, or disclosure by the Government is subject to
  27.  * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
  28.  * (c)(1)(ii) of the Rights in Technical Data and Computer Software
  29.  * clause at DFARS 252.227-7013 and/or in similar or successor
  30.  * clauses in the FAR or the DOD or NASA FAR Supplement.
  31.  * Unpublished-- rights reserved under the copyright laws of the
  32.  * United States.  Contractor/manufacturer is Silicon Graphics,
  33.  * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
  34.  *
  35.  * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  36.  */
  37. /*  image.c
  38.  *  This program demonstrates drawing pixels and shows the effect
  39.  *  of glDrawPixels(), glCopyPixels(), and glPixelZoom().
  40.  *  Interaction: moving the mouse while pressing the mouse button
  41.  *  will copy the image in the lower-left corner of the window
  42.  *  to the mouse position, using the current pixel zoom factors.
  43.  *  There is no attempt to prevent you from drawing over the original
  44.  *  image.  If you press the 'r' key, the original image and zoom
  45.  *  factors are reset.  If you press the 'z' or 'Z' keys, you change
  46.  *  the zoom factors.
  47.  */
  48. #include <GL/glut.h>
  49. #include <stdlib.h>
  50. #include <stdio.h>
  51. /* Create checkerboard image */
  52. #define checkImageWidth 64
  53. #define checkImageHeight 64
  54. GLubyte checkImage[checkImageHeight][checkImageWidth][3];
  55. static GLdouble zoomFactor = 1.0;
  56. static GLint height;
  57. void makeCheckImage(void)
  58. {
  59.    int i, j, c;
  60.     
  61.    for (i = 0; i < checkImageHeight; i++) {
  62.       for (j = 0; j < checkImageWidth; j++) {
  63.          c = ((((i&0x8)==0)^((j&0x8)==0)))*255;
  64.          checkImage[i][j][0] = (GLubyte) c;
  65.          checkImage[i][j][1] = (GLubyte) c;
  66.          checkImage[i][j][2] = (GLubyte) c;
  67.       }
  68.    }
  69. }
  70. void init(void)
  71. {    
  72.    glClearColor (0.0, 0.0, 0.0, 0.0);
  73.    glShadeModel(GL_FLAT);
  74.    makeCheckImage();
  75.    glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
  76. }
  77. void display(void)
  78. {
  79.    glClear(GL_COLOR_BUFFER_BIT);
  80.    glRasterPos2i(0, 0);
  81.    glDrawPixels(checkImageWidth, checkImageHeight, GL_RGB, 
  82.                 GL_UNSIGNED_BYTE, checkImage);
  83.    glFlush();
  84. }
  85. void reshape(int w, int h)
  86. {
  87.    glViewport(0, 0, (GLsizei) w, (GLsizei) h);
  88.    height = (GLint) h;
  89.    glMatrixMode(GL_PROJECTION);
  90.    glLoadIdentity();
  91.    gluOrtho2D(0.0, (GLdouble) w, 0.0, (GLdouble) h);
  92.    glMatrixMode(GL_MODELVIEW);
  93.    glLoadIdentity();
  94. }
  95. void motion(int x, int y)
  96. {
  97.    static GLint screeny;
  98.    
  99.    screeny = height - (GLint) y;
  100.    glRasterPos2i (x, screeny);
  101.    glPixelZoom (zoomFactor, zoomFactor);
  102.    glCopyPixels (0, 0, checkImageWidth, checkImageHeight, GL_COLOR);
  103.    glPixelZoom (1.0, 1.0);
  104.    glFlush ();
  105. }
  106. /* ARGSUSED1 */
  107. void keyboard(unsigned char key, int x, int y)
  108. {
  109.    switch (key) {
  110.       case 'r':
  111.       case 'R':
  112.          zoomFactor = 1.0;
  113.          glutPostRedisplay();
  114.          printf ("zoomFactor reset to 1.0n");
  115.          break;
  116.       case 'z':
  117.          zoomFactor += 0.5;
  118.          if (zoomFactor >= 3.0) 
  119.             zoomFactor = 3.0;
  120.          printf ("zoomFactor is now %4.1fn", zoomFactor);
  121.          break;
  122.       case 'Z':
  123.          zoomFactor -= 0.5;
  124.          if (zoomFactor <= 0.5) 
  125.             zoomFactor = 0.5;
  126.          printf ("zoomFactor is now %4.1fn", zoomFactor);
  127.          break;
  128.       case 27:
  129.          exit(0);
  130.          break;
  131.       default:
  132.          break;
  133.    }
  134. }
  135. int main(int argc, char** argv)
  136. {
  137.    glutInit(&argc, argv);
  138.    glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
  139.    glutInitWindowSize(250, 250);
  140.    glutInitWindowPosition(100, 100);
  141.    glutCreateWindow(argv[0]);
  142.    init();
  143.    glutDisplayFunc(display);
  144.    glutReshapeFunc(reshape);
  145.    glutKeyboardFunc(keyboard);
  146.    glutMotionFunc(motion);
  147.    glutMainLoop();
  148.    return 0; 
  149. }