作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试生成带有 R 图的 .png
文件。这很好用:
png(file="hello.png", width=1000, height=800)
# Lots and lots of plotting. Long code. Very slow.
plot(x=c(1, 2, 3), y=c(4, 6, 5))
dev.off()
现在如何直接从 R 获取 hello.png
的缩略图?
最佳答案
我不确定这将如何扩展到您的实际应用程序,并且对 png
库没有太多经验,但这在我的测试用例中运行得相当快。您需要指定要制作缩略图的 PNG 文件的名称以及该缩略图的高度/宽度。默认情况下,它将在同一目录中保存缩略图,并在文件名前添加 thumb_
。
makeThumb <- function(file, height, width) {
require(png)
img <- readPNG(file)
png(file = paste("thumb", file, sep = "_"), height = height, width = width)
par(mar=c(0,0,0,0), xaxs="i", yaxs="i", ann=FALSE)
plot(1:2, type='n', xaxt = "n", yaxt = "n", xlab = "", ylab = "")
lim <- par()
rasterImage(img, lim$usr[1], lim$usr[3], lim$usr[2], lim$usr[4])
dev.off()
}
请告诉我这是否适合您。该函数与lapply
配合良好,也可以同时操作目录中的大量文件:lapply(listOfFiles, makeThumb, height = 200, width = 200)
.
关于r - 如何在 R 中创建缩略图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5504057/
我是一名优秀的程序员,十分优秀!