所以这个问题应该有 3 个参数(factor、infile 和 outfile)。该系数是 1 - 100 之间的正整数。然后程序会调整 infile 图像的大小。如果因子为 1:产生相同的图像。如果因子为 2:生成两倍大的图像。等等。输出图像应写入输出文件。
目前我的程序可以成功地对某些图像执行此操作,并且仅在某些比例因子上。
当我通过课程的 IDE 检查程序运行该问题时,我收到的结果是:
:) resize.c 和 bmp.h 存在。
:) resize.c 编译。
:) 当 n 为 1 时不调整small.bmp 的大小
:( 当 n 为 2 时正确调整小.bmp 的大小
像素数据的字节 34 不匹配。应为 0xff,而不是 0x00
:( 当 n 为 3 时正确调整小.bmp 的大小
像素数据的字节 48 不匹配。应为 0xff,而不是 0x00
:( 当 n 为 4 时正确调整小.bmp 的大小
像素数据的字节 62 不匹配。应为 0xff,而不是 0x00
:( 当 n 为 5 时正确调整小.bmp 的大小
像素数据的字节 80 不匹配。应为 0xff,而不是 0x00
:) 当 n 为 2 时正确调整 large.bmp 的大小
:) 当 n 为 2 时正确调整 smiley.bmp 的大小
// Copies a BMP file and resizes it
#include <stdio.h>
#include <stdlib.h>
#include "bmp.h"
int main(int argc, char *argv[])
{
// ensure proper usage
if (argc != 4)
{
fprintf(stderr, "Usage: ./resize factor infile outfile\n");
return 1;
}
// Check argument 1 to see if integer within acceptable range
int factor = atoi(argv[1]);
if (factor <= 0 || factor > 100)
{
fprintf(stderr, "Must be a positive integer greater than 0 and equal or less than 100\n");
return 1;
}
// remember filenames
char *infile = argv[2];
char *outfile = argv[3];
// open input file
FILE *inptr = fopen(infile, "r");
if (inptr == NULL)
{
fprintf(stderr, "Could not open %s.\n", infile);
return 2;
}
// open output file
FILE *outptr = fopen(outfile, "w");
if (outptr == NULL)
{
fclose(inptr);
fprintf(stderr, "Could not create %s.\n", outfile);
return 3;
}
// read infile's BITMAPFILEHEADER
BITMAPFILEHEADER bf;
BITMAPFILEHEADER bf_New;
fread(&bf, sizeof(BITMAPFILEHEADER), 1, inptr);
bf_New = bf;
// read infile's BITMAPINFOHEADER
BITMAPINFOHEADER bi;
BITMAPINFOHEADER bi_New;
fread(&bi, sizeof(BITMAPINFOHEADER), 1, inptr);
bi_New = bi;
// ensure infile is (likely) a 24-bit uncompressed BMP 4.0
if (bf.bfType != 0x4d42 || bf.bfOffBits != 54 || bi.biSize != 40 ||
bi.biBitCount != 24 || bi.biCompression != 0)
{
fclose(outptr);
fclose(inptr);
fprintf(stderr, "Unsupported file format.\n");
return 4;
}
// set new height and width of BMP
bi_New.biHeight = bi.biHeight * factor;
bi_New.biWidth = bi.biWidth * factor;
// calculate padding for old file and new file
int padding = (4 - (bi.biWidth * sizeof(RGBTRIPLE)) % 4) % 4;
int padding_New = (4 - (bi_New.biWidth * sizeof(RGBTRIPLE)) % 4) % 4;
// set the file size for the new file
bi_New.biSizeImage = (bi_New.biWidth * sizeof(RGBTRIPLE) + padding_New) * abs(bi_New.biHeight);
bf_New.bfSize = bi_New.biSizeImage + sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER);
// write outfile's BITMAPFILEHEADER
fwrite(&bf_New, sizeof(BITMAPFILEHEADER), 1, outptr);
// write outfile's BITMAPINFOHEADER
fwrite(&bi_New, sizeof(BITMAPINFOHEADER), 1, outptr);
// iterate over infile's scanlines
for (int i = 0, biHeight = abs(bi.biHeight); i < biHeight; i++)
{
// iterate factor times
for (int k = 0; k < factor; k++)
{
// iterate over pixels in scanline
for (int j = 0; j < bi.biWidth; j++)
{
// temporary storage
RGBTRIPLE triple;
// read RGB triple from infile
fread(&triple, sizeof(RGBTRIPLE), 1, inptr);
// iterate over horizontal pixels
for (int l = 0; l < factor; l++)
{
// write RGB triple to outfile iterate the same pixel by factor times
fwrite(&triple, sizeof(RGBTRIPLE), 1, outptr);
}
}
// skip over padding, if any
fseek(inptr, padding, SEEK_CUR);
// add new padding
for (int m = 0; m < padding_New; m++)
{
fputc(0x00, outptr);
}
// seek back to the beginning of row in input file, but not after iteration of printing
if (k + 1 < factor )
{
fseek(inptr, -(bi.biWidth * sizeof(RGBTRIPLE)), SEEK_CUR);
}
}
}
// close infile
fclose(inptr);
// close outfile
fclose(outptr);
// success
return 0;
}
我找到了我希望的错误所在..保存第一行像素后,你寻找填充宽度到新位置..然后寻找三元组的宽度*大小,其中不包括填充..我想你可以像这样分开循环..对于因子-1次你向后查找,对于你在没有填充的情况下打印的内容..最后一次你用填充向前查找..这样你就准备好开始新的一行了...