library(webmorphR)
set.seed(8675309)
# make unstandardised images
s <- webmorphR.stim::load_stim_composite()
bg <- patch(s, width = 1)
rot <- s |> rotate(seq(-5, 5, length.out = 10) |> sample(), fill = bg)
res <- rot |> resize(seq(.8, 1, length.out = 10) |> sample())
crp <- res |> crop(seq(.8, 1, length.out = 5),
seq(1, .8, length.out = 5),
y_off = c(0, .05)) |>
resize(0.5)
crp[[5]] <- crop(crp[5], 1, .9, y_off = .1)[[1]]
crp[[10]] <- crop(crp[10], .85, x_off = 0)[[1]]
lbls <- paste0(width(crp), " x ", height(crp))
crp |> pad(1, fill = "black") |>
to_size(keep_rels = TRUE) |>
pad(100, 0, 0, 0) |>
label(lbls) |>
plot(maxwidth = 600)
write_stim(crp, "inst/extdata/unstandard",
format = "jpg", quality = 75,
overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.