Nothing
test_that("raw_spec detects missing specs", {
im <- as.raw(1:10)
write_png(im, raw_spec = list(bits = 8, height = 2, width = 5, depth = 1))
expect_error(
write_png(im, raw_spec = list(bits = 8, height = 2, width = 5, greg = 1)),
"depth"
)
expect_error(
write_png(im, raw_spec = list(greg = 8, height = 2, width = 5, depth = 1)),
"bits"
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.