我試圖建立一個基於cordova的應用程序使用離子。 在我的應用程序中,有一個部分,用戶可以從我們的服務器中選擇圖像並移動它們或對其執行一些操作(如縮放&旋轉...)。最後,我希望他們能夠在我們的網站和社交媒體上分享結果。我的問題是,我怎樣才能從他們構建它的佈局中獲取屏幕截圖?我已經看到了html2canvas庫,但它存儲在我們的服務器上的外源圖像有問題,並且不需要它們的屏幕截圖。如何從離子/科爾多瓦/ phonegap中的佈局拍攝屏幕截圖?
1
A
回答
0
文件Screenshot.js到:
var formats = ['png','jpg'];
function Screenshot() {
}
Screenshot.prototype.save = function (callback,format,quality, filename) {
format = (format || 'png').toLowerCase();
filename = filename || 'screenshot_'+Math.round((+(new Date()) + Math.random()));
if(formats.indexOf(format) === -1){
return callback && callback(new Error('invalid format '+format));
}
quality = typeof(quality) !== 'number'?100:quality;
cordova.exec(function(res){
callback && callback(null,res);
}, function(error){
callback && callback(error);
}, "Screenshot", "saveScreenshot", [format, quality, filename]);
};
Screenshot.install = function() {
if (!window.plugins) {
window.plugins = {};
}
window.plugins.screenshot = new Screenshot();
return window.plugins.screenshot;
};
cordova.addConstructor(Screenshot.install);
This way I can make the call with the following code:
window.plugins.screenshot.save(function(error,res){
if(error){
alert(error);
}else{
alert('ok',res.filePath); //should be path/to/myScreenshot.jpg
}
},'jpg',50,'myScreenShot');
這工作完全在我的Android智能手機。
我在res還添加/ XML/config.xml文件:
<feature name="Screenshot">
<param name="android-package" value="org.apache.cordova.screenshot.Screenshot"/>
</feature>
在AndroidManifest.xml文件:
並添加下面的包中的Java類: org.apache.cordova.screenshot.Screenshot
所有這些配置都包含plugin.xml中的信息插件
0
最簡單的辦法的文件是使用這個插件:
3
安裝以下插件到您的項目
cordova plugin add https://github.com/gitawego/cordova-screenshot.git
這項服務添加到您的角模塊
.service('$cordovaScreenshot', ['$q', function($q) {
return {
capture: function(filename, extension, quality) {
extension = extension || 'jpg';
quality = quality || '100';
var defer = $q.defer();
navigator.screenshot.save(function(error, res) {
if (error) {
console.error(error);
defer.reject(error);
} else {
console.log('screenshot saved in: ', res.filePath);
defer.resolve(res.filePath);
}
}, extension, quality, filename);
return defer.promise;
}
};
}]);
比,你可以簡單地添加一個按鈕採取這項服務的屏幕截圖。
我在這裏有一個很好的例子採取截圖,並在Facebook上分享:
//Take a picture
$cordovaScreenshot.capture()
.then(function(result) {
//on success you get the image url
//post on facebook (image & link can be null)
$cordovaSocialSharing
.shareViaFacebook("Text to post here...", result, "Link to share")
.then(function(result) {
//do something on post success or ignore it...
}, function(err) {
console.log("there was an error sharing!");
});
}, function(err) {
console.log("there was an error taking a a screenshot!");
});
請注意,本例中使用由ngCordova社會共享插件: http://ngcordova.com/docs/plugins/socialSharing/
相關問題
- 1. 離子從科爾多瓦
- 2. Android - 拍攝屏幕截圖
- 3. 科爾多瓦/離子:保持離子滑動/離子卡內屏幕視圖
- 4. 如何拍攝終端屏幕截圖
- 5. 從flv視頻拍攝屏幕截圖
- 6. 離子/科爾多瓦:「ERR_CONNECTION_REFUSED」
- 7. 在XNA中拍攝屏幕截圖
- 8. 離子/科爾多瓦屏幕方向不起作用
- 9. 科爾多瓦屏幕截圖插件:不適用於iOS
- 10. 在GLUT中拍攝屏幕截圖
- 11. 拍攝UIWebView的快照/屏幕截圖
- 12. 離子2科爾多瓦,安裝科爾多瓦插件typings
- 13. 以silverlight 5/xna拍攝屏幕截圖
- 14. 拍攝屏幕截圖(含root)
- 15. 拍攝iOS中整個屏幕的屏幕截圖
- 16. 如何從Android中運行視頻拍攝屏幕截圖
- 17. 使用Selenium拍攝屏幕截圖
- 18. 定期拍攝屏幕截圖
- 19. 科爾多瓦覆蓋離子 - 應用程序陷入「Apache科爾多瓦 - 設備就緒」屏幕
- 20. 離子iOS科爾多瓦推令牌
- 21. Android科爾多瓦 - 如何繪製在畫布上拍攝的照片?
- 22. 科爾多瓦WKWebView白色屏幕
- 23. 從localStorage的PhoneGap的/科爾多瓦推GeoLocation中瓦爾到MySQL
- 24. 科爾多瓦/ Phonegap混淆
- 25. 建築離子/科爾多瓦的iOS
- 26. Twitter的API POST科爾多瓦/離子
- 27. 以編程方式拍攝整個屏幕的屏幕截圖
- 28. 離子,科爾多瓦,PhoneGap的加載消息
- 29. PhoneGap的截圖插件在科爾多瓦2.0.0
- 30. parallax.js與離子/科爾多瓦
下面所有的解決方案不在iOS中的圖庫中保存圖像。你能幫忙嗎? –