route: "/generate" POST body: Json Json Contents "type" (string) : | "mandel" (string) | "julia" (string) | "ship" (string) | "shipJulia" (string) | "noise" (string) if "type" : "mandel" "rc" (string) : (double) << Real Center "ic" (string) : (double) << Imaginary Center "zf" (string) : (double) << Zoom Factor "it" (string) : (double) << Iterations <= 5000 if "type" : "julia" "rc" (string) : (double) << Real Center "ic" (string) : (double) << Imaginary Center "jr" (string) : (double) << Julia Imaginary Center "ji" (string) : (double) << Julia Imaginary Center "zf" (string) : (double) << Zoom Factor "it" (string) : (double) << Iterations <= 5000 if "type" : "ship" "rc" (string) : (double) << Real Center "ic" (string) : (double) << Imaginary Center "zf" (string) : (double) << Zoom Factor "it" (string) : (double) << Iterations <= 5000 if "type" : "shipJulia" "rc" (string) : (double) << Real Center "ic" (string) : (double) << Imaginary Center "jr" (string) : (double) << Julia Imaginary Center "ji" (string) : (double) << Julia Imaginary Center "zf" (string) : (double) << Zoom Factor "it" (string) : (double) << Iterations <= 5000 if "type" : "mandel" "leftRed" (string) : (int) << Lower Red Bound "rightRed" (string) : (int) << Upper Red Bound "leftGreen" (string) : (int) << Lower Green Bound "rightGreen" (string) : (int) << Upper Green Bound "leftBlue" (string) : (int) << Lower Blue Bound "rightBlue" (string) : (int) << Upper Blue Bound Example Json Body: { "type": "mandel", "rc": -0.743643887037151, "ic": 0.131825904205330, "zf": 1, "it": 1000 } ~ ~ ~ ~ ~ ~ ~ ~ ~ ~