Skip to content

Commit

Permalink
Fixed test page
Browse files Browse the repository at this point in the history
  • Loading branch information
chetan1 committed Jun 4, 2012
1 parent 4870d81 commit 6f2aefe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/app.js
@@ -1,4 +1,4 @@
var image_proxy = require('./../image-remote-proxy');
var image_proxy = require('./../image-proxy');

var express = require('express');
var app = express.createServer();
Expand Down
10 changes: 5 additions & 5 deletions examples/views/test.jade
@@ -1,14 +1,14 @@
<h2>Original Image<h2>
<img src="../image/?url=examples/images/test.jpg" />
<img src="../image/?url=http%3a%2f%2fjobsify.in%2ftest.jpg" />

<h2>Resize<h2>
<img src="../image/?url=examples/images/test.jpg&resize=1&height=120" />
<img src="../image/?url=http%3a%2f%2fjobsify.in%2ftest.jpg&resize=1&height=120" />

<h2>Grayscale<h2>
<img src="../image/?url=examples/images/test.jpg&grayscale=1" />
<img src="../image/?url=http%3a%2f%2fjobsify.in%2ftest.jpg&grayscale=1" />

<h2>PNG Conversion<h2>
<img src="../image/?url=examples/images/test.jpg&format=png" />
<img src="../image/?url=http%3a%2f%2fjobsify.in%2ftest.jpg&format=png" />

<h2>Resize + Grayscale + GIF Conversion<h2>
<img src="../image/?url=examples/images/test.jpg&format=gif&resize=1&height=210&grayscale=1" />
<img src="../image/?url=http%3a%2f%2fjobsify.in%2ftest.jpg&format=gif&resize=1&height=210&grayscale=1" />

0 comments on commit 6f2aefe

Please sign in to comment.