Our Feeds
Categories
Home
About
XploitZ
Vulnerability
Hacking
Shellcode
Buffer Overflow
Programming
CSS
C
CPP
Python
PHP
Java
HTML
Android
Video Tutorials
PlayStore*
Home
Java
JavaFX
JavaFX - Impress your lover [juZt 4 fUn]
Friday, 20 September 2013
Ajith KP
JavaFX - Impress your lover [juZt 4 fUn]
Ajith KP
September 20, 2013
1 comment :
GuyZ,
Impress your lover using this
JavaFX
graphic...
Source:
/* * * Dedicated to my future Lover :p * * http://www.terminalcoders.blogspot.in * * Amsteck Arts & Science College * Ajith Kp [ajithkp560] * */ package javafx_5; import java.util.*; import javafx.application.*; import javafx.scene.*; import javafx.scene.effect.Reflection; import javafx.scene.paint.Color; import javafx.scene.text.*; import javafx.stage.*; public class JavaFX_5 extends Application { Random rand = new Random(System.currentTimeMillis()); @Override public void start(Stage stage) { Text t = new Text("I Love You, By Ajith Kp"); t.setFont(Font.font("Comic Sans MS", 40)); Reflection r = new Reflection(); r.setFraction(0.90f); t.setFill(Color.rgb(0, 255, 0, .8)); t.setCache(true); t.setTranslateY(160); t.setTranslateX(55); t.setEffect(r); Group root=new Group(); Scene scene = new Scene(root, 800, 360, Color.BLACK); stage.setTitle("I Love You"); root.getChildren().add(t); for(int i=0; i<200; i++) { int x=rand.nextInt((int) scene.getWidth()); int y=rand.nextInt((int) scene.getHeight()); int size=rand.nextInt(25); int rot=rand.nextInt(360); Font fnd=Font.font("SandSerif", size); Text bg = new Text(x, y,"I Love You"); bg.setRotate(rot); int red=rand.nextInt(255); int green=rand.nextInt(255); int blue=rand.nextInt(255); bg.setFont(fnd); bg.setFill(Color.rgb(red, green, blue, 0.3)); root.getChildren().add(bg); } stage.setScene(scene); stage.show(); } public static void main(String[] args) { launch(args); } }
Download Link: http://www.2shared.com/file/i3tbDXVw/JavaFX_5.html
Next
« Prev Post
Previous
Next Post »
1 comments :
Write comments
Anonymous
AUTHOR
20 June 2013 at 19:53
delete
Nice graphics....
Reply
Popular Posts
Easiest way to convert RGB Color Image to Gray scale Image in Java
Hello GuyZ, I would like to share Java code to convert RGB images to Gray scale images. I have seen many Java codes which converts im...
Fist GUI Program - FASM
I hope you have read the previous posts about FASM. Else please read it here: http://terminalcoders.blogspot.in/search/label...
Digital Camera Day or Night - Python Solution
"You need to construct a feature in a Digital Camera, which will auto-detect and suggest to the photographer whether the pi...
OpenGL: Line Drawing - DDA Algorithm
Hello GuYz, DDA algorithm is another popular line drawing algorithm. Source Code #include <gl/glut.h> #include <Wind...
Web Application Vulnerabilities: Dawn, Detection, Exploitation and Defence Slide Show
ABSTRACT Web applications are popular software application types in which the client runs the application stored in server in his/her we...
Beautiful Black-Green Theme for Hackers [GNOME/GTK/KALI LINUX]
If you like this theme download it from here: http://downloads.ziddu.com/download/24041123/HackerTheme.tar.gz.html ...
Histogram Equalization Algorithm and Implementation in Java
Histogram equalization is a technique used to enhance the contrast of image using the histogram of image. The histogram of image represents...
Skin Detection Algorithm - Implementation in Java
Hi GuyZ,,, This is one of the partial solution of my Mini Project. This is an implementation of skin detection algorithm in Jav...
P2P Networks
A P2P [ Peer 2 Peer ]computer network is one in which each computer in the network can act as a server or client for the other computers ...
Google Dork Generator
( keyword: ) ( site: ) ( intitle: ) ( inurl: )
..:: SUPPORT US ::..
Labels
Programming Language
Programming Languages Theory
Adv. Hacking
Hacking
Vulnerability
C++
CPP
ALOGORITHM
Java
C
Python
Linux
PHP
Shellcode
Buffer Overflow
JavaFX
x64
Android
Digital Image Processing
Graphics
Image Processing
Metasploit
OpenGL
AI
FASM
1 comments :
Write commentsNice graphics....
Reply