Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
PDFレイヤーは、PDFドキュメントが異なるコンテンツセットを含むことを可能にし、それらを選択的に表示または非表示にできます。PDF内の各レイヤーには、テキスト、画像、またはグラフィックスが含まれており、ユーザーはニーズに応じてこれらのレイヤーをオンまたはオフに切り替えることができます。レイヤーは、異なるコンテンツを整理または分離する必要がある複雑なドキュメントでよく使用されます。
Aspose.PDF for .NETを使用すると、PDFを開き、最初のページの特定のレイヤーをロックし、変更を加えたドキュメントを保存できます。
この機能は、24.5リリース以降に実装されました。
新しいメソッドが2つ追加され、1つのプロパティが追加されました:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void LockLayerInPDF()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Layers();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Get the first page and the first layer
var page = document.Pages[1];
var layer = page.Layers[0];
// Lock the layer
layer.Lock();
// Save PDF document
document.Save(dataDir + "LockLayerInPDF_out.pdf");
}
}
Aspose.PDF for .NETライブラリは、最初のページから各レイヤーを抽出し、各レイヤーを別々のファイルに保存することを可能にします。
レイヤーから新しいPDFを作成するには、次のコードスニペットを使用できます:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void SaveLayersFromPdf()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Get layers from the first page
var layers = document.Pages[1].Layers;
// Save each layer to the output path
foreach (var layer in layers)
{
layer.Save(dataDir + "Layers_out.pdf");
}
}
}
24.9リリースにより、この機能が更新されました。
PDFレイヤー要素を抽出し、新しいPDFファイルストリームに保存することが可能です:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void SaveLayersToOutputStream(Stream outputStream)
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Get layers from the first page
var layers = document.Pages[1].Layers;
// Save each layer to the output stream
foreach (var layer in layers)
{
layer.Save(outputStream);
}
}
}
Aspose.PDF for .NETライブラリは、PDFを開き、最初のページの各レイヤーを反復処理し、各レイヤーをフラット化してページ上に永続化します。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void FlattenLayersInPdf()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Get the first page
var page = document.Pages[1];
// Flatten each layer on the page
foreach (var layer in page.Layers)
{
layer.Flatten(true);
}
}
}
‘Layer.Flatten(bool cleanupContentStream)‘メソッドは、コンテンツストリームからオプショナルコンテンツグループマーカーを削除するかどうかを指定するブールパラメータを受け入れます。cleanupContentStreamパラメータをfalseに設定すると、フラット化のプロセスが高速化されます。
Aspose.PDF for .NETライブラリは、すべてのPDFレイヤーまたは最初のページの特定のレイヤーを新しいレイヤーにマージし、更新されたドキュメントを保存することを可能にします。
ページ上のすべてのレイヤーをマージするために2つのメソッドが追加されました:
2番目のパラメータは、オプショナルコンテンツグループマーカーの名前を変更することを可能にします。デフォルト値は"oc1" (/OC /oc1 BDC)です。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void MergeLayersInPdf(string newLayerName, string optionalLayerName = null)
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Get the first page
var page = document.Pages[1];
// Merge layers with a new layer name
if (optionalLayerName != null)
{
page.MergeLayers(newLayerName, optionalLayerName);
}
else
{
page.MergeLayers(newLayerName);
}
// Save PDF document
document.Save(dataDir + "MergeLayersInPdf_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.