使用graphics.h的Windows错误

时间:2015-09-22 14:49:09

标签: c++ c windows graphics bgi

我正在尝试使用C / C ++的graphics.h库来获取某些图像的像素值。程序编译时没有任何错误或警告,但是当我尝试执行它时,会打开一个窗口,显示以下消息:" version2.exe遇到问题需要关闭。对于不便之处我们感到抱歉。

我的代码:

#include <graphics.h>
#include <stdio.h>

/* Macros to set important values for
*  size and number of images
*/
#define IMAGES 9
#define WIDTH 200
#define HEIGTH 225

/* Receives the image number and load it using
 * readimagefile() function from BGI libary.
 */
void loadImage(int imageNumber);

int main(int argc, char const *argv[])
{
  int row, column, image;
  int red[HEIGTH][WIDTH][IMAGES], green[HEIGTH][WIDTH][IMAGES], blue[HEIGTH][WIDTH][IMAGES];
  int pixelValue;
  int finalWindow, currentWindow;


  for (image = 0; image < IMAGES; ++image)
  {
    currentWindow = initwindow(WIDTH, HEIGTH, "current"); // creates window to receive image
    setcurrentwindow(currentWindow); // set recent window as the current window
    loadImage(image);

    for (row = 0; row < HEIGTH; ++row)
    {
      for (column = 0; column < WIDTH; ++column)
      {
          pixelValue = getpixel(row, column);
          green[column][row][image] = GREEN_VALUE(pixelValue);
          red[column][row][image] = RED_VALUE(pixelValue);
          blue[column][row][image]= BLUE_VALUE(pixelValue);
      }
    }
  }

  getch();

  return 0;

}

void loadImage(int imageNumber)
{
 char str[5];
 sprintf(str, "%i.jpg", imageNumber);
 readimagefile(str, 0, 0, WIDTH, HEIGTH);
}

2 个答案:

答案 0 :(得分:0)

graphics.h是指Borland的MS DOS图形库&#34; BGI&#34;。它仅受Borland DOS编译器支持,并且不能移植到另一个操作系统,除了Windows 95/98仍然支持DOS的旧版本。

答案 1 :(得分:0)

graphics.h是一个由Borlando编译器(例如turbo c)使用的库,在20世纪90年代,现在这个库非常过时,并且不受主要编译器的支持。而不是graphics.h,你可以使用你定义的图形库函数compiler.graphic函数因编译器与编译器不同而不同,因为它们不是标准c语言的一部分,它们由不同的编译器实现不同