Supersized picture.

nozh2002

BANNED
Joined
Jun 9, 2003
Messages
5,736
Just wondering how do you guys like it?

http://playground.sun.com/~vasya/ZoomView.html

I am going to post some knife pictures - just need to pick some pretty one.
But in general I think this is pretty cool and let me finally post all those megapixels in full scale beauty.

It was always painful to crop and resize beautiful picture - this kind of resolves all this troubles.

(it require latest java http://java.sun.com/javase/downloads/index.jsp )

Thanks, Vassili.
 
Now that is VERY cool.

Out of curiosity, how do you make it do that?
 
This small program on JavaFX (new Java). Friend of mine from graphic group using it for testing his graphic engine and gave me this code to play with (I was looking for something like this for my website and my pictures) - I slightly modify it so you may set picture URL and fit into 1000 wide window and that is it.

If you want have same thing on your web site.

1. Get those files from my site:

http://playground.sun.com/~vasya/ZoomView.jar
http://playground.sun.com/~vasya/ZoomView_browser.jnlp
http://playground.sun.com/~vasya/ZoomView.jnlp (if you want to have is as stand alone webapp)

and put them on your webserver

2. Create html page with this code inside and put URL to your picture instead of mine (it should be in the same directory as those files):

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>KnivePicture</title>
</head>
<body>
<h1>KnivePicture</h1>
<script src="http://dl.javafx.com/1.1/dtfx.js"></script>
<script>
javafx(
{
archive: "ZoomView.jar",
pictureURL: "http://playground.sun.com/~vasya/Bucks.jpg",
width: 1000,
height: 720,
code: "zoomview.Main",
name: "ZoomView"
}
);
</script>
</body>
</html>

(this is actually http://playground.sun.com/~vasya/KnifePicture.html you may copy it from my web site as well)

If you wnat I can put here source - only about 120 lines of code.

Here another one:

http://playground.sun.com/~vasya/Caldwells-01.html

Sometimes it takes oo much resources from browser - this is huge 10 Megapixel pictures and I have to wait a bit or restart browser. This is very new technology - hot-fresh right out of the lab...

Thanks, Vassili.

He also sad it does works with video as well - I need to learn it too...

And Another one:
http://playground.sun.com/~vasya/Yuna-Hard-II-FSP.html
 
Last edited:
That's a nice setup for large picture files. The detail shown on a small computer screen is very nice.
 
Back
Top