Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
PDFをEPUBにオンラインで変換してみてください
Aspose.PDF for .NETは、機能と品質を調査するために使用できるオンライン無料アプリケーション“PDF to EPUB”を提供します。
**EPUB**は、国際デジタル出版フォーラム(IDPF)からの無料でオープンな電子書籍標準です。ファイルの拡張子は.epubです。 EPUBは再フロー可能なコンテンツのために設計されており、EPUBリーダーは特定の表示デバイスに最適化されたテキストを提供できます。EPUBは固定レイアウトのコンテンツもサポートしています。このフォーマットは、出版社や変換業者が社内で使用するため、また配布や販売のために使用できる単一のフォーマットとして意図されています。これはOpen eBook標準を置き換えます。
次のコードスニペットは、Aspose.PDF.Drawingライブラリでも動作します。
Aspose.PDF for .NETは、PDFドキュメントをEPUB形式に変換する機能もサポートしています。Aspose.PDF for .NETには、Document.Save(..)
メソッドの第二引数として使用できるEpubSaveOptionsというクラスがあります。これを使用してEPUBファイルを生成します。
次のコードスニペットを使用して、C#でこの要件を達成してみてください。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoEPUB()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFToEPUB.pdf"))
{
// Instantiate Epub Save options
EpubSaveOptions options = new EpubSaveOptions();
// Specify the layout for contents
options.ContentRecognitionMode = EpubSaveOptions.RecognitionMode.Flow;
// Save ePUB document
document.Save(dataDir + "PDFToEPUB_out.epub", options);
}
}
Aspose.PDF for .NETは、PDFをLaTeX/TeXに変換することをサポートしています。 LaTeXファイル形式は、特別なマークアップを持つテキストファイル形式であり、高品質な組版のためのTeXベースの文書作成システムで使用されます。
PDFをLaTeX/TeXにオンラインで変換してみてください
Aspose.PDF for .NETは、機能と品質を調査するために使用できるオンライン無料アプリケーション“PDF to LaTeX”を提供します。
PDFファイルをTeXに変換するために、Aspose.PDFには、変換プロセス中に一時画像を保存するためのプロパティOutDirectoryPathを提供するLaTeXSaveOptionsというクラスがあります。
次のコードスニペットは、C#を使用してPDFファイルをTEX形式に変換するプロセスを示しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTeX()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFToTeX.pdf"))
{
// Instantiate LaTex save option
LaTeXSaveOptions saveOptions = new LaTeXSaveOptions();
// Specify the output directory
string pathToOutputDirectory = dataDir;
// Set the output directory path for save option object
saveOptions.OutDirectoryPath = pathToOutputDirectory;
// Save PDF document into LaTex format
document.Save(dataDir + "PDFToTeX_out.tex", saveOptions);
}
}
Aspose.PDF for .NETは、PDFドキュメント全体と単一ページをテキストファイルに変換することをサポートしています。
TextAbsorberクラスのVisitメソッドを使用して、PDFドキュメントをTXTファイルに変換できます。
次のコードスニペットは、すべてのページからテキストを抽出する方法を説明しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTXT()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "demo.pdf"))
{
var ta = new Aspose.Pdf.Text.TextAbsorber();
ta.Visit(document);
// Save the extracted text in text file
File.WriteAllText(dataDir + "input_Text_Extracted_out.txt",ta.Text);
}
}
PDFをテキストにオンラインで変換してみてください
Aspose.PDF for .NETは、機能と品質を調査するために使用できるオンライン無料アプリケーション“PDF to Text”を提供します。
Aspose.PDF for .NETを使用してPDFドキュメントをTXTファイルに変換できます。このタスクを解決するために、TextAbsorber
クラスのVisit
メソッドを使用する必要があります。
次のコードスニペットは、特定のページからテキストを抽出する方法を説明しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoTXT()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "demo.pdf"))
{
var ta = new Aspose.Pdf.Text.TextAbsorber();
var pages = new [] {1, 3, 4};
foreach (var page in pages)
{
ta.Visit(document.Pages[page]);
}
// Save the extracted text in text file
File.WriteAllText(dataDir + "input_Text_Extracted_out.txt", ta.Text);
}
}
Aspose.PDF for .NETは、PDFファイルをXPS形式に変換する機能を提供します。C#を使用してPDFファイルをXPS形式に変換するために、提示されたコードスニペットを使用してみましょう。
XPSファイルタイプは、主にマイクロソフト社のXML Paper Specificationに関連付けられています。XML Paper Specification(XPS)は、以前はMetroというコード名で知られ、次世代印刷パス(NGPP)マーケティングコンセプトを包含するもので、文書作成と表示をWindowsオペレーティングシステムに統合するためのマイクロソフトの取り組みです。
PDFファイルをXPSに変換するために、Aspose.PDFには、XPSファイルを生成するためにDocument.Save(..)メソッドの第二引数として使用されるXpsSaveOptionsというクラスがあります。
24.2リリース以降、Aspose.PDFは、結果のXPSでテキストを選択可能に保ちながら、検索可能なPDFをXPSに変換する機能を実装しました。テキストを保持するためには、XpsSaveOptions.SaveTransparentTextsプロパティをtrueに設定する必要があります。
次のコードスニペットは、PDFファイルをXPS形式に変換するプロセスを示しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoXPS()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
using (var document = new Aspose.Pdf.Document(dataDir + "demo.pdf"))
{
var xpsOptions = new XpsSaveOptions
{
SaveTransparentTexts = true
};
// Save XPS document
document.Save(dataDir + "PDFtoXPS_out.xps", xpsOptions);
}
}
Aspose.PDF for .NETは、PDFファイルをMD形式に変換する機能を提供します。C#を使用してPDFファイルをMD形式に変換するために、提示されたコードスニペットを使用してみましょう。
Markdownは、最大限の人間の可読性と機械可読性を持つプレーンテキストフォーマットを表現するために設計された軽量マークアップ言語です。
画像を含むディレクトリでは、画像の数がPDFファイル内の画像の数よりも少ないことに気付くでしょう。
Markdownファイルでは画像サイズを設定できないため、MarkdownSaveOptions.UseImageHtmlTagオプションなしでは、同じ種類の画像が異なるサイズで保存されます。
MarkdownSaveOptions.UseImageHtmlTagオプションを有効にすると、文書内でimgタグによってスケーリングされたユニークな画像が保存されます。
このコードは、PDFドキュメントを開き、Markdownファイルに変換するためのパラメータを設定し(“images"という名前のフォルダに画像を保存)、指定された出力パスに結果のMarkdownファイルを保存します。
次のコードスニペットは、PDFファイルをMD形式に変換するプロセスを示しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPDFtoMarkup()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "demo.pdf"))
{
// Create an instance of MarkdownSaveOptions to configure the Markdown export settings
var saveOptions = new MarkdownSaveOptions()
{
// Set to false to prevent the use of HTML <img> tags for images in the Markdown output
UseImageHtmlTag = false
}
// Specify the directory name where resources (like images) will be stored
saveOptions.ResourcesDirectoryName = "images";
// Save PDF document in Markdown format to the specified output file path using the defined save options
document.Save(dataDir + "PDFtoMarkup_out.md", saveOptions);
}
}
MobiXMLは、モバイルプラットフォームで使用するために設計された人気のある電子書籍フォーマットです。 次のコードスニペットは、PDFドキュメントをMobiXMLファイルに変換する方法を説明しています。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ConvertPdfToMobiXml()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "PDFToXML.pdf"))
{
// Save PDF document in XML format
document.Save(dataDir + "PDFToXML_out.xml", Aspose.Pdf.SaveFormat.MobiXml);
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.