HousePlanLayers.cs
// 
// このコードは、DioDocs for PDF のサンプルの一部として提供されています。
// © MESCIUS inc. All rights reserved.
// 

using System;
using System.IO;
using System.Drawing;
using System.Collections.Generic;
using GrapeCity.Documents.Pdf;
using GrapeCity.Documents.Pdf.Layers;
using GrapeCity.Documents.Pdf.Annotations;
using GrapeCity.Documents.Pdf.Graphics;
using GrapeCity.Documents.Text;
using GrapeCity.Documents.Drawing;

namespace DsPdfWeb.Demos
{
    // このサンプルでは、住宅の電気設計図の一部分を示した PDF のセットから、
    // マルチレイヤーの PDF ドキュメントを作成しています。
    // それぞれの PDF は別のレイヤーとして追加されます。 
    // 結果として出力された PDF では、住宅の電気配線の一部(例:空調の設定だけ、
    // コンセントだけなど)を選択的に閲覧できるオプションコンテンツ(レイヤー)を
    // 利用することができます。
    public class HousePlanLayers
    {
        public int CreatePDF(Stream stream)
        {
            // ドキュメントの内容がわかるファイル名部分の一覧
            var fnames = new List<string>()
            {
                "full_electrical_plan.pdf",
                "all_outlets.pdf",
                "data_plan_and_detectors.pdf",
                "HVAC_with_wiring.pdf",
                "lighting_plan.pdf",
                "lighting_plan_with_wiring.pdf",
                "security_system_plan.pdf",
            };
            // 共通の PDF ファイル名
            var fbase = "how_to_read_electrical_plans_";
            // PDF が配置されたディレクトリ
            var dir = Path.Combine("Resources", "PDFs");

            GcPdfDocument doc = null;
            Page page = null;
            GcPdfGraphics g = null;
            var disposables = new List<IDisposable>();
            // すべての PDF を1つのドキュメントにまとめます。
            // 最初の PDF をベースとして使用し、他の PDF を
            // オプションのコンテンツ(レイヤー)として追加していきます。
            for (int i = 0; i < fnames.Count; ++i)
            {
                var iname = fnames[i];
                var idoc = new GcPdfDocument();
                var ifs = File.OpenRead(Path.Combine(dir, fbase + iname));
                idoc.Load(ifs);
                disposables.Add(ifs);
                if (i == 0)
                {
                    doc = idoc;
                    page = idoc.Pages.Last;
                    g = page.Graphics;
                }
                else
                {
                    doc.OptionalContent.AddLayer(iname);
                    doc.OptionalContent.SetLayerDefaultState(iname, false);
                    g.BeginLayer(iname);
                    g.DrawPdfPage(idoc.Pages[0], page.Bounds);
                    g.EndLayer();
                }
            }

            // PDF を保存します。
            doc.Save(stream);

            // ファイルストリームを廃棄します。
            disposables.ForEach(d_ => d_.Dispose());
            return doc.Pages.Count;
        }
    }
}