Bitwise operations on a png and bmp give different results? (Same 32 bit ARGB representation) - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:36:46Zhttp://stackoverflow.com/feeds/question/1028304http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1028304/bitwise-operations-on-a-png-and-bmp-give-different-results-same-32-bit-argb-rep1Bitwise operations on a png and bmp give different results? (Same 32 bit ARGB representation)gav2009-06-22T16:51:59Z2009-08-12T18:33:48Z
<p>Hi all,</p>
<p>I'm trying to replicate some image filtering software on the Android platform. The desktop version works with bmps but crashes out on png files.</p>
<p>When I come to xOr two pictures (The 32 bit ints of each corresponding pixel) I get very different results for the two pieces of software. </p>
<p>I'm sure my code isn't wrong as it's such a simple task but here it is;</p>
<pre><code>const int aMask = 0xFF000000;
int xOrPixels(int p1, int p2) {
return (aMask | (p1 ^ p2) );
}
</code></pre>
<p>The definition for the JAI library used by the Java desktop software can be found <a href="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/operator/XorDescriptor.html" rel="nofollow">here</a> and states;</p>
<pre><code> The destination pixel values are defined by the pseudocode:
dst[x][y][b] = srcs[0][x][y][b] ^ srcs[1][x][y][b];
</code></pre>
<p>Where the b is for band (i.e. R,G,B).</p>
<p>Any thoughts? I have a similar problem with AND and OR.</p>
<p>Here is an image with the two source images xOr'd at the bottom on Android using a png. The same file as a bitmap xOr'd gives me a bitmap filled with 0xFFFFFFFF (White), no pixels at all. I checked the binary values of the Android ap and it seems right to me....</p>
<p><img src="http://lh3.ggpht.com/%5FEW60jqE5%5FB0/Sj-9U6PQj2I/AAAAAAAAAFM/dSgxKyz85V0/s800/device.png" alt="Android" /></p>
<p>Gav</p>
<p>NB When i say (Same 32 bit ARGB representation) I mean that android allows you to decode a png file to this format. Whilst this might give room for some error (Is png lossless?) I get completely different colours on the output.</p>
http://stackoverflow.com/questions/1028304/bitwise-operations-on-a-png-and-bmp-give-different-results-same-32-bit-argb-rep/1028407#10284070Answer by David for Bitwise operations on a png and bmp give different results? (Same 32 bit ARGB representation)David2009-06-22T17:19:32Z2009-06-22T17:19:32Z<p>The png could have the wrong gamma or color space, and it's getting converted on load, affecting the result. Some versions of Photoshop had a bug where they saved pngs with the wrong gamma.</p>
http://stackoverflow.com/questions/1028304/bitwise-operations-on-a-png-and-bmp-give-different-results-same-32-bit-argb-rep/1028794#10287940Answer by R. Bemrose for Bitwise operations on a png and bmp give different results? (Same 32 bit ARGB representation)R. Bemrose2009-06-22T18:45:44Z2009-06-22T18:45:44Z<p>What are you doing prior to the code posted?</p>
<p><a href="http://www.ietf.org/rfc/rfc2083.txt" rel="nofollow">PNG</a> is a compressed format, using the deflate algorithm (See Section 5 of <a href="http://www.ietf.org/rfc/rfc2083.txt" rel="nofollow">RFC2083</a>), so if you're just doing binary reads, you're not looking at actual pixels.</p>
http://stackoverflow.com/questions/1028304/bitwise-operations-on-a-png-and-bmp-give-different-results-same-32-bit-argb-rep/1267921#12679210Answer by Liudvikas Bukys for Bitwise operations on a png and bmp give different results? (Same 32 bit ARGB representation)Liudvikas Bukys2009-08-12T18:33:48Z2009-08-12T18:33:48Z<p>I checked a couple of values from your screenshot.</p>
<p>The input pixels:</p>
<ul>
<li>Upper left corners, 0xc3cbce^0x293029 = 0xeafbe7</li>
<li>Nape of the neck, 0xbdb221^0x424dd6 = 0xfffff7</li>
</ul>
<p>are very similar to the corresponding output pixels.</p>
<p>Looks to me like you are XORing two images that are closely related (inverted in each color channel), so, necessarily, the output is near 0xffffff.</p>
<p>If you were to XOR two dissimilar images, perhaps you will get something more like what you expect.</p>
<p>The question is, why do you want to XOR pixel values?</p>