---
title: INKAVERSE
description: >
INKAVERSE sticker.
vignette: >
%\VignetteIndexEntry{INKAVERSE}
%\VignetteEncoding{UTF-8}
%\VignetteEngine{quarto::html}
knitr:
opts_chunk:
collapse: true
comment: '#>'
echo: true
warning: false
message: false
editor_options:
chunk_output_type: console
---
```{r setup, include = FALSE}
source("https://raw.githubusercontent.com/Flavjack/inti/master/pkgdown/favicon/docs.r")
```
More information from INKAVERSE project:
# Sticker design
In the layer `include_image(opts = "magick package")` you can add different arguments and combine them using asterisk (`*`) or `list("magick function")`.
Options available in [magick package](https://CRAN.R-project.org/package=magick)
> Select different panel color for your sticker (i.e. `include_shape(panel_color = "color")`).
# Package setup
```{r}
library(huito)
font <- c("Permanent Marker")
huito_fonts(font)
```
# Sticker design
```{r}
label <- label_layout(size = c(5.08, 5.08)
, border_color = NA
, border_width = 0
, background = "#ffe701"
) %>%
include_image(value = "logo_inkaverse.jpg"
, size = c(3.97, 3.97)
, position = c(2.55, 2.06)
) %>%
include_shape(size = 5.08
, border_width = 3
, border_color = "#505456"
, position = c(2.54, 2.54)
, panel_color = "blue"
) %>%
include_text(value = "inkaverse.com"
, size = 6
, position = c(3.6, 0.75)
, angle = 30
, color = "white"
, font = font[1]
)
```
## Preview mode
```{r}
label %>%
label_print(mode = "preview")
```
## Complete mode
The final file is exported in `pdf` format.
```{r}
sticker <- label %>%
label_print(filename = "INKAVERSE"
, margin = 0
, paper = c(5.5, 5.5)
, mode = "complete"
)
```