AVA
AVA

Reputation: 2558

How to add text to an image using package, Images in Julia?

I would like to add text to an image using Images in julia.
I googled but results are not much helpful in this regard!
Please guide me adding text at specified co-ordintes to an image using Images in julia.

Upvotes: 0

Views: 606

Answers (1)

max xilian
max xilian

Reputation: 623

I am not aware of a solution using only Images, but you can do something like this with Plots and Images

using Plots, Images
img = load("test.png")
plot(img)
annotate!(1.,1.,text("test",20))

Upvotes: 1

Related Questions