forked from fuse-open/fuse-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
140 lines (127 loc) · 3.29 KB
/
main.js
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
var Observable = require("FuseJS/Observable");
var Camera = require("FuseJS/Camera");
var CameraRoll = require("FuseJS/CameraRoll");
var ImageTools = require("FuseJS/ImageTools");
var exports = module.exports;
// These observables will be used to display an image and its information
var imagePath = exports.imagePath = Observable();
var imageName = exports.imageName = Observable();
var imageSize = exports.imageSize = Observable();
// This is used to keep the last image displayed as a base64 string in memory
var lastImage = "";
// When we receive an image object we want to display, we call this
var displayImage = function(image)
{
imagePath.value = image.path;
imageName.value = image.name;
imageSize.value = image.width+"x"+image.height;
ImageTools.getImageFromBase64(image).then(
function(b64)
{
lastImage = b64;
}
);
}
/*
1. Take an unscaled "raw" picture
2. Pass the picture into ImageTools.resize to scale and then crop it to 320x320
3. Publish the scaled image to the device cameraroll
4. Display the final image
*/
exports.takePicture = function()
{
Camera.takePicture().then(
function(image) {
var args = { desiredWidth:320, desiredHeight:320, mode:ImageTools.SCALE_AND_CROP, performInPlace:true };
ImageTools.resize(image, args).then(
function(image) {
CameraRoll.publishImage(image);
displayImage(image);
}
).catch(
function(reason) {
console.log("Couldn't resize image: " + reason);
}
);
}
).catch(
function(reason){
console.log("Couldn't take picture: " + reason);
}
);
};
/*
1. Take an unscaled "raw" picture
2. Crop the image with a rectangle and save the result to a new file.
3. Display the new image.
*/
exports.takeCroppedPicture = function()
{
Camera.takePicture().then(
function(image)
{
var options = { x: 20, y:20, width:320, height:320 };
ImageTools.crop(image, options).then(
function(image)
{
displayImage(image);
}
);
}
);
}
/*
1. Take an aspect-corrected 100x100 resized image
2. Get the image bytes as an arraybuffer
3. Pass the image bytes back in to create a new image from them
4. Display the returned image
*/
exports.takeSmallPicture = function()
{
Camera.takePicture(100, 100).then(
function(image) {
ImageTools.getBufferFromImage(image).then(
function(buffer) {
ImageTools.getImageFromBuffer(buffer).then(
function(image) {
displayImage(image);
}
)
}
)
}
).catch(
function(reason){
console.log("Couldn't take picture: "+reason);
}
);
}
/*
1. Spawn a dialog to fetch an image from the camera roll
2. Display the image
*/
exports.selectImage = function()
{
CameraRoll.getImage().then(
function(image)
{
console.log("received image: "+image.path+", "+image.width+"/"+image.height);
displayImage(image);
}
).catch(
function(reason){
console.log("Couldn't get image: "+reason);
}
);
};
/*
Bounce the last displayed image via base64 and display the reloaded image
*/
exports.b64Test = function()
{
ImageTools.getImageFromBase64(lastImage).then(
function(image){
displayImage(image);
}
);
};