summaryrefslogtreecommitdiff
path: root/src/image
Commit message (Expand)AuthorAgeFilesLines
* image/gif: fix typo in the comment (io.ReadByte -> io.ByteReader)uji2021-06-301-1/+1
* image: add Uniform.RGBA64At and Rectangle.RGBA64AtNigel Tao2021-06-303-0/+25
* image: add RGBA64Image interfaceNigel Tao2021-06-184-0/+292
* image: resolve the TODO of doc comment styleAndy Pan2021-02-242-3/+1
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-203-0/+3
* all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox2020-12-095-12/+9
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-203-23/+22
* image/gif: have BenchmarkEncodeRealisticRGBA convert to RGBANigel Tao2020-09-031-14/+20
* image/gif: add more writer benchmarksNigel Tao2020-08-171-15/+38
* image/gif: speed up initializing test imageNigel Tao2020-06-141-5/+2
* image/png: remove too early declaration of "n"Ayan George2020-05-081-3/+2
* image: guard against NewXxx integer overflowNigel Tao2020-04-294-30/+193
* image/jpeg: accept "\xff\x00" before a RST markerNigel Tao2020-04-292-0/+189
* image: add a NewUniform doc commentNigel Tao2020-04-291-0/+1
* image/draw: optimize paletted dst + uniform srcNigel Tao2020-04-273-17/+43
* image/png: fix some 32-bit int overflowsNigel Tao2020-04-272-17/+127
* all: fix typosAinar Garipov2019-09-081-1/+1
* image/png: hoist repetitive pixels per byte out of loop in EncodeNao YONASHIRO2019-08-281-2/+3
* image/draw: change argument type to be consistent with other argsLeon Klingele2019-05-241-2/+2
* image: add missing error check in testLeon Klingele2019-05-231-0/+4
* image/gif: fix transparency loss when encoding a wrapped *image.Palettedkawakami2019-05-223-5/+90
* image/png: fix palette extension to handle 255 color imagesStephan Zuercher2019-05-083-1/+16
* image: deprecate ZP and ZRNigel Tao2019-04-071-0/+4
* image/jpeg: reduce bound checks from idct and fdctAgniva De Sarker2019-04-022-59/+63
* image/png: add Fuzz functionAndrei Tudor Călin2019-03-221-0/+52
* image/gif: don't assume Encode src's origin is (0, 0)Nigel Tao2019-03-212-2/+54
* image/png: delete unused statementcia-rana2019-02-281-1/+0
* jpeg: simplify 'x = x op ...' to 'x op= ...'avsharapov2018-10-131-16/+16
* image: optimize bounds checking for At and Set methodsIan Davis2018-10-011-67/+82
* image: make RegisterFormat safe for concurrent useTim Cooper2018-09-261-2/+11
* image/draw: optimize bounds checks in loopsIan Davis2018-09-251-63/+63
* image: avoid sharing test images between tests and benchmarksIan Davis2018-09-251-16/+22
* image/png: pack image data for small bitdepth paletted imagesIan Davis2018-09-252-11/+170
* image: add benchmarks for At and Set methodsIan Davis2018-09-241-15/+195
* image/png: minor cleanup of a few testsIan Davis2018-09-162-6/+2
* cmd/link,compress/zip,image/png: use binary.{Big,Little}Endian methodsLynn Boger2018-09-111-12/+5
* all: clean up some Deprecated commentsBrad Fitzpatrick2018-07-061-1/+2
* all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper2018-06-016-14/+14
* image: add an example that shows how to get the metadata of an imageAarti Parikh2018-05-291-0/+9
* all: fix non-standard "DO NOT EDIT" comments for generated filesMark Rushakoff2018-03-104-4/+4
* all: fix misspellingsShawn Smith2018-02-201-1/+1
* image/gif: support non-looping animated gifs (LoopCount=-1)Peter Teichman2018-02-133-23/+66
* Revert "go/printer: forbid empty line before first comment in block"Joe Tsai2017-12-011-0/+2
* all: change github.com issue links to golang.orgLeigh McCulloch2017-11-041-2/+2
* go/printer: forbid empty line before first comment in blockJoe Tsai2017-11-021-2/+0
* image/draw, image/color: optimize hot path sqDiff functionArtyom Pervukhin2017-10-274-12/+119
* image/draw: reduce drawPaletted allocations for special source casesArtyom Pervukhin2017-10-251-1/+13
* image/gif: avoid setting defers in the decode loopArtyom Pervukhin2017-10-232-101/+141
* image/png: fix width * height * bpp overflow check.Nigel Tao2017-10-212-0/+24
* image/gif: make blockReader a ByteReader, harden testsJed Denlea2017-10-192-39/+104