summaryrefslogtreecommitdiff
path: root/src/pkg/image/image.go
AgeCommit message (Collapse)AuthorFilesLines
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg1-9/+9
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-179/+230
2011-10-06Imported Upstream version 60.2upstream/60.2Ondřej Surý1-0/+3
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+850
2011-09-13Imported Upstream version 60Ondřej Surý1-677/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-2/+15
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-34/+136
2011-05-04Imported Upstream version 57upstream/57Ondřej Surý1-1/+57
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-1/+1
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-183/+299
2010-06-16image: add an Alpha16 type, for completeness.Nigel Tao1-0/+48
R=rsc CC=golang-dev, rog http://codereview.appspot.com/1707042
2010-06-03Add Opaque method to the image types.Nigel Tao1-0/+96
R=rsc CC=golang-dev http://codereview.appspot.com/1533041
2010-05-28Make image.Color.RGBA return 16 bit color instead of 32 bit color.Nigel Tao1-10/+7
R=rsc CC=golang-dev http://codereview.appspot.com/1388041
2010-05-23When making images, allocate one big buffer instead of many small ones.Nigel Tao1-24/+30
R=rsc, r CC=golang-dev http://codereview.appspot.com/1267041
2010-02-02New image.A type, to represent anti-aliased font glyphs.Nigel Tao1-0/+30
R=r, rsc CC=golang-dev http://codereview.appspot.com/199052
2009-12-151) Change default gofmt default settings forRobert Griesemer1-60/+60
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 3rd set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180048
2009-11-13Remove unnecessary int(h) casts in image.go.Nigel Tao1-5/+5
R=rsc http://codereview.appspot.com/154125 Committer: Russ Cox <rsc@golang.org>
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-3/+3
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-14/+14
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-57/+19
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-10-06apply gofmt to go, gob, hash, http, image, io, json, logRuss Cox1-12/+11
R=gri DELTA=1359 (138 added, 32 deleted, 1189 changed) OCL=35408 CL=35420
2009-09-20Unit tests for image/png, based off the semi-official pngsuite fromNigel Tao1-0/+4
libpng.org. R=rsc APPROVED=r DELTA=1176 (1175 added, 1 deleted, 0 changed) OCL=34727 CL=34838
2009-09-15more "declared and not used".Russ Cox1-2/+2
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
2009-09-10PNG decoder for go.Nigel Tao1-2/+110
R=rsc APPROVED=r DELTA=694 (675 added, 3 deleted, 16 changed) OCL=34427 CL=34554
2009-08-26Introduce the image package.Nigel Tao1-0/+140
R=rsc APPROVED=r,rsc DELTA=244 (244 added, 0 deleted, 0 changed) OCL=33733 CL=33940