如何使用图表后端正确设置图表?
How to properly setup Chart using Diagrams backend?
我正在尝试用这个例子测试 Chart using the Diagrams backend(均来自 Stackage)
import Graphics.Rendering.Chart.Easy
import Graphics.Rendering.Chart.Backend.Diagrams
signal :: [Double] -> [(Double,Double)]
signal xs = [ (x,(sin (x*3.14159/45) + 1) / 2 * (sin (x*3.14159/5))) | x <- xs ]
test :: IO ()
test = toFile def "example1_big.png" $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0,(0.5)..400]])
plot (points "am points" (signal [0,7..400]))
来自维基的 example-1。
在Main.hs
文件中
main :: IO ()
main = test
项目构建和运行没有任何错误,实际上在项目目录中生成了一个 example1_big.png
文件。但是我无法使用 feh
或任何其他图像查看器打开它。
这就是feh
所说的。
$ feh example1_big.png
feh WARNING: example1_big.png - No Imlib2 loader for that file format
feh: No loadable images specified.
See 'feh --help' or 'man feh' for detailed usage information
在上面使用 mediainfo
表明它没有正确的格式信息。
$ mediainfo example1_big.png
General
Complete name : example1_big.png
File size : 149 KiB
环顾四周,我确实找到了这个 thread。本质上,他们建议使用正确定义的 FileOptions
而不是默认使用 def
。
这就是我所做的
svgFileOpt :: FileOptions
svgFileOpt = FileOptions (800, 600) SVG loadCommonFonts
signal :: [Double] -> [(Double, Double)]
signal xs =
[ (x, (sin (x * 3.14159 / 45) + 1) / 2 * (sin (x * 3.14159 / 5))) | x <- xs ]
plotDayVsDouble :: IO ()
plotDayVsDouble = toFile svgFileOpt "example1_big.png" $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0, (0.5) .. 400]])
plot (points "am points" (signal [0, 7 .. 400]))
不幸的是结果完全一样。我惊讶地发现 mediainfo
甚至没有显示维度信息。
$ mediainfo example1_big.png
General
Complete name : example1_big.png
File size : 149 KiB
基本上 feh
和我试过的其他图像查看器不支持开箱即用的 SVG Scalable Vector Graphics image
。
使用 feh --magick-timeout 1
或 imagemagick
的 display
成功了!
我正在尝试用这个例子测试 Chart using the Diagrams backend(均来自 Stackage)
import Graphics.Rendering.Chart.Easy
import Graphics.Rendering.Chart.Backend.Diagrams
signal :: [Double] -> [(Double,Double)]
signal xs = [ (x,(sin (x*3.14159/45) + 1) / 2 * (sin (x*3.14159/5))) | x <- xs ]
test :: IO ()
test = toFile def "example1_big.png" $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0,(0.5)..400]])
plot (points "am points" (signal [0,7..400]))
来自维基的 example-1。
在Main.hs
文件中
main :: IO ()
main = test
项目构建和运行没有任何错误,实际上在项目目录中生成了一个 example1_big.png
文件。但是我无法使用 feh
或任何其他图像查看器打开它。
这就是feh
所说的。
$ feh example1_big.png
feh WARNING: example1_big.png - No Imlib2 loader for that file format
feh: No loadable images specified.
See 'feh --help' or 'man feh' for detailed usage information
在上面使用 mediainfo
表明它没有正确的格式信息。
$ mediainfo example1_big.png
General
Complete name : example1_big.png
File size : 149 KiB
环顾四周,我确实找到了这个 thread。本质上,他们建议使用正确定义的 FileOptions
而不是默认使用 def
。
这就是我所做的
svgFileOpt :: FileOptions
svgFileOpt = FileOptions (800, 600) SVG loadCommonFonts
signal :: [Double] -> [(Double, Double)]
signal xs =
[ (x, (sin (x * 3.14159 / 45) + 1) / 2 * (sin (x * 3.14159 / 5))) | x <- xs ]
plotDayVsDouble :: IO ()
plotDayVsDouble = toFile svgFileOpt "example1_big.png" $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0, (0.5) .. 400]])
plot (points "am points" (signal [0, 7 .. 400]))
不幸的是结果完全一样。我惊讶地发现 mediainfo
甚至没有显示维度信息。
$ mediainfo example1_big.png
General
Complete name : example1_big.png
File size : 149 KiB
基本上 feh
和我试过的其他图像查看器不支持开箱即用的 SVG Scalable Vector Graphics image
。
使用 feh --magick-timeout 1
或 imagemagick
的 display
成功了!