У меня проблема с моей программой, неправильно изменяющей размер изображения - PullRequest
0 голосов
/ 27 июня 2019

поэтому предполагается, что код принимает 3 аргумента и выводит изображение, масштабированное по указанному коэффициенту от 1 до 100, в настоящее время я получаю изображение, которое не соответствует ожидаемому результату Я собираюсь сказать, что проблема где-то в циклах, или, возможно, в новом размере файла я получаю эти проблемы, даже когда фактор установлен на 1


    // 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
    bf_New.bfSize = 54 + (bi_New.biWidth * sizeof(RGBTRIPLE) + padding_New) * abs(bi_New.biHeight);
    bi_New.biSizeImage = bf_New.bfSize - 54;


    // 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 over pixels in scanline
        for (int j = 0; j < bi.biWidth; j++)
            {
            // intialise counter to print rows by amount of the factor
            int counter = 0;

            // while loop to keep continuing until factor is less than or equal to counter
            while (counter < factor)
                {
                // iterate over pixels in scanline
                for(int k = 0; k < bi.biWidth; k++)
                    {
                    // temporary storage
                    RGBTRIPLE triple;

                    // declare pixel counter
                    int pixel_counter = 0;

                    // read RGB triple from infile
                    fread(&triple, sizeof(RGBTRIPLE), 1, inptr);

                    // write RGB triple to outfile and use a while loop to itterate the same pixel by factor times
                    while (pixel_counter < factor)
                        {
                        fwrite(&triple, sizeof(RGBTRIPLE), 1, outptr);
                        pixel_counter++;
                        }
                    }
                // add new padding
                for (int l = 0; l < padding_New; l++)
                    {
                    fputc(0x00, outptr);
                    }

                // seek back to the beginning of row in input file, but not after iteration of printing
                if (counter < (factor - 1))
                    {
                    fseek(inptr, -(bi.biWidth * sizeof(RGBTRIPLE)), SEEK_CUR);
                    }
                counter++;
                }
            }

        // skip over padding, if any
        fseek(inptr, padding, SEEK_CUR);
        }

    // close infile
    fclose(inptr);

    // close outfile
    fclose(outptr);

    // success
    return 0;
    }

1 Ответ

0 голосов
/ 27 июня 2019

Петля j является виновником. Программа будет обрабатывать каждую строку сканирования width * factor раза вместо factor раз. Это добавляет дополнительные width итерации к каждой линии сканирования.

...