-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcors.html
executable file
·109 lines (98 loc) · 3.68 KB
/
cors.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title></title>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script src='https://s3.amazonaws.com/web.blitline/underscore-min.js'></script>
<script src='blitline_cors.js'></script>
<script type="text/javascript">
$(document).ready(function() {
var blitline = new Blitline();
var events = {
completed : function(results, error) {
// This event tells you that Blitline.com has completed processing the images. There is an error string that is
// returned which may tell you specifically what the problem is, OR if there was a server side error. It will
// not always tell you what the server side error is.
// If successfull, it will return the same images as the submitted event did.
if (!error) {
_.each(results, function(result) {
var images = result.images;
_.each(images, function(image) {
$("#output").append("<div>"+image.s3_url+"</div><div><img src='" + image.s3_url+"' /></div>");
});
});
}else {
alert("There was an error processing the images. Please see following error:\r\n\r\n" + error + "\r\n\r\nIf you are unable to resolve the issue, please check your Dashboard at Blitline.com");
}
},
submitted : function(jobIds, images) {
// This event just tells you that your JSON has been successfully submitted to Blitline.com,
// it does not imply that the processing has completed, or that is was successful. This would be
// a good event to give some feedback UI.
alert("Job has been successfully submitted to blitline for processing\r\n\r\nPlease wait a few moments for them to complete.");
}
}
$("#goButton").click(function() {
$("#output").empty();
var jobs;
// Simplest way, raw string
jobs = $("#json").val();
blitline.submit(jobs, events)
})
});
</script>
</head>
<body>
<h1 style="text-align:center;">Javascript post to Blitline: Demo </h1>
<h3>JSON to submit</h3>
<textarea style="width: 500px; height: 300px;" id="json">
[
{
"application_id": "YOUR_APP_ID",
"src": "http://www.google.com/logos/2012/childrensday-2012-hp.jpg",
"functions": [
{
"name": "blur",
"params": {
"radius": 1
},
"save": {
"image_identifier": "external_sample_1"
},
"functions": [
{
"name": "resize_to_fit",
"params": {
"width": 300
},
"save": {
"image_identifier": "external_sample_2"
},
"functions": [
{
"name": "resize_to_fit",
"params": {
"width": 100
},
"save": {
"image_identifier": "external_sample_2"
}
}
]
}
]
}
]
}
]
</textarea>
<br/>
<input id="goButton" type="button" value="Go!" />
<br/>
<i style="font-size:10px">You will need to replace YOUR_APP_ID above with your actual Blitline ID. It is probably best to go ahead and change this html page to have it by default</i>
<div id="output"></div>
</body>
</html>