Итак, у меня была одна большая функция, которая работала. Тогда я решил изменить это, и теперь я просто распечатываю черный квадрат. Я прилагаю свой код, чтобы посмотреть, поймет ли кто-нибудь, что происходит. Эти три функции, где когда-то большая функция:
Функция 1
int
readpgm (pgm_type * header, char input[80], char output[80])
{
FILE *instream;
int size, read;
instream = fopen (input, "rb");
fileChecker (instream);
fscanf (instream, "%2s%d%d%d", header->filetype, &header->width,
&header->height, &header->maxgray);
if (!header->filetype[0] == 'P' || !header->filetype[1] == '5') {
fatal ("Incorrect Type");
}
size = header->width * header->height;
header->p = malloc (size * sizeof (char));
read = fread (header->p, 1, size, instream);
if (read != size) {
fatal ("Incorrect Size");
}
return size;
}
void
crop (pgm_type * header, char output[80])
{
printf ("Height: %i, Width: %i, Total pixels: %i \n", header->height,
header->width, header->height * header->width);
int temp, y1, y2, x1, x2, wide, high;
printf ("Please Enter x1 y1 x2 y2 \n");
scanf ("%i %i %i %i", &x1, &y1, &x2, &y2);
if (y1 > y2) {
temp = y1;
y1 = y2;
y2 = temp;
}
if (x1 > x2) {
temp = x1;
x1 = x2;
x2 = temp;
}
wide = x2 - x1 + 1;
high = y2 - y1 + 1;
printFile (wide, high, x1, x2, y1, y1, header, output);
}
void
printFile (int wide, int high, int x1, int x2, int y1, int y2,
pgm_type * header, char output[80])
{
FILE *outstream;
outstream = fopen (output, "wb");
fileChecker (outstream);
fprintf (outstream, "%2s\n%i %i\n%i\n", header->filetype, wide, high,
header->maxgray);
pixel image[header->height][header->width];
pixel *pix = malloc ((wide * high) * sizeof (char));
int a = 0;
for (int b = 0; b < header->height; ++b) {
for (int c = 0; c < header->width; ++c) {
image[b][c] = header->p[a];
++a;
}
}
int k = 0;
for (int i = y1; i <= y2; ++i) {
for (int j = x1; j <= x2; ++j) {
pix[k] = image[i][j];
++k;
}
}
fwrite (pix, 1, (wide * high) * sizeof (pixel), outstream);
free (pix);
fclose (outstream);
}
Первые две функции - это вызов в main.