diff --git a/Project.toml b/Project.toml index 2ac60cf..d508d26 100644 --- a/Project.toml +++ b/Project.toml @@ -11,7 +11,7 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" [compat] FileIO = "1" ImageCore = "0.8.1, 0.9" -ImageMagick_jll = "= 6.9.10" +ImageMagick_jll = "= 6.9.11" julia = "1.3" [extras] diff --git a/test/constructed_images.jl b/test/constructed_images.jl index bf1fc95..9c43d18 100755 --- a/test/constructed_images.jl +++ b/test/constructed_images.jl @@ -354,4 +354,9 @@ mutable struct TestType end exportimagepixels!(buf2view, wand, cs, channelorder) @test buf2view == Ar end + + @testset "issue #206" begin + img = ImageMagick.load("images/cameraman.tif") + @test size(img) == (512, 512) + end end diff --git a/test/images/cameraman.tif b/test/images/cameraman.tif new file mode 100644 index 0000000..7f21122 Binary files /dev/null and b/test/images/cameraman.tif differ