/[cvs]/joko/Uni/BSArch/04/bmp_fractal.c
ViewVC logotype

Diff of /joko/Uni/BSArch/04/bmp_fractal.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by joko, Sat Jul 1 09:40:29 2006 UTC revision 1.4 by joko, Sat Jul 1 11:58:49 2006 UTC
# Line 4  Line 4 
4   *   *
5   * Uebung 4.4   * Uebung 4.4
6   */   */
7    
8    // $Id$
9    
10    #include <windows.h>
11  #include <stdio.h>  #include <stdio.h>
12  #include <errno.h>  #include <errno.h>
13    
# Line 11  Line 15 
15  #define YSIZE 500  #define YSIZE 500
16  #include "algorithm.h"  #include "algorithm.h"
17    
18    
19  /* BMP Header */  /* BMP Header */
20  unsigned char header[54]={0x42,0x4d,              // signature BM  unsigned char header[54]={0x42,0x4d,              // signature BM
21                              0xe6,0x71,0x0b,0x0,   // filesize 750054                              0xe6,0x71,0x0b,0x0,   // filesize 750054
# Line 29  unsigned char header[54]={0x42,0x4d, Line 34  unsigned char header[54]={0x42,0x4d,
34                              0x0,0x0,0x0,0x0       // number of important colors                              0x0,0x0,0x0,0x0       // number of important colors
35                          };                          };
36    
 int main(int argc, char *argv[])  
 {  
     FILE *fd;  
     int len,x,y;  
     char bgr[3];  
     short svalue;  
     int   lvalue;  
     //unsigned char header[54],*ptr=&header[0];  
         
     fd=fopen("test.bmp","wb+");  
     if(NULL==fd)  
     {  
         perror("open"); exit(1);  
     }  
37    
38      len=fwrite(header,1,sizeof(header),fd); //write header  void printErrorAndExit(const char *msg, DWORD err) {
39                LPSTR lpMsgBuf;
40      if(-1==len || len!=sizeof(header))          if(FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|
41      {                                    FORMAT_MESSAGE_FROM_SYSTEM |
42          perror("write");                                            FORMAT_MESSAGE_IGNORE_INSERTS,
43          exit(2);                                                  NULL,
44                                                    err,
45                                              MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
46                                              (LPTSTR) &lpMsgBuf,
47                                              0,
48                                              NULL ))
49            {
50                    fprintf(stderr,"%s : %s\n",msg,lpMsgBuf);
51                    LocalFree(lpMsgBuf);
52            }
53            else
54            {
55                    fprintf(stderr,"Error at FormatMesage: %d\n",err=GetLastError());
56            }
57            exit(err);
58    }
59    
60    
61    void write_blank_file(char *filename) {
62    
63      FILE *fd;
64      int len, i, img_size;
65    
66      // open file handle
67      fd = fopen(filename, "wb+");
68      if (NULL == fd) {
69        perror("open");
70        exit(1);
71      }
72    
73      // write bmp header to file
74      len = fwrite(header, 1, sizeof(header), fd);
75      
76      // error checking
77      if (-1 == len || len != sizeof(header)) {
78        perror("write");
79        exit(2);
80      }
81      
82      // write three null-bytes for each pixel to file to create a black picture
83      img_size = XSIZE * YSIZE;
84      for (i = 0; i < img_size; i++) {
85        len = fwrite("\0\0\0", 1, 3, fd);
86        if (-1 == len || len != 3) {
87          perror("write");
88          exit(4);
89      }      }
90          }
91      for(y=YSIZE-1;y>=0;y--)    
92      {    // close file handle
93              for(x=0;x<XSIZE;x++)    fclose(fd);
94              {  }
95                  getColorValuesAt(x * (2.0 / XSIZE) - 1.5, y * (2.0 / YSIZE) - 1.0,&bgr[2],&bgr[1],&bgr[0]);  
96                    
97                  len=fwrite(bgr,1,3,fd);  int main(int argc, char *argv[]) {
98                  if(-1==len || len!=3)  
99                  {    // MMF support
100                      perror("write");    DWORD err;
101                      exit(4);    HANDLE hMap, hFile;
102                  }    LPVOID pData;
103              }    unsigned char *pDataBitmap, *pDataBitmapCurrent;
104              /*no padding required because 1500%4 =0*/  
105      }            // fractal calculation
106      fclose(fd);    int x, y;
107          char bgr[3];
108      
109      
110      // create empty bmp-file (black background)
111      write_blank_file("test.bmp");
112    
113      /* open file for reading and writing */
114      hFile = CreateFile("test.bmp", GENERIC_WRITE|GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
115      if (INVALID_HANDLE_VALUE == hFile) {
116        err = GetLastError();
117        printErrorAndExit("Error at CreateFile",err);
118      }
119    
120      /* create the file mapping object */
121      hMap = CreateFileMapping(hFile, NULL, PAGE_READWRITE, 0, 0, NULL);
122      if (NULL == hMap) {
123        printErrorAndExit("Error at CreateFileMapping", GetLastError());
124      }
125      
126      /* map the whole file into the process context */
127      pData = MapViewOfFile(hMap, FILE_MAP_WRITE, 0, 0, 0);
128      if (NULL == pData) {
129        printErrorAndExit("Error at MapViewOfFile", GetLastError());
130      }
131    
132      
133      // calculate pointer to beginning of bitmap
134      pDataBitmap = (unsigned char *)((INT_PTR)pData + sizeof(header));
135      
136      // debugging
137      printf("pos. of file: %p\n", pData);
138      printf("pos. of bitmap: %p\n", pDataBitmap);
139    
140      // pointer to current pixel
141      pDataBitmapCurrent = pDataBitmap;
142    
143      /*
144      // turn bitmap into white wand
145      for (offset = 0; offset < 500 * 500 * 3; offset++) {
146        //pDataBitmap[offset] = 255;
147        *pDataBitmapCurrent = 255;
148        pDataBitmapCurrent++;
149      }
150      */
151    
152      // calculate fractal
153      for (y=YSIZE-1; y>=0; y--) {
154              for (x=0; x<XSIZE; x++) {
155                getColorValuesAt(x * (2.0 / XSIZE) - 1.5, y * (2.0 / YSIZE) - 1.0, &bgr[2], &bgr[1], &bgr[0]);
156                
157                // debugging
158                //printf("pointer: %p\n", pDataBitmapCurrent);
159                
160                // transfer color values to current pixel
161                pDataBitmapCurrent[0] = bgr[0];
162                pDataBitmapCurrent[1] = bgr[1];
163                pDataBitmapCurrent[2] = bgr[2];
164                
165                // move pointer to next pixel
166                pDataBitmapCurrent += 3;
167                
168              }
169              //no padding required because 1500%4 =0
170      }
171    
172      
173      /* write the result into the file */
174      if (!FlushViewOfFile(pData, 0)) {
175        err = GetLastError();
176        printErrorAndExit("Error at UnmapViewOfFile", err);
177      }
178    
179      /* remove the mapped file */
180      if (!UnmapViewOfFile(pData)) {
181        err = GetLastError();
182        printErrorAndExit("Error at UnmapViewOfFile", err);
183        exit(err);
184      }
185      
186      /* cleanup handles */
187      if (!CloseHandle(hMap) || !CloseHandle(hFile) ) {
188        err = GetLastError();
189        printErrorAndExit("Error at CloseHandle", err);
190      }
191    
192  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed