|
|
|
|
|
by knuthsat
1711 days ago
|
|
I'd say this is a problem with the PDF reader, not the paper. Why is PDF reader having trouble displaying 30MB of data? It's even better than a 30MB of images, because images have to be decoded but vector graphics is just bytes at some point and you decide how to render them. It's probably some accidentally quadratic behavior that struggles with 10000 vector objects. |
|
Images are relatively well handled with GPUs, and with a precomputed mipmap they can be rescaled very quickly, unlike vector graphics which needs to be re-rendered each time zoom level is changed.