I'm trying to export an image to a relatively large size (2048x2048), but any size over ~1900 returns black. This is an example:
Export["image.png",
DensityPlot[x^2 - y^2, {x, -2, 2}, {y, -2, 2},
ColorFunction -> "PigeonTones", Frame -> None,
PlotRangePadding -> 0], ImageSize -> 2048]
This (or maybe an even higher) resolution would be ideal, but it returns a black image. The problem is not from Export, but some way the Graphic is interpreted.
I'm pretty sure I've this issue with methods other than DensityPlot, but this is a case that I can surely support with evidence.
I've also tried specifying ImageSize within DensityPlot, to no avail.
Thanks in advance for any assistance you may provide!
-Lucas