-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsoure
208 lines (180 loc) · 5.27 KB
/
appsoure
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import React, { useState, useEffect } from "react";
import {
Text,
View,
Image,
TouchableWithoutFeedback,
StyleSheet,
} from "react-native";
import * as ImageManipulator from "expo-image-manipulator";
import { Camera } from "expo-camera";
import ProgressIndicator from "./components/ProgressIndicator";
import server from "./components/Server";
const styles = StyleSheet.create({
resultImgView: {
position: "absolute",
zIndex: 200,
top: 0,
left: 0,
width: "100%",
height: "100%",
},
resultImg: {
position: "absolute",
zIndex: 300,
top: "25%",
left: 0,
width: "100%",
height: "50%",
},
});
interface State {
hasPermission: boolean;
type: any;
camera: any;
currImgSrc: string | null;
}
export default function App() {
const [state, setState] = useState({
hasPermission: false,
type: Camera.Constants.Type.back,
camera: null,
currImgSrc: "",
} as State);
const [pressed, setPressed] = useState(false);
const [pasting, setPasting] = useState(false);
let camera: any = null;
useEffect(() => {
(async () => {
// Ping the server on startup.
server.ping();
// Request permission.
const { status } = await Camera.requestPermissionsAsync();
const hasPermission = status === "granted" ? true : false;
setState({ ...state, hasPermission });
})();
}, []);
async function cut(): Promise<string> {
const start = Date.now();
console.log("");
console.log("Cut");
console.log(camera.pictureSize);
// const ratios = await camera.getSupportedRatiosAsync()
// console.log(ratios)
// const sizes = await camera.getAvailablePictureSizeAsync("2:1")
// console.log(sizes)
console.log("> taking image...");
const opts = { skipProcessing: true, exif: false, quality: 0 };
// const opts = {};
let photo = await camera.takePictureAsync(opts);
console.log("> resizing...");
const { uri } = await ImageManipulator.manipulateAsync(
photo.uri,
[
{ resize: { width: 256, height: 512 } },
{ crop: { originX: 0, originY: 128, width: 256, height: 256 } },
// { resize: { width: 256, height: 457 } },
// { crop: { originX: 0, originY: 99, width: 256, height: 256 } },
// { resize: { width: 256, height: 341 } },
// { crop: { originX: 0, originY: 42, width: 256, height: 256 } },
]
// { compress: 0, format: ImageManipulator.SaveFormat.JPEG, base64: false }
);
console.log("> sending to /cut...");
const resp = await server.cut(uri);
console.log(`Done in ${((Date.now() - start) / 1000).toFixed(3)}s`);
return resp;
}
async function paste() {
const start = Date.now();
console.log("");
console.log("Paste");
console.log("> taking image...");
// const opts = { skipProcessing: true, exif: false };
const opts = {};
let photo = await camera.takePictureAsync(opts);
console.log("> resizing...");
const { uri } = await ImageManipulator.manipulateAsync(photo.uri, [
// { resize: { width: 512, height: 1024 } },
{ resize: { width: 350, height: 700 } },
]);
console.log("> sending to /paste...");
try {
const resp = await server.paste(uri);
if (resp.status !== "ok") {
if (resp.status === "screen not found") {
console.log("screen not found");
} else {
throw new Error(resp);
}
}
} catch (e) {
console.error("error pasting:", e);
}
console.log(`Done in ${((Date.now() - start) / 1000).toFixed(3)}s`);
}
async function onPressIn() {
setPressed(true);
const resp = await cut();
// Check if we're still pressed.
// if (pressed) {
setState({ ...state, currImgSrc: resp });
// }
}
async function onPressOut() {
setPressed(false);
setPasting(true);
if (state.currImgSrc !== "") {
await paste();
setState({ ...state, currImgSrc: "" });
setPasting(false);
}
}
if (state.hasPermission === null) {
return <View />;
}
if (state.hasPermission === false) {
return <Text>No access to camera</Text>;
}
let camOpacity = 1;
if (pressed && state.currImgSrc !== "") {
camOpacity = 0.8;
}
return (
<View style={{ flex: 1 }}>
<View
style={{ ...StyleSheet.absoluteFillObject, backgroundColor: "black" }}
></View>
<Camera
style={{ flex: 1, opacity: camOpacity }}
type={state.type}
ratio="2:1"
// autoFocus={false}
// pictureSize="640x480"
ref={async (ref) => (camera = ref)}
>
<TouchableWithoutFeedback onPressIn={onPressIn} onPressOut={onPressOut}>
<View
style={{
flex: 1,
backgroundColor: "transparent",
flexDirection: "row",
}}
></View>
</TouchableWithoutFeedback>
</Camera>
{pressed && state.currImgSrc !== "" ? (
<>
<View pointerEvents="none" style={styles.resultImgView}>
<Image
style={styles.resultImg}
source={{ uri: state.currImgSrc }}
resizeMode="stretch"
/>
</View>
</>
) : null}
{(pressed && state.currImgSrc === "") || pasting ? <ProgressIndicator /> : null}
</View>
);
}