Skip to content

Commit

Permalink
pass frame parameter on animated webp
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Mulatua committed Mar 14, 2020
1 parent 5080c4b commit 4fd4afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vips.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ int vips_init_image(void *buf, size_t len, int imageType, VipsImage **out)
}
else if (imageType == WEBP)
{
code = vips_webpload_buffer(buf, len, out, "access", VIPS_ACCESS_RANDOM, NULL);
code = vips_webpload_buffer(buf, len, out, "n", "-1", "access", VIPS_ACCESS_RANDOM, NULL);
}
else if (imageType == TIFF)
{
Expand Down

0 comments on commit 4fd4afa

Please sign in to comment.