| Author | 
		Message | 
	
		 
		matt271
 
  
 
    
		 | 
		
		 | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
		 
		Sponsor Sponsor 
		 
  
		 | 
		
 | 
	
	 
		  | 
	
				 
		ecookman
 
  
 
    
		 | 
		
		
			
				  Posted: Sun Jun 21, 2009 2:26 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| lol nice title | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Shah-Cuber
 
  
 
    
		 | 
		
		
			
				  Posted: Mon Jun 22, 2009 3:24 pm    Post subject: Re: i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				Nice program  
 
One question though, how do you make a .jar file? | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		syntax_error
 
  
 
    
		 | 
		
		 | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Shah-Cuber
 
  
 
    
		 | 
		
		
			
				  Posted: Mon Jun 22, 2009 4:11 pm    Post subject: Re: i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| errr, i hope you realize that is pretty obvious ... I wouldn't have asked the question, without googling it first >_> | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		jernst
 
  
 
    
		 | 
		
		
			
				  Posted: Tue Jun 23, 2009 8:07 am    Post subject: Re: i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				reminds me of slinkies   | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		[Gandalf]
 
  
 
    
		 | 
		
		
			
				  Posted: Tue Jun 23, 2009 10:19 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				You mean to say, that those aren't slinkies embedded in my monitor?   | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		DemonWasp
 
 
 
    
		 | 
		
		
			
				  Posted: Wed Jun 24, 2009 12:17 am    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| Well, there certainly aren't slinkies in my screen. Seems like an odd place to keep your slinkie collection anyway. | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
		 
		Sponsor Sponsor 
		 
  
		 | 
		
 | 
	
	 
		  | 
	
				 
		matt271
 
  
 
    
		 | 
		
		
			
				  Posted: Thu Jun 25, 2009 11:28 am    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				anybody know a way that i can darken an image fast in java?
 
 
anything i find by googling isjust stuff for a buffered image. i dont want that
 
 
i want something i can do w/ graphics
 
 
maybe if i can get access to the array of bytes representing the image? then loop through each 1, darkening it by so much. | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Insectoid
 
  
 
    
		 | 
		
		
			
				  Posted: Thu Jun 25, 2009 12:38 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| Try the Robot class Matt. check over each pixel and redraw it darker. It's a bit slow (well, really slow) though it works. Once you have the array of pixels you can do some pretty cool stuff. | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		ecookman
 
  
 
    
		 | 
		
		
			
				  Posted: Thu Jun 25, 2009 12:58 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| hmmm how would i change the colors of them so each one if them is a different color | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		matt271
 
  
 
    
		 | 
		
		
			
				  Posted: Thu Jun 25, 2009 9:14 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| just add a colour to the disk class then inside the for each loop go like g.setColor(disk.getColor()) or something. | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Insectoid
 
  
 
    
		 | 
		
		
			
				  Posted: Thu Jun 25, 2009 10:41 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| Load the color into the array, then use the RBG class (I think) to add color to it to darken it. | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Forumer
 
 
 
    
		 | 
		
		
			
				  Posted: Mon Feb 01, 2010 2:53 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				| can you upload this somewhere else? cant download this ins school D; | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		Insectoid
 
  
 
    
		 | 
		
		
			
				  Posted: Mon Feb 01, 2010 3:49 pm    Post subject: RE:i made a pretty :D:D  | 
	
				
				 | 
			 
			 
				
  | 
			 
			
				  | 
			 
			
				 | 
			 
		  | 
	
	 
		 | 
		
		 | 
	
	
 
		  | 
	
				 
		 |