Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Isolating PNG chunks  (Read 776 times)
0 Members and 1 Guest are viewing this topic.
Offline darcone

Junior Member




Size matters


« Posted 2004-04-01 19:14:17 »

Hey... I am working on software to join many PNG images with the same header into one file to save space and I´ve been able to after some carefull reading of the PNG specification to get the following:

F:\Development\Java\PNGPrime\bin>java com.qiui.apps.PNGPrime.PNGInfo tank.png
8240 80 78 71 13 10 26 10

A: 0 B: 0 C: 0 D: 13 => 13
Code: IHDR
CRC: 221

A: 0 B: 0 C: 0 D: 4 => 4
Code: gAMA
CRC: 489

A: 0 B: 0 C: 0 D: 25 => 25
Code: tEXt
CRC: 60

A: 0 B: 0 C: 0 D: 48 => 48
Code: PLTE
CRC: 180

A: 0 B: 0 C: 0 D: 1 => 1
Code: tRNS
CRC: 102

A: 0 B: 0 C: 0 D: 25 => 25
Code: IDAT
CRC: 502

A: 56 B: 86 C: 46 D: 24 => 945171992
Code: δ╪rq
Exception in thread "main" java.lang.OutOfMemoryError
_

As you see, something goes wrong after the IDAT chunk, I suspect something is wrong with the length field (but the image displays successfully). This is how I calculate the length:

byte a = (byte)fr.read(), b = (byte)fr.read(), c = (byte)fr.read(), d = (byte)fr.read();
int length = (a << 24) | (b << 16) | (c << Cool | d;

Any ideas guys?

Offline darcone

Junior Member




Size matters


« Reply #1 - Posted 2004-04-02 09:06:55 »

Heh, the reason why this did not work is that Adobe Imageready saves down PNG with (probably intentional) errors... Errors that are easy to recover from (thats probably why the image still works everywhere) but gives people like me a hard time.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (7 views)
2013-06-19 14:55:23

BrassApparatus (12 views)
2013-06-19 08:52:37

NegativeZero (17 views)
2013-06-19 03:31:52

NegativeZero (19 views)
2013-06-19 03:24:09

Jesse_Attard (23 views)
2013-06-18 22:03:02

HeroesGraveDev (62 views)
2013-06-15 23:35:23

Vermeer (61 views)
2013-06-14 20:08:06

davedes (61 views)
2013-06-14 16:03:55

alaslipknot (56 views)
2013-06-13 07:56:31

Roquen (77 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!