Skip to content
Snippets Groups Projects
Commit 616c019f authored by tjc's avatar tjc
Browse files

add parse() to parse a string representation of a color

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@11330 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 589bc9fa
No related branches found
No related tags found
No related merge requests found
......@@ -163,6 +163,33 @@ public class LineAttributes
return lines;
}
/**
* From a string representation of a colour return the
* corresponding <code>Color</code>.
* @param colourStr the string to parse
* @return
*/
public static Color parse(String colourStr)
{
if(colourStr.indexOf(":") > -1)
{
String colourStrs[] = colourStr.split(":");
return new Color(Integer.parseInt(colourStrs[0]),
Integer.parseInt(colourStrs[1]),
Integer.parseInt(colourStrs[2]));
}
if ( colourStr.startsWith("#") )
colourStr = colourStr.substring(1);
colourStr = colourStr.toLowerCase();
if (colourStr.length() > 6)
throw new NumberFormatException("not a 24 bit representation of the color");
Color color = new Color( Integer.parseInt( colourStr , 16 ) );
return color;
}
/**
* Utility used by uk.ac.sanger.artemis.components.Plot
* @param numPlots
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment