summaryrefslogtreecommitdiff
path: root/fitz
AgeCommit message (Collapse)Author
2010-12-01Add convenience function for debug printing indirect objects.Sebastian Rasmussen
2010-11-28Support luminosity softmask background colors.Tor Andersson
2010-11-16Add a function fz_newpixmapwithdata that lets clients create pixmaps with a ↵Tor Andersson
custom backing store.
2010-11-12Clean up memory when returning an error.Tor Andersson
2010-11-12Detect flate/runlength decompression bombs.Tor Andersson
2010-10-28Use smooth image scaling for non-rectilinear images. Patch by Robin Watts.Tor Andersson
2010-10-20Special case the component scaling for Lab image data when color converting.Tor Andersson
2010-10-20Fix Lab colorspace conversions.Tor Andersson
2010-10-19Fix typo in memoization case of pixmap color conversion.Tor Andersson
2010-10-18Use lookup table for separation colorspaces and a color cache for device-n ↵Tor Andersson
colorspaces when converting pixmaps.
2010-10-13Use EXPAND/BLEND/COMBINE macros for more plotting functions. Patch by Robin ↵Tor Andersson
Watts.
2010-10-13Fix formatting: remove double spaces.Tor Andersson
2010-09-08Smooth image scaling and drawing fixes by Robin Watts.Tor Andersson
2010-08-18Fix bugs in RunLengthDecode filter.Tor Andersson
2010-08-18Don't print XML metacharacters in attribute strings in dev_trace.Tor Andersson
2010-08-12Remove pdf_image struct -- load images directly into fz_pixmaps instead.Tor Andersson
2010-08-11Revert fax decoder workaround that caused inline fax images with rtc markers ↵Tor Andersson
to break.
2010-08-11Unstuff extra bytes read when the filters are closed instead of only when ↵Tor Andersson
EOD is encountered.
2010-08-11Only decode as many rows as fit in the output buffer in the fax decoder, ↵Tor Andersson
thus allowing garbage data at the end of fax images with no RTC and no Rows count.
2010-08-11Tweak threshhold values for the fast image scaling.Tor Andersson
2010-08-11Remove some debug messages.Tor Andersson
2010-08-07Fix buffer juggling bugs in DCT decode filter.Tor Andersson
2010-08-04Rearrange low level painting functions and add new functions for constant ↵Tor Andersson
alpha painting.
2010-08-02Ignore premature end of data in zlib filter.Tor Andersson
2010-08-02Use 'while (rp < wp)' idiom for filter output buffering state.Tor Andersson
2010-08-02When seeking relative to the current position in a stream object, take ↵Sebastian Rasmussen
number of bytes read into buffer into consideration.
2010-08-02Check the update number of encoded bytes remaining after flate decoding.Sebastian Rasmussen
2010-08-02Put bytes not consumed by DCT decoder back into stream and make sure that ↵Sebastian Rasmussen
state is always torn down.
2010-08-02Initialize variable for AES decoding.Sebastian Rasmussen
2010-08-02Place last bytes of ASCII85 and AES decoded data at the correct buffer location.Sebastian Rasmussen
2010-08-02Fix bugs where pointer to remaining data in filters was not updated, also ↵Sebastian Rasmussen
make all occurances of the code follow a common idiom.
2010-07-31Include all three bezier controlpoints when bounding curves in a path.Sebastian Rasmussen
2010-07-30Bail on JPX images with unknown colorspaces.Tor Andersson
2010-07-30Refactor image loading.Tor Andersson
2010-07-30Make an educated guess at the stream length by looking at the filters used ↵Tor Andersson
in pdf_loadstream.
2010-07-30Treat JPXDecode images as a special case bypassing the regular filter logic.Tor Andersson
2010-07-29Use chained reader like interface for filters instead of process interface.Tor Andersson
2010-07-27Don't cache resolved objects in the indirect reference object (rely on the ↵Tor Andersson
xref cache instead).
2010-07-26Fix bug where storage capacity of 0 or 1 was not taken care of.Sebastian Rasmussen
2010-07-25Use a separate decodetile function for non-indexed images.Tor Andersson
2010-07-25Never scale the components of indexed images. Let decodetile use maxval for ↵Tor Andersson
scaling and use 24.8 fixed point math.
2010-07-24Slower but slightly more accurate CMYK to RGB conversion.Tor Andersson
2010-07-23Fix typo in grayscale image sampling.Tor Andersson
2010-07-23Support constant alpha for shadings, images and transparency groups.Tor Andersson
2010-07-23Make predictor filter flush partially processed scanlines when encountering ↵Sebastian Rasmussen
EOF in input.
2010-07-23Remove XPS parser legacy flate decode parameter parsing.Sebastian Rasmussen
2010-07-23Have zlib always flush as much output as possible when decoding.Sebastian Rasmussen
2010-07-21Add Robin Watts' smooth image scaling code.Tor Andersson
2010-07-21Replace path blending with general blending functions. Rewrite image ↵Tor Andersson
rendering loops so they don't depend on the scan converter.
2010-07-20Replace explicit comparisons with MIN/MAX/ABS macros.Sebastian Rasmussen