11 lines
158 B
C++
Executable file
11 lines
158 B
C++
Executable file
#include <iostream>
|
|
#include "bmp.h"
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
Bmp image(512,512,NOIR);
|
|
image.write("test.bmp");
|
|
return 0;
|
|
}
|