Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
304599d809 | ||
![]() |
d82bad305b | ||
![]() |
03a720808b | ||
![]() |
52a9d39855 |
@ -3,7 +3,7 @@
|
|||||||
"version": "0.3.7-dev",
|
"version": "0.3.7-dev",
|
||||||
"description": "Cordova Camera Plugin",
|
"description": "Cordova Camera Plugin",
|
||||||
"cordova": {
|
"cordova": {
|
||||||
"id": "cordova-plugin-camera",
|
"id": "org.apache.cordova.camera",
|
||||||
"platforms": [
|
"platforms": [
|
||||||
"firefoxos",
|
"firefoxos",
|
||||||
"android",
|
"android",
|
||||||
@ -38,9 +38,6 @@
|
|||||||
"cordova-browser",
|
"cordova-browser",
|
||||||
"cordova-windows"
|
"cordova-windows"
|
||||||
],
|
],
|
||||||
"peerDependencies": {
|
|
||||||
"cordova-plugin-file": ">=1.0.1"
|
|
||||||
},
|
|
||||||
"author": "Apache Software Foundation",
|
"author": "Apache Software Foundation",
|
||||||
"license": "Apache 2.0"
|
"license": "Apache 2.0"
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
||||||
id="cordova-plugin-camera"
|
id="org.apache.cordova.camera"
|
||||||
version="0.3.7-dev">
|
version="0.3.7-dev">
|
||||||
<name>Camera</name>
|
<name>Camera</name>
|
||||||
<description>Cordova Camera Plugin</description>
|
<description>Cordova Camera Plugin</description>
|
||||||
|
@ -60,7 +60,7 @@ function showCameraDialog (done, cancel, fail) {
|
|||||||
});
|
});
|
||||||
wv.on('JavaScriptCallback', function (evt, data) {
|
wv.on('JavaScriptCallback', function (evt, data) {
|
||||||
var args = JSON.parse(data).args;
|
var args = JSON.parse(data).args;
|
||||||
if (args[0] === 'cordova-plugin-camera') {
|
if (args[0] === 'org.apache.cordova.camera') {
|
||||||
if (args[1] === 'cancel') {
|
if (args[1] === 'cancel') {
|
||||||
cancel('User canceled');
|
cancel('User canceled');
|
||||||
} else if (args[1] === 'error') {
|
} else if (args[1] === 'error') {
|
||||||
|
@ -21,12 +21,12 @@
|
|||||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
||||||
id="cordova-plugin-camera-tests"
|
id="org.apache.cordova.camera.tests"
|
||||||
version="0.3.7-dev">
|
version="0.3.7-dev">
|
||||||
<name>Cordova Camera Plugin Tests</name>
|
<name>Cordova Camera Plugin Tests</name>
|
||||||
<license>Apache 2.0</license>
|
<license>Apache 2.0</license>
|
||||||
|
|
||||||
<dependency id="cordova-plugin-file" version=">=1.0.1" />
|
<dependency id="org.apache.cordova.file" version=">=1.0.1" />
|
||||||
|
|
||||||
<js-module src="tests.js" name="tests">
|
<js-module src="tests.js" name="tests">
|
||||||
</js-module>
|
</js-module>
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
document.getElementById('back').onclick = function () {
|
document.getElementById('back').onclick = function () {
|
||||||
window.qnx.callExtensionMethod('cordova-plugin-camera', 'cancel');
|
window.qnx.callExtensionMethod('org.apache.cordova.camera', 'cancel');
|
||||||
};
|
};
|
||||||
window.navigator.webkitGetUserMedia(
|
window.navigator.webkitGetUserMedia(
|
||||||
{ video: true },
|
{ video: true },
|
||||||
@ -36,11 +36,11 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
canvas.width = video.videoWidth;
|
canvas.width = video.videoWidth;
|
||||||
canvas.height = video.videoHeight;
|
canvas.height = video.videoHeight;
|
||||||
canvas.getContext('2d').drawImage(video, 0, 0, video.videoWidth, video.videoHeight);
|
canvas.getContext('2d').drawImage(video, 0, 0, video.videoWidth, video.videoHeight);
|
||||||
window.qnx.callExtensionMethod('cordova-plugin-camera', canvas.toDataURL('img/png'));
|
window.qnx.callExtensionMethod('org.apache.cordova.camera', canvas.toDataURL('img/png'));
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
function () {
|
function () {
|
||||||
window.qnx.callExtensionMethod('cordova-plugin-camera', 'error', 'getUserMedia failed');
|
window.qnx.callExtensionMethod('org.apache.cordova.camera', 'error', 'getUserMedia failed');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user