I’m trying to save a simple 100x100 heatmap as a pdf. When I do, the heatmap ends up looking blurry in the saved image. Just doing
heatmap(rand(100,100))
savefig("stuff.pdf")
saves a pdf with the axis labels, colorbar, etc looking fine but the heatmap itself blurry. Doing savefig("stuff.png")
also turns out fine, but I need it as a vectorized image.
Hoping this is a quick fix, thanks in advance.