软件专题-文件格式互转方案

通用平台

在线平台

本地平台

格式工厂

格式工厂没有绿色版,但内容扎实,可以说是良心软件了

HandBrake 视频转码

HandBrake【win mac linux】 仅可用于视频转码器

注:windows 版有便携版

not

File Converter 支持格式丰富【win 安装版】,但是转换文件超过一定容量要收费

word 转 pdf

在线版

网页工具:Word 转换为 PDF 文件。DOC 文件转换为 PDF 文件

离线版

注:其余无论国产/国外软件转 pdf 软件大多是付费服务,要不免费版有水印,要不就是前几页免费,极度不推荐。

pdf 转 word

  • 离线版 万彩办公大师官网-免费的办公工具百宝箱 OfficeBox,绿色无广告无捆绑。
  • ilovepdf 在线版 将你的 PDF 转换为 DOC 和 DOCX 文件,以便于编辑

markdown 转 html

  1. 编辑器导出,例如使用 typora。
  2. 借助 pandoc

需要先行安装 pandoc 工具。pandoc 是进行文件类型转换的瑞士军刀,初次接触的同学可以体验下Pandoc Demos。更多信息请查看Pandoc User’s Guide

1
pandoc 15-GitHub-使用总结.md  -s -c style.css  -o abc.html

其中,”style.css” 是自定义的模板。以下仓库有更多模板供参考。

asin929/markdown-css: a collection of makrdown css.
https://github.com/asin929/markdown-css

html 转 pdf

wkhtmltopdf,生成的 pdf 有目录。比直接打印网页强。

简单用法

1
wkhtmltopdf www.ithome.com ithome.pdf

加页脚页码 wkhtmltopdf --footer-center [page]/[topage] www.ithome.com ithome.pdf

遇到的问题:目前好像必须源文件是 http/https 的资源,不能是本地的资源。我最终选择本地启了一个服务才完成转 pdf。

markdown 转为 word

在线方案
阿里语雀-https://www.yuque.com/ 的导出 word 功能。

本地方案1-typora

  1. 编辑器导出,例如使用 typora。该软件默认预设了多种主题,然后界面支持多语言。多级标题也能完美展示。

本地方案2-pandoc 命令行工具

pandoc -s MANUAL.txt -o example29.docx

下载 pandoc 的地址 https://github.com/jgm/pandoc/releases

markdown 转为 pdf

  1. 编辑器导出,例如使用 typora。
  2. 借助 pandoc 命令行工具,但是配置太多了,因此不推荐。
  3. 迂回方案 1:markdown 先转成 html, 最终再转成 pdf。
  4. 迂回方案 2:markdown 先转成 docx, 最终再转成 pdf。

参考