根据C ++

时间:2016-12-21 15:39:11

标签: c++

我有一个程序读取pmm图像文件并打印ppm图像的宽度,高度和平均颜色。当用户给出类似的参数时执行此操作:> main photo1.ppm。用户没有提供任何内容,然后程序要求读取文件名。有什么方法可以在用户给出参数时将图像复制到新图像:> main photo1.ppm -o newimage.ppm?这是我到目前为止所做的:

int main() {
char fname[50];
cout << "Please enter the file name: ";

//Reads the file and print its data
}

0 个答案:

没有答案