Florian

Results 80 comments of Florian

Could this be an issue with a transparent background in the `png` file?

I checked with - Evince - Okular - Firefox - Chromium and all show the same artifacts. Here is the PDF file if you want to check yourself: [mwe.pdf](https://github.com/JuliaPlots/Makie.jl/files/9162295/mwe.pdf)

Tests are failing because of a failure in the conversion pipeline for the markers. I retraced it to this PR https://github.com/JuliaPlots/Makie.jl/pull/1981 which introduced the `_marker_convert` method that is now erroring:...

Can't we fix this right now? Although I would not know how :sweat_smile:

Aeeehhh, could be :sweat_smile:. I only tested with PDFs. I guess @asinghvi17's :+1: to your answer indicates that it also works for `CairoMakie`. I'll update the news then. Honestly, I...

I pushed a fix for the wrong scaling, at least now the Makie logo looks ok (the problem were swapped dimensions due to the `permutedims` call). However, the logo and...

> Could you try rendering with different `px_per_unit`s and see what happens? I already tried with different scaling. E.g. adding an artificial factor of 3/2 gives roughly the same size...

>> Could you try rendering with different px_per_units and see what happens? > I already tried with different scaling. E.g. adding an artificial factor of 3/2 gives roughly the same...

I spent more time on testing and finally compared the `png` outputs generate by `GLMakie` and `CairoMakie`: ```julia using FileIO using Makie function test_scatter(filename) img = Makie.logo() img2 = load(Makie.assetpath("doge.png"))...

I opened an issue for the colored edges problem since it also appears when saving it as `pdf` using an `image` plot. This PR should now be good to go.