# GLMakie : record with high resolution?

**URL:** https://discourse.julialang.org/t/glmakie-record-with-high-resolution/79654
**Category:** General Usage
**Tags:** glmakie
**Created:** [April 18, 2022, 8:24pm UTC](https://discourse.julialang.org/t/glmakie-record-with-high-resolution/79654 "2022-04-18T20:24:23Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Francois](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/francois/32/42434_2.png) [@Francois](https://discourse.julialang.org/u/Francois)
#### Post date: [April 18, 2022, 8:24pm UTC](https://discourse.julialang.org/t/glmakie-record-with-high-resolution/79654/1 "2022-04-18T20:24:23Z")

</div>

The maximum resolution for recording seems to be bounded by the size of my screen.

```julia
GLMakie.activate!()
grid = zeros(2000, 2000)
fig = Figure(resolution=(2000, 2000))
ax = Axis(fig[1, 1], aspect=DataAspect())
hm = heatmap!(ax, grid)
record(fig, "renderlines.mp4", 1:500; framerate=30) do i
    grid[1:10:2000, i] .= 1
    grid[i, 1:10:2000] .= 1
    hm[3][] = grid
end

```

The preceding code yields:

 ![glmakie_lines](https://global.discourse-cdn.com/julialang/original/3X/1/7/1741e1072e36acd16ede6306468a144727aac140.png)  
Not all lines are displayed but they appear when we zoom in the GLMakie interactive window.

The recording inherits the resolution imposed by the screen (image 1). Is there a way to increase the resolution to see all lines clearly ?
