summaryrefslogtreecommitdiff
path: root/source/fitz/device.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2015-07-13 16:23:14 +0100
committerRobin Watts <robin.watts@artifex.com>2015-07-20 17:19:03 +0100
commit269fdfce2527cbba02e68d658af3f4b92ef40be0 (patch)
treec75e9e4abdae745c64f98eaafa86d572e747f536 /source/fitz/device.c
parentd8353609755104010afaf3e1967a36959f28c5dc (diff)
downloadmupdf-269fdfce2527cbba02e68d658af3f4b92ef40be0.tar.xz
Improve Grid fitting of images for .gproof files.
By default in MuPDF, when we render an axis aligned image, we 'gridfit' it. This is a heuristic used to improve the rendering of tiled images, and avoid the background showing through on the antialiased edges. The general algorithm we use is to expand any image outwards so that it completely covers any pixels that it touches any part of. This is 'safe' in that we never cause any pixels to not be covered that should otherwise be so, and is important when we have images that are aligned with (say) line art rectangles. For gproof files though, this gives nasty results - because we have multiple images tiled across the page all exactly abutting, in most cases the edges will not be on exact integer coordinates. This means we expand both images and 1 (destination) pixel is lost. This severely hurts the rendering (in particular on text based pages). We therefore introduce a new type of grid fitting, where we simply align the edges of images to the closest integer pixel. This is safe because we know that neighbouring images will be adjusted identically and edges will stay coincident. We enable/disable this behaviour through a new device flag, and make the gproof interpreter set/clear this flag when generating the page - thus normal rendering is unaffected. We *could* have just poked the dev->flags fields directly, but that would require magic in the display list device to check for them being set/unset and to poke the dev->flags fields on playback, so instead we introduce a new fz_render_flags function (that calls a device function) to set/unset flags. The other attraction of this is that if we ever have devices that 'filter', we can neatly handle passing flag changes on with those. Currently the display list implementation only copes with set/clear of the FZ_DEVFLAG_GRIDFIT_AS_TILED option. We only readily have 6 bits available to us, so we'll just extend this as required if we add new render flags.
Diffstat (limited to 'source/fitz/device.c')
-rw-r--r--source/fitz/device.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/fitz/device.c b/source/fitz/device.c
index 5e3bb61a..6df650f4 100644
--- a/source/fitz/device.c
+++ b/source/fitz/device.c
@@ -488,3 +488,10 @@ fz_end_tile(fz_context *ctx, fz_device *dev)
if (dev->end_tile)
dev->end_tile(ctx, dev);
}
+
+void
+fz_render_flags(fz_context *ctx, fz_device *dev, int set, int clear)
+{
+ if (dev->render_flags)
+ dev->render_flags(ctx, dev, set, clear);
+}