I am writing a web application in Golang, in which user can upload a doc or docx file. Some of the file contents will be changed according to a predefined format. Later user can download the changed file either in docx or in pdf format. Now my application accepts only docx file, change the file according to predefined format and let the user download it back in docx format itself. Are there any packages available in golang to convert doc to docx and docx to pdf?
2条回答 默认 最新
- dongxian4531 2016-03-31 12:13关注
As I am using linux ubuntu OS Hugo's answer didn't help me(But I recommend it for the windows users). But it gave me an idea about how to solve this problem. codefreak's comment on the question gave me a clear picture. I used both of their advice and result was the use of LibreOffice for the convertion.
arg0 := "lowriter" arg1 := "--invisible" //This command is optional, it will help to disable the splash screen of LibreOffice. arg2 := "--convert-to" arg3 := "pdf:writer_pdf_Export" path := "/home/user/Test.docx" nout, err := exec.Command(arg0,arg1,arg2,arg3,path).Output()
This code will call LibreOffice and convert .docx file into .pdf. This is the easiest method as far as I know. Please post other answers which may help future readers.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥50 vue-codemirror如何对指定行 指定位置的 字符进行背景颜色或者字体颜色的修改?
- ¥15 有人会思科模拟器嘛?
- ¥30 遇到一个的问题,请教各位
- ¥20 matlab报错,vflux计算潜流通量
- ¥15 我该如何实现鼠标按下GUI按钮时就执行按钮里面的操作的方法
- ¥15 关于#硬件工程#的问题:我这边有个锁相环电路没有效果
- ¥15 20款 27寸imac苹果一体机装win10后,蓝牙耳机和音响放歌曲卡顿断断续续.
- ¥15 VB.NET 父窗体调取子窗体报错
- ¥15 python海龟作图如何改代码使其最后画出来的是一个镜像翻转的图形
- ¥15 我不明白为什么c#微软的官方api浏览器为什么不支持函数说明的检索,有支持检索函数说明的工具吗?