作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,我需要在此代码中添加什么来激活抗锯齿?
set terminal gif animate delay 5 size 400, 250
set output "example.gif"
a = 0
do for [i=1:100] {
a = a + 0.1
plot sin(x + a)
}
最佳答案
使用终端pngcairo
具有抗锯齿功能以创建单独的 png 文件:
set terminal pngcairo size 400, 250
a = 0
do for [i=1:100] {
set output sprintf("%.3d.png",i)
plot sin(x + a)
a = a + 0.1
}
convert
:
convert -delay 5 -loop 0 *.png animation.gif
关于animation - 如何在 Gnuplot 中使用抗锯齿来制作 gif?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46329436/
我是一名优秀的程序员,十分优秀!