CHMドキュメントを開いて変換する方法は?


9

ある.chm形式のドキュメントがいくつかあります。ナビゲートしやすく、サポートされていて、Ubuntuで同じファイルサイズのファイル形式はあるのでしょうか。

ある場合は、それらすべての本を変換し始め、おそらくすべてのUbuntu PCとAndroidスマートフォンで手間をかけずにそれらを使用したいと思います。


回答:


13

コマンドラインプログラムchm2pdfを使用して、PDFに変換できます(ここにchm2pdfをインストールします)。インストールしたら、次のようにターミナルからコマンドを実行できます。

chm2pdf --book in.chm out.pdf

ご存じない場合は、いくつかのchmリーダーをご利用いただけますchm。ソフトウェアセンターで検索してください。

コマンドラインツール7-Zipを使用してchmファイルをhtmlに抽出することもできます(ここにp7zip-fullをインストールします):

7z x file.chm

PDF変換は私が探している解決策ではありません。しかし、あなたの迅速な返信に感謝します。他のアイデア?
フリオ

3

PDFを使用したくない場合は、かなり良いオープンな電子書籍形式であるEpubをお勧めします。UbuntuにCalibreという優れたリーダーをインストールできます。Calibreには、chmファイルをインポートできる便利な変換機能があり、 epubを含む他のフォーマットに変換します。epubは、ほとんどのスマートフォンやタブレットでも簡単に読むことができます。

Calibreはソフトウェアセンターからインストールできます。


2

KDEを使用する場合は、KChmViewerもあります。


KChmViewerは問題ありません。しかし、Firefoxのアドオン[CHMリーダー]を使用します。私の問題には適切な解決策ではありません。私はすでにサポートされているより適切な形式にする必要があるこれらの粗雑なchmファイルを削除したいのです。Pdfも良くありません。オプション?
Julio



0

dv3500eaには素晴らしいchm2pdf回答がありますが、私はそれらをhtmlファイルとして読むことを好みます。

要するに:

sudo apt-get install libchm-bin
extract_chmLib myFile.chm outdir

出典:http : //www.ubuntugeek.com/how-to-convert-chm-files-to-html-or-pdf-files.html

次に、開いて./outdir/index.html変換されたhtmlファイルを表示します!イエーイ!ずっといい。これで、.chmファイルと同じように移動できますが、Chromeブラウザを使用して、ページ内のテキストを検索したり、簡単に印刷したりすることもできます。

というコマンドを作ってみましょう chm2html

これが私が書いた素晴らしいスクリプトです。

  1. 以下のスクリプトをコピーしてファイルに貼り付けます chm2html.py
  2. 実行可能にします。 chmod +x chm2html.py
  3. ~/binまだディレクトリがない場合は作成します。mkdir ~/bin
  4. ~/binディレクトリにchm2html.pyへのシンボリックリンクを作成します。ln -s ~/path/to/chm2html.py ~/bin/chm2html
  5. Ubuntuからログアウトして再度ログインするか、パスをリロードします source ~/.bashrc
  6. これを使って!chm2html myFile.chm。これにより、.chmファイルが自動的に変換され、.htmlファイルがという新しいフォルダーに配置されます./myFile。次に、./myFile_index.htmlを指すというシンボリックリンクが作成され./myFile/index.htmlます。

chm2html.py ファイル:

#!/usr/bin/python3

"""
chm2html.py
- convert .chm files to .html, using the command shown here, with a few extra features (folder names, shortcuts, etc):
http://www.ubuntugeek.com/how-to-convert-chm-files-to-html-or-pdf-files.html
- (this is my first ever python shell script to be used as a bash replacement)

Gabriel Staples
www.ElectricRCAircraftGuy.com 
Written: 2 Apr. 2018 
Updated: 2 Apr. 2018 

References:
- http://www.ubuntugeek.com/how-to-convert-chm-files-to-html-or-pdf-files.html
  - format: `extract_chmLib book.chm outdir`
- http://www.linuxjournal.com/content/python-scripts-replacement-bash-utility-scripts
- http://www.pythonforbeginners.com/system/python-sys-argv

USAGE/Python command format: `./chm2html.py fileName.chm`
 - make a symbolic link to this target in ~/bin: `ln -s ~/GS/dev/shell_scripts-Linux/chm2html/chm2html.py ~/bin/chm2html`
   - Now you can call `chm2html file.chm`
 - This will automatically convert the fileName.chm file to .html files by creating a fileName directory where you are,
then it will also create a symbolic link right there to ./fileName/index.html, with the symbolic link name being
fileName_index.html

"""


import sys, os

if __name__ == "__main__":
    # print("argument = " + sys.argv[1]); # print 1st argument; DEBUGGING
    # print(len(sys.argv)) # DEBUGGING

    # get file name from input parameter
    if (len(sys.argv) <= 1):
        print("Error: missing .chm file input parameter. \n"
              "Usage: `./chm2html.py fileName.chm`. \n"
              "Type `./chm2html -h` for help. `Exiting.")
        sys.exit()

    if (sys.argv[1]=="-h" or sys.argv[1]=="h" or sys.argv[1]=="help" or sys.argv[1]=="-help"):
        print("Usage: `./chm2html.py fileName.chm`. This will automatically convert the fileName.chm file to\n"
              ".html files by creating a directory named \"fileName\" right where you are, then it will also create a\n"
              "symbolic link in your current folder to ./fileName/index.html, with the symbolic link name being fileName_index.html")
        sys.exit()

    file = sys.argv[1] # Full input parameter (fileName.chm)
    name = file[:-4] # Just the fileName part, withOUT the extension
    extension = file[-4:]
    if (extension != ".chm"):
        print("Error: Input parameter must be a .chm file. Exiting.")
        sys.exit()

    # print(name) # DEBUGGING
    # Convert the .chm file to .html
    command = "extract_chmLib " + file + " " + name
    print("Command: " + command)
    os.system(command)

    # Make a symbolic link to ./name/index.html now
    pwd = os.getcwd()
    target = pwd + "/" + name + "/index.html"
    # print(target) # DEBUGGING
    # see if target exists 
    if (os.path.isfile(target) == False):
        print("Error: \"" + target + "\" does not exist. Exiting.")
        sys.exit()
    # make link
    ln_command = "ln -s " + target + " " + name + "_index.html"
    print("Command: " + ln_command)
    os.system(ln_command)

    print("Operation completed successfully.")
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.