如何用ruby在excel中保存图片
我在excel中有图片,如何用ruby导出图片
我想提取图像并将它们保存为图像文件
I have pictures in excel, how to export pictures with ruby
i want to extract the images and save them as image files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我明白这个问题。 Excel 工作簿中有一个图像(很可能是一个 OLE 对象),您希望将其保存为单独的图像文件。我知道做到这一点的唯一方法是使用 win32ole gem 控制 Excel 本身,这是一个开始(未经测试,因为我运行 Linux):
然后我会从生成的图像目录中提取图像。
I understand the question. There is an image (quite possibly an OLE object) in an excel workbook, and you want to save it as an individual image file. The only way I know of to do that is to control Excel itself using the win32ole gem, here's a start (untested, as I run linux):
Then I would pull out the images from the resulting image directory.