1. 程式人生 > >利用pdf2swf將PDF轉換成SWF

利用pdf2swf將PDF轉換成SWF

一個簡單的將PDF文件轉成SWF的用法:

C:\SWFTools\pdf2swf example.pdf -o example.swf -f -T 9


1、首先下載安裝,一直預設下一步即可。
2、java程式碼

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;

public class TestPdf2Swf {
	public static int convertPDF2SWF(String sourcePath, String destPath,
					String fileName) throws IOException {
		// 目標路徑不存在則建立目標路徑
		File dest = new File(destPath);
		if (!dest.exists())
			dest.mkdirs();

		// 原始檔不存在則返回
		File source = new File(sourcePath);
		if (!source.exists())
			return 0;

		// 呼叫pdf2swf命令進行轉換
		String command = "C:\\SWFTools\\pdf2swf.exe" + " " + sourcePath+ " -o " 
				+ destPath + fileName + " -f -T 9";
		System.out.println(command);
		Process pro = Runtime.getRuntime().exec(command);

		BufferedReader bufferedReader = new BufferedReader(
				new InputStreamReader(pro.getInputStream()));
		while (bufferedReader.readLine() != null);
		try {
			pro.waitFor();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		return pro.exitValue();
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String sourcePath = "D:\\springFramework.pdf"; //原始檔路徑
		String destPath = "D:\\";                      //目標路徑
		String fileName = "springFramework.swf";       //生成檔名
		try {
			TestPdf2Swf.convertPDF2SWF(sourcePath, destPath, fileName);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

 ==========分割線=============

有網友反映無法生成swf檔案,由於文章時間已經很久了,我又重新下載安裝執行了一遍,是沒問題的。

對於大家的困擾我也是無能為力啊 ┭┮﹏┭┮,抱歉

                                                                                               更新於:2018-06-20