public void transpose(){
int count = 0;
String str = "";
String transStr = "";
while ( count < this.getWidth() ){
for ( int i = 0; i<bild.length(); i = i+this.bildBreite){
str = bild.substring(i, i+this.bildBreite);
transStr += str.charAt(count);
}
count++;
transStr+="\n";
}
System.out.println(transStr);
}
Murat
> Date: Wed, 13 Apr 2011 12:28:10 +0100
> From:
desteba...@yahoo.de> Subject: !!!!
> To:
javacod...@googlegroups.com