Skip to content

Commit 1039666

Browse files
committed
Start testing with gifski 1.4.3
1 parent 2294531 commit 1039666

File tree

6 files changed

+230
-276
lines changed

6 files changed

+230
-276
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: gifski
22
Type: Package
33
Title: Highest Quality GIF Encoder
4-
Version: 0.8.7.1
4+
Version: 1.4.3
55
Authors@R: c(
66
person("Jeroen", "Ooms", ,"jeroen@berkeley.edu", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0002-4035-0289")),

R/gifski.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ gifski <- function(png_files, gif_file = 'animation.gif', width = 800, height =
3434
stop("Target directory does not exist:", dirname(gif_file))
3535
width <- as.integer(width)
3636
height <- as.integer(height)
37-
delay <- as.integer(delay * 100)
37+
delay <- as.numeric(delay)
3838
loop <- as.logical(loop)
3939
progress <- as.logical(progress)
4040
.Call(R_png_to_gif, enc2utf8(png_files), enc2utf8(gif_file), width, height, delay, loop, progress)

0 commit comments

Comments
 (0)