Using the following code, I plot and annotate an image. But I get a white and disproportionate border around my image. Why? And how can I ask plot not to show that border?
using TestImages
using Plots
img = testimage("mandrill")
plot(img, axis=([], false))
Plots.annotate!(250.,300.,Plots.text("1",20,20))
Plots.annotate!(250.,400.,Plots.text("2",20,20))