欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 国际 > desktopCapturer: 用于桌面捕获音频和视频等媒体源信息,只在主进程可用,下面的例子显示了获取整个屏幕的地址图片

desktopCapturer: 用于桌面捕获音频和视频等媒体源信息,只在主进程可用,下面的例子显示了获取整个屏幕的地址图片

2024/11/17 13:19:05 来源:https://blog.csdn.net/weixin_50236973/article/details/143733050  浏览:    关键词:desktopCapturer: 用于桌面捕获音频和视频等媒体源信息,只在主进程可用,下面的例子显示了获取整个屏幕的地址图片
// main.js 主进程const getSource = mainWindow => {ipcMain.handle('desktop-capturer', async (event) => {return desktopCapturer.getSources({types: ['window', 'screen'],// thumbnailSize: {//     width: 1728,//     height: 1117// }}).then(async (sources) => {console.log(sources, '主进程');return sources // for(const source of sources) {//     if (source.name === 'Entire Screen') {//         mainWindow.webContents.send('SET_SOURCE', source)//     }// }})})
}app.whenReady().then(() => {getSource();
})

// preload.js, 通过预加载进程, 向渲染进程传递地址然后显示出来const {desktopCapturer, contextBridge, ipcRenderer} = require('electron')const capture = async mainWindow => {const sources = await ipcRenderer.invoke('desktop-capturer')console.log(sources, 'sources');for(const source of sources) {if (source.name === 'Entire Screen' || source.name === '整个屏幕') {// mainWindow.webContents.send('SET_SOURCE', source)// 取资源let str = source.thumbnail.crop({x: 0, y: 30, width: 1200, height: 1170})const imgSrc = str.toDataURL()return imgSrc }}
}contextBridge.exposeInMainWorld('AAA', {capture
})

// sources资源的输出结果

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com