summaryrefslogtreecommitdiff
path: root/src/image
Commit message (Expand)AuthorAgeFilesLines
* image/color: have NYCbCrA.RGBA work in 16-bit color.Nigel Tao2015-12-242-9/+53
* image: add NYCbCrA types.Nigel Tao2015-10-113-13/+174
* image/png: integer underflow when decodingNathan Otterness2015-09-212-0/+15
* image/png: reject zero-width and zero-height images.Nigel Tao2015-09-091-2/+2
* image/gif: map/slice literals janitoringDidier Spezia2015-09-041-5/+5
* image/draw: optimize out some bounds checks.Nigel Tao2015-09-011-25/+25
* image/gif: avoid unused assignmentTarmigan Casebolt2015-08-241-1/+1
* image/color: fix format typo in the tests.Nigel Tao2015-07-161-2/+2
* image/color: tweak the YCbCr to RGBA conversion formula.Nigel Tao2015-07-156-47/+80
* image/jpeg: don't unread a byte if we've already taken bits from it.Nigel Tao2015-07-142-6/+15
* image/png: don't read filter bytes for empty interlace passes.Nigel Tao2015-07-134-1/+27
* all: link to https instead of httpBrad Fitzpatrick2015-07-113-3/+3
* image/draw: fix double-draw when the dst is paletted.Nigel Tao2015-07-032-1/+24
* image/gif: accept LZW encodings that do not have an explicit end marker.Nigel Tao2015-06-301-3/+12
* image/gif: set default loop count to 0 when app ext. is not presentAndrew Bonventre2015-06-232-1/+21
* image/gif: re-enable some invalid-palette tests.Nigel Tao2015-06-191-18/+14
* image/gif: return an error on missing paletteJeff R. Allen2015-06-182-1/+4
* image/gif: (temporarily) disable broken tests.Nigel Tao2015-06-181-0/+12
* all: switch to the new deprecation conventionShenghou Ma2015-06-181-1/+1
* image/gif: allow encoding a single-frame image whose top-left cornerNigel Tao2015-05-062-2/+37
* image/gif: be consistent wrt "color map" or "color table" names.Nigel Tao2015-05-052-29/+28
* image/gif: don't encode local color tables if they're the same as theNigel Tao2015-05-042-22/+82
* image/gif: check that individual frame's bounds are within the overallNigel Tao2015-04-293-9/+74
* image/gif: encode disposal, bg index and Config.Nigel Tao2015-04-283-73/+222
* image/png: don't silently swallow io.ReadFull's io.EOF error when itNigel Tao2015-04-232-0/+24
* image/jpeg: have the LargeImageWithShortData test only allocate 64 MiB, not 604Nigel Tao2015-04-231-8/+8
* image/jpeg: ensure that we can't unread a byte if we didn't read a byte.Nigel Tao2015-04-222-2/+59
* image/color: have Palette.Index honor alpha for closest match, not justNigel Tao2015-04-163-38/+88
* image: spell coordinate consistently, without the hyphen.Nigel Tao2015-04-164-9/+11
* image/png: reject multiple tRNS chunks.Nigel Tao2015-04-152-6/+71
* image/jpeg: don't assume that an ensureNBits failure implies that we canNigel Tao2015-04-142-13/+23
* image/gif: expose disposal, bg index and ConfigColin Kennedy2015-04-131-7/+34
* image/jpeg: reject multiple Start-Of-Frame markers.Nigel Tao2015-04-091-0/+3
* image/color: have CMYK.RGBA work in 16-bit color, per the Color interface.Nigel Tao2015-04-082-15/+63
* image/draw: fix golden test for YCbCr.RGBA change.Nigel Tao2015-03-271-2/+2
* image/color: have YCbCr.RGBA work in 16-bit color, per the ColorNigel Tao2015-03-262-25/+62
* image/internal/imageutil: inline the color.YCbCrToRGB calls.Nigel Tao2015-03-252-22/+131
* image/internal/imageutil: generate subsample-ratio-specific code.Nigel Tao2015-03-243-90/+243
* image/internal/imageutil: new package, used by image/draw and image/jpeg.Nigel Tao2015-03-233-153/+105
* image/color: add alpha-premultiplied comment.Nigel Tao2015-03-211-4/+13
* image/jpeg: reject bad Tq values in SOF data.Nigel Tao2015-03-131-0/+4
* image/jpeg: support chroma hv values other than 0x11.Nigel Tao2015-03-115-45/+78
* image/jpeg: support RGB JPEG images.Nigel Tao2015-03-094-6/+78
* image/jpeg: check for component uniqueness and total sampling factors.Nigel Tao2015-03-042-0/+27
* image: make Rectangle implement Image.Nigel Tao2015-03-041-0/+23
* image/jpeg: when following component selectors, only consider validNigel Tao2015-03-031-1/+1
* image/jpeg: distinguish between FormatError and UnsupportedError whenNigel Tao2015-03-021-5/+7
* image/draw: add a fast path for Gray src images.Nigel Tao2015-02-283-0/+81
* image/draw: optimize drawFillSrc.Nigel Tao2015-02-281-4/+8
* image/jpeg: support 4:1:1 and 4:1:0 chroma subsampling.Nigel Tao2015-02-267-18/+14