我在這裏發現了一些用於讀取/寫入圖像的C++代碼。我想改進它,這樣我可以旋轉等圖像。但是,一開始我有一些問題。當我寫圖像時,似乎我的讀取功能只讀取其中的一部分,因爲它只寫入一部分原始圖像。請看我的代碼和輸入,輸出圖像。讀取/寫入PPM圖像C++,新圖像中斷
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char **argv)
{
ifstream in;
in.open("OldImage.ppm", std::ios::binary);
ofstream out;
std::string magic_number;
int width, height, maxColVal, i, j;
in >> magic_number;
in >> width >> height >> maxColVal;
in.get();
char **image;
image = new char* [width];
for(i=0; i<width; i++)
{
image[i] = new char [height];
for(j=0; j<height; j++)
{
in >> image[i][j];
}
}
out.open("NewImage.ppm", std::ios::binary);
out << "P3" << "\n"
<< width << " "
<< height << "\n"
<< maxColVal << "\n"
;
for(i=0; i<width; i++)
{
for(j=0; j<height; j++)
{
out << image[i][j];
}
}
in.clear();
in.close();
out.clear();
out.close();
return 0;
}
輸入圖像:https://www.dropbox.com/s/c0103eyhxzimk0j/OldImage.ppm?dl=0
輸出圖像:https://www.dropbox.com/s/429i114c05gb8au/NewImage.ppm?dl=0
它沒有解決我的問題 – yak