R
r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#---------------------------------------
# BY Jesus Eduardo CanulK
#
# If you like please upvote and comment
#
# 🌍🌎🌏🏔️🗾🏔️🌏🌎🌍
#
# ⚽⚾🏀🏐🏈🏉🎾🎳🏏🏑🏒🏓🏸🥊
# 🥋🥅⛳⛸️🎣🎽🎿🛷🥌🎯
#
#-----—---------------------------------
#Estableciendo estilos para la visualizacion del texto html
cat("<style>body{background-color:#f8f8f8;text-align:center;color:#000;}img{border:2px solid #000}</style>")
#--------------------------------------
#Desarrollando las funciones base
Save <- function(name,h,w){
png(file = paste0(name,".png"),
height = h,
width=w,
units = "px",
pointsize=15,
bg="transparent")
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run