Adding a title to image?

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

1 Like

Normally I’m doing this with “annotations”. With "annotations " you can place texts
in every position for every purpose.
Example:

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")

moonsurface_with_title

5 Likes

One more possibility:

3 Likes