명함은 pagedown
기능을 이용하여 구현할 수 있다. 크게 3가지 기능이 명함제작에 필요한데 로고, 키-값으로 구성된 명함 정보, 그리고 명함 외양(css)으로 나눌 수 있다.
이를 위해 먼저 로고를 제작해보자.
useR! 2021 Korea 로고 제작 참고하여 로고를 60x250 크기로 제작한다.
library(tidyverse)
library(magick)
<- image_read("fig/noun_Gwanghwamun Gate_260270.png")
gwanghwamun_raw
<- gwanghwamun_raw %>%
gwanghwamun image_crop(geometry = "700x500")
## 로고 캔바스 -------------------------
<- image_blank(width = 250, height= 60, color = "white", pseudo_image = "", defines = NULL)
logo_blank
## 광화문 로고 크기조정 -------------------------
<- image_crop(gwanghwamun, geometry = "530x350+95+105") %>%
gwanghwamun_resized image_scale("60")
## useR! Korea logo -------------------------
<- logo_blank %>%
R_user_group image_annotate("R 사용자회", size = 37, location = "+75+10", font = "NanumBarunGothic YetHangul") %>%
image_composite(gwanghwamun_resized, offset = "+10+5")
<- image_transparent(R_user_group, 'white')
R_user_group
R_user_group
image_write(R_user_group, path ="fig/R_user_group.png", format = "png")
image_write(R_user_group, path ="fig/R_user_group.svg", format = "svg")
데이터 과학자 이광춘 저작
kwangchun.lee.7@gmail.com