diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2017-10-06 15:15:02 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2017-10-12 15:18:07 +0200 |
commit | e83aac6755dd9cd253badce622a39da20002b58a (patch) | |
tree | 4955fe211bdbe3f4be1132a10f78d27329b1f603 /source | |
parent | 15a8c86192a9620e2dfe14945006c532440da82a (diff) | |
download | mupdf-e83aac6755dd9cd253badce622a39da20002b58a.tar.xz |
Change default scalable SVG resolution.
HTML doesn't respect the DPI setting, so SVG images end up too big.
Diffstat (limited to 'source')
-rw-r--r-- | source/fitz/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/image.c b/source/fitz/image.c index 3ac2afeb..b1a0d66b 100644 --- a/source/fitz/image.c +++ b/source/fitz/image.c @@ -7,7 +7,7 @@ #define SANE_DPI 72.0f #define INSANE_DPI 4800.0f -#define SCALABLE_IMAGE_DPI 600 +#define SCALABLE_IMAGE_DPI 96 struct fz_compressed_image_s { |