带JCIFS的JPEGTranscoder

时间:2012-12-18 04:41:30

标签: java jcifs

我已经参考以下链接将SVG文件转换为JPEG格式:

http://xmlgraphics.apache.org/batik/using/transcoder.html

以下是我尝试过的示例:

import java.io.*;

import org.apache.batik.transcoder.image.JPEGTranscoder;
import org.apache.batik.transcoder.TranscoderInput;
import org.apache.batik.transcoder.TranscoderOutput;

public class SaveAsJPEG {

    public static void main(String[] args) throws Exception {

        // Create a JPEG transcoder
        JPEGTranscoder t = new JPEGTranscoder();

        // Set the transcoding hints.
        t.addTranscodingHint(JPEGTranscoder.KEY_QUALITY,
                   new Float(.8));

        // Create the transcoder input.
        String svgURI = new File(args[0]).toURL().toString();
        TranscoderInput input = new TranscoderInput(svgURI);

        // Create the transcoder output.
        OutputStream ostream = new FileOutputStream("out.jpg");
        TranscoderOutput output = new TranscoderOutput(ostream);

        // Save the image.
        t.transcode(input, output);

        // Flush and close the stream.
        ostream.flush();
        ostream.close();
        System.exit(0);
    }
}

上述程序在项目路径中创建文件的JPEG版本。 是否有可能使用JCIFS(SmbFile)概念来调整此程序以在受保护的共享文件夹中读取和创建转换后的文件?

0 个答案:

没有答案