#include //画像ファイルの色を表したいenum enum Colors { RED = 0, GREEN, BLUE, ALPHA, }; //enum Renger //{ // RED, BULE, PINK, GREEN, YELLOW, //}; const int ImageWidth = 600; const int ImageHeight = 400; //画像のピクセルを表す配列(3次元怖い) unsigned char ColorImage[ImageWidth][ImageHeight][4]; int main() { //画像の色を黒で初期化 for(auto j=0;j