Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for PLTE (2.63 sec)

  1. src/image/png/testdata/pngsuite/ftbgn3p08.sng

    #SNG: from ftbgn3p08.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        (255,255,255)     # rgb = (0xff,0xff,0xff) grey100
        (128, 86, 86)     # rgb = (0x80,0x56,0x56)
        (181,181,184)     # rgb = (0xb5,0xb5,0xb8)
        (168, 66, 66)     # rgb = (0xa8,0x42,0x42)
        (159,159,159)     # rgb = (0x9f,0x9f,0x9f)
        (177, 32, 32)     # rgb = (0xb1,0x20,0x20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.7K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/ftbyn3p08.sng

    #SNG: from ftbyn3p08.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        (255,255,255)     # rgb = (0xff,0xff,0xff) grey100
        (128, 86, 86)     # rgb = (0x80,0x56,0x56)
        (181,181,184)     # rgb = (0xb5,0xb5,0xb8)
        (168, 66, 66)     # rgb = (0xa8,0x42,0x42)
        (159,159,159)     # rgb = (0x9f,0x9f,0x9f)
        (177, 32, 32)     # rgb = (0xb1,0x20,0x20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.8K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/basn3p08-trns.sng

    #SNG: from basn3p08-trns.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        (255,  3,  7)     # rgb = (0xff,0x03,0x07)
        (255,  4,  7)     # rgb = (0xff,0x04,0x07)
        (255,  9,  7)     # rgb = (0xff,0x09,0x07)
        (217, 14,  7)     # rgb = (0xd9,0x0e,0x07)
        (255, 14,  7)     # rgb = (0xff,0x0e,0x07)
        (  2, 22, 19)     # rgb = (0x02,0x16,0x13)
        (255, 26,  7)     # rgb = (0xff,0x1a,0x07)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 14.6K bytes
    - Viewed (0)
  4. src/image/png/testdata/pngsuite/ftp0n3p08.sng

    #SNG: from ftp0n3p08.png
    IHDR {
        width: 32; height: 32; bitdepth: 8;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        ( 20, 20,109)     # rgb = (0x14,0x14,0x6d)
        (128, 86, 86)     # rgb = (0x80,0x56,0x56)
        (181,181,184)     # rgb = (0xb5,0xb5,0xb8)
        (168, 66, 66)     # rgb = (0xa8,0x42,0x42)
        (159,159,159)     # rgb = (0x9f,0x9f,0x9f)
        (177, 32, 32)     # rgb = (0xb1,0x20,0x20)
        (139, 21, 21)     # rgb = (0x8b,0x15,0x15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 13.7K bytes
    - Viewed (0)
  5. src/image/png/writer.go

    		e.tmp[3*i+0] = c1.R
    		e.tmp[3*i+1] = c1.G
    		e.tmp[3*i+2] = c1.B
    		if c1.A != 0xff {
    			last = i
    		}
    		e.tmp[3*256+i] = c1.A
    	}
    	e.writeChunk(e.tmp[:3*len(p)], "PLTE")
    	if last != -1 {
    		e.writeChunk(e.tmp[3*256:3*256+1+last], "tRNS")
    	}
    }
    
    // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top