PlotlyJS backend via Plots.jl very slow with images

I was trying to do a plot with a basic image raster as a background when I stumbled into an issue, plotlyJS is painfully slow when using raster images, making it very hard to work with.

Minimal example:

using FileIO: load
using Downloads: download
using Plots

img = load(download("https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg"))

plotlyjs()
plot(img)