How do we add a title on an image loaded, using Images package in Julia?
Here are some clues: https://github.com/JuliaImages/ImageDraw.jl/issues/17
Plots.jl can be used together with Images.jl:
using TestImages, Plots; gr()
rgb_image = testimage("moonsurface.tiff")
Plots.plot(rgb_image, framestyle=:none, title="Fly Me to The Moon")


