使用Zip库创建Epub文件

时间:2011-05-05 13:49:26

标签: c# zip epub

全部好,

我正在尝试压缩我使用c#

创建的Epub文件

我尝试过的事情

  • Dot Net Zip http://dotnetzip.codeplex.com/
  • - DotNetZip有效但epubcheck失败了生成的文件(**见下面的编辑)
  • ZipStorer zipstorer.codeplex.com
  • - 创建一个传递验证的epub文件,但该文件不会在Adobe Digital Editions中打开
  • 7 zip
  • - 我没有尝试使用c#,但是当我使用那里的界面压缩文件时,它告诉我mimetype文件名的长度为9,它应该是8

在所有情况下,mimetype文件是添加到存档的第一个文件,未压缩

我使用的Epub验证器是epubcheck http://code.google.com/p/epubcheck/

如果有人使用其中一个库成功压缩了一个epub文件,请告诉我如何或者是否有人使用任何其他开源的压缩API成功压缩epub文件。


修改

DotNetZip有效,请参阅下面接受的答案。

3 个答案:

答案 0 :(得分:12)

如果您需要控制ZIP文件中条目的顺序,可以使用DotNetZip和ZipOutputStream。

你说你试过DotNetZip并且它(epub验证器)给你一个抱怨mime类型的错误。这可能是因为您在DotNetZip中使用了ZipFile类型。如果您使用ZipOutputStream,您可以控制zip条目的顺序,这对于epub来说显然很重要(我不知道格式,只是猜测)。


编辑

我刚检查过,epub page on Wikipedia描述了如何格式化.epub文件。它说mimetype文件必须包含特定文本,必须是未压缩和未加密的,并且必须作为ZIP存档中的第一个文件出现。

使用ZipOutputStream,您可以通过在特定ZipEntry上设置CompressionLevel = None来实现此目的 - 该值不是默认值。

以下是一些示例代码:

private void Zipup()
{
    string _outputFileName = "Fargle.epub";
    using (FileStream fs = File.Open(_outputFileName, FileMode.Create, FileAccess.ReadWrite ))
    {
        using (var output= new ZipOutputStream(fs))
        {
            var e = output.PutNextEntry("mimetype");
            e.CompressionLevel = CompressionLevel.None;

            byte[] buffer= System.Text.Encoding.ASCII.GetBytes("application/epub+zip");
            output.Write(buffer,0,buffer.Length);

            output.PutNextEntry("META-INF/container.xml");
            WriteExistingFile(output, "META-INF/container.xml");
            output.PutNextEntry("OPS/");  // another directory
            output.PutNextEntry("OPS/whatever.xhtml");
            WriteExistingFile(output, "OPS/whatever.xhtml");
            // ...
        }
    }
}

private void WriteExistingFile(Stream output, string filename)
{
    using (FileStream fs = File.Open(fileName, FileMode.Read))
    {
        int n = -1;
        byte[] buffer = new byte[2048];
        while ((n = fs.Read(buffer,0,buffer.Length)) > 0)
        {
            output.Write(buffer,0,n);
        }
    }
}

请参阅ZipOutputStream here的文档。

答案 1 :(得分:7)

为什么不让生活更轻松?

private void IonicZip()
{
    string sourcePath = "C:\\pulications\\";
    string fileName = "filename.epub";

    // Creating ZIP file and writing mimetype
    using (ZipOutputStream zs = new ZipOutputStream(sourcePath + fileName))
    {
        var o = zs.PutNextEntry("mimetype");
        o.CompressionLevel = CompressionLevel.None;

        byte[] mimetype = System.Text.Encoding.ASCII.GetBytes("application/epub+zip");
        zs.Write(mimetype, 0, mimetype.Length);
    }

    // Adding META-INF and OEPBS folders including files     
    using (ZipFile zip = new ZipFile(sourcePath + fileName))
    {
        zip.AddDirectory(sourcePath  + "META-INF", "META-INF");
        zip.AddDirectory(sourcePath  + "OEBPS", "OEBPS");
        zip.Save();
    }
}

答案 2 :(得分:0)

对于像我这样寻求其他方法来实现此目的的任何人,我想补充一下,Jaime Olivares的ZipStorer类是一个不错的选择。您可以将代码直接复制到您的项目中,在“放气”和“存储”之间进行选择非常容易。

https://github.com/jaime-olivares/zipstorer

这是我创建EPUB的代码:

Dictionary<string, string> FilesToZip = new Dictionary<string, string>()
{
    { ConfigPath + @"mimetype",                 @"mimetype"},
    { ConfigPath + @"container.xml",            @"META-INF/container.xml" },
    { OutputFolder + Name.Output_OPF_Name,      @"OEBPS/" + Name.Output_OPF_Name},
    { OutputFolder + Name.Output_XHTML_Name,    @"OEBPS/" + Name.Output_XHTML_Name},
    { ConfigPath + @"style.css",                @"OEBPS/style.css"},
    { OutputFolder + Name.Output_NCX_Name,      @"OEBPS/" + Name.Output_NCX_Name}
};

using (ZipStorer EPUB = ZipStorer.Create(OutputFolder + "book.epub", ""))
{
    bool First = true;
    foreach (KeyValuePair<string, string> File in FilesToZip)
    {
        if (First) { EPUB.AddFile(ZipStorer.Compression.Store, File.Key, File.Value, ""); First = false; }
        else EPUB.AddFile(ZipStorer.Compression.Deflate, File.Key, File.Value, "");
    }
}

此代码创建一个完全有效的EPUB文件。但是,如果您不必担心验证,似乎大多数电子阅读器都会接受带有“ deflate”模仿类型的EPUB。因此,我以前使用.NET的ZipArchive编写的代码产生了可在Adobe Digital Editions和PocketBook中使用的EPUB。