Here you can find the source of swap16(short rgb)
public static short swap16(short rgb)
//package com.java2s; public class Main { public static short swap16(short rgb) { int a = (rgb >> 8) & 0xFF; int r = rgb & 0xff; return (short) ((r << 8) | a); }/* w ww. java2 s . c o m*/ }