• <menu id="w2i4a"></menu>
  • logo Spire.PDF教程

    文檔首頁>>Spire.PDF教程>>Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形


    更多資源查看:Spire.XLS工作表教程 | Spire.Doc系列教程 | Spire.PDF系列教程

    下載Spire.PDF最新試用版

    Spire.PDF是一個專業(yè)的PDF組件,能夠獨立地創(chuàng)建、編寫、編輯、操作和閱讀PDF文件,支持 .NET、Java、WPF和Silverlight。Spire.PDF的PDF API擁有豐富的功能,如安全設置(包括數字簽名)、PDF文本/附件/圖片提取、PDF文件合并/拆分、元數據更新、章節(jié)和段落優(yōu)化、圖形/圖像描繪和插入、表格創(chuàng)建和處理、數據導入等等。

    圖形和圖片是PDF文檔的重要組成部分。本文將介紹如何添加替換圖片,以及在PDF文檔中直接繪制線段、矩形、橢圓、扇形、多邊形等基本圖形。


    C# PDF 圖片添加、刪除和替換

    Spire.PDF支持豐富的圖片操作功能,例如添加,更改大小,圖片壓縮,提取,替換等等。接下來將介紹最基本的添加、刪除和替換功能。

    插入圖片

    //新建PDF文檔,添加一頁
    PdfDocument doc = new PdfDocument();
    PdfPageBase page = doc.Pages.Add();
    
    //加載圖片到Image對象
    Image image = Image.FromFile(@"C:\logo.png");
    
    //調整圖片大小
    int width = image.Width;
    int height = image.Height;
    float scale = 0.8f;  //縮放比例
    Size size = new Size((int)(width * scale), (int)(height * scale));
    Bitmap scaledImage = new Bitmap(image, size);
    
    //加載縮放后的圖片到PdfImage對象
    PdfImage pdfImage = PdfImage.FromImage(scaledImage);
    
    //設置圖片位置
    float x = 0f;
    float y = 50f;
    
    //在指定位置繪入圖片
    page.Canvas.DrawImage(pdfImage, x, y);
    
    //保存文檔
    doc.SaveToFile("插入圖片.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    設置透明度

    //新建PDF文檔,添加一頁
    PdfDocument doc = new PdfDocument();
    PdfPageBase page = doc.Pages.Add();
    
    //加載兩張圖片到兩個PdfImage對象
    PdfImage image1 = PdfImage.FromFile(@"C:\logo-1.png");
    PdfImage image2 = PdfImage.FromFile(@"C:\logo-2.png");
    
    //設置圖片1的位置
    float x = 0f;
    float y = 50f;
    
    //繪入圖片1
    page.Canvas.DrawImage(image1, x, y);
    
    //保存當前圖像(graphics)的狀態(tài)
    page.Canvas.Save();
    
    //設置圖像的透明度
    page.Canvas.SetTransparency(0.5f);
    
    //在新的位置繪入圖片2
    page.Canvas.DrawImage(image2, x + 50, y + 50);
    
    //保存圖像最后的狀態(tài)
    page.Canvas.Restore();
    
    //保存文檔
    doc.SaveToFile("設置透明度.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    刪除圖片

    //初始化PdfDocument實例
    PdfDocument doc = new PdfDocument();
    
    //加載現有文檔
    doc.LoadFromFile(@"設置透明度.pdf");
    
    //獲取第一頁
    PdfPageBase page = doc.Pages[0];
    
    //刪除第一張圖片
    page.DeleteImage(0);
    
    //保存文檔
    doc.SaveToFile("刪除圖片.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    替換圖片

    //初始化PdfDocument實例
    PdfDocument doc = new PdfDocument();
    
    //加載現有文檔
    doc.LoadFromFile(@"設置透明度.pdf");
    
    //獲取第一頁
    PdfPageBase page = doc.Pages[0];
    
    //加載一張用于替換的圖片
    PdfImage image = PdfImage.FromFile(@"C:\spirepdf.png");
    
    //替換第一張圖片
    page.ReplaceImage(0, image);
    
    //保存文檔
    doc.SaveToFile("替換圖片.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形


    使用 C# 在 PDF 中繪制圖形

    Spire.PDF支持在PDF文檔中直接繪制線段、矩形、橢圓、扇形、多邊形等基本圖形,根據已有的方法程序員可以創(chuàng)建自定義函數繪制特殊圖形。除此以外,Spire.PDF還支持為同一色彩創(chuàng)建不同的透明度,讓圖形的著色更有層次感。

    直接繪制基本圖形

    //新建一個PDF文檔
    PdfDocument doc = new PdfDocument();
    PdfPageBase page = doc.Pages.Add();
    
    //設置畫筆和畫刷
    PdfPen pen = new PdfPen(PdfBrushes.Black, 1f);
    PdfBrush brush = PdfBrushes.Red;
    
    //繪入矩形
    page.Canvas.DrawRectangle(pen, brush, new Rectangle(new Point(50, 50), new Size(60, 60)));
    
    //繪入橢圓(此處為圓形)
    page.Canvas.DrawEllipse(pen, brush, 210, 50, 60, 60);
    
    //繪入線段
    page.Canvas.DrawLine(pen, new PointF(50, 115), new PointF(270, 115));
    
    //繪入多邊形(此處為三角形)
    PointF p1 = new PointF(130, 172);
    PointF p2 = new PointF(160, 120);
    PointF p3 = new PointF(190, 172);
    PointF[] points = new PointF[] {p1,p2,p3 };
    page.Canvas.DrawPolygon(pen, points);
    
    //保存文檔
    doc.SaveToFile("基本圖形.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    繪制自定義圖形

    static void Main(string[] args)
    {
        //新建一個PDF文檔
        PdfDocument doc = new PdfDocument();
        PdfPageBase page = doc.Pages.Add();
       
        //調用DrawStar方法繪入五角星
        DrawStar(page);
    
        //保存文檔
        doc.SaveToFile("自定義圖形.pdf");
    }
    
    //自定義DrawStar方法畫幾個不同樣式的五角星
    private static void DrawStar(PdfPageBase page)
    {
        //設置五角星的5個頂點坐標
        PointF[] points = new PointF[5];
        for (int i = 0; i < points.Length; i++)
        {
            float x = (float)Math.Cos(i * 2 * Math.PI / 5);
            float y = (float)Math.Sin(i * 2 * Math.PI / 5);
            points[i] = new PointF(x, y);
        }
    
        //創(chuàng)建PdfPath類,在頂點之間添加線段組成五角星
        PdfPath path = new PdfPath();
        path.AddLine(points[2], points[0]);
        path.AddLine(points[0], points[3]);
        path.AddLine(points[3], points[1]);
        path.AddLine(points[1], points[4]);
        path.AddLine(points[4], points[2]);
    
        //保存畫布狀態(tài)
        PdfGraphicsState state = page.Canvas.Save();
    
        //設置畫筆和畫刷
        PdfPen pen = new PdfPen(Color.DeepSkyBlue, 0.02f);
        PdfBrush brush1 = new PdfSolidBrush(Color.CadetBlue);
    
        //將坐標放大40倍
        page.Canvas.ScaleTransform(40f, 40f);
    
        //平移坐標
        page.Canvas.TranslateTransform(1f, 1.5f);
    
        //繪入五角星
        page.Canvas.DrawPath(pen, path);
    
        //平移坐標并在新的位置繪入五角星
        page.Canvas.TranslateTransform(2f, 0f);
        path.FillMode = PdfFillMode.Alternate;
        page.Canvas.DrawPath(pen, brush1, path);
    
        //平移坐標并在新的位置繪入五角星
        page.Canvas.TranslateTransform(2f, 0f);
        path.FillMode = PdfFillMode.Winding;
        page.Canvas.DrawPath(pen, brush1, path);
    
        //平移坐標并在新的位置繪入五角星
        PdfLinearGradientBrush brush2
            = new PdfLinearGradientBrush(new PointF(-2, 0), new PointF(2, 0), Color.Red, Color.Blue);
        page.Canvas.TranslateTransform(-4f, 2f);
        path.FillMode = PdfFillMode.Alternate;
        page.Canvas.DrawPath(pen, brush2, path);
    
        //平移坐標并在新的位置繪入五角星
        PdfRadialGradientBrush brush3
            = new PdfRadialGradientBrush(new PointF(0f, 0f), 0f, new PointF(0f, 0f), 1f, Color.Red, Color.Blue);
        page.Canvas.TranslateTransform(2f, 0f);
        path.FillMode = PdfFillMode.Winding;
        page.Canvas.DrawPath(pen, brush3, path);
    
        //平移坐標并在新的位置繪入五角星
        PdfTilingBrush brush4 = new PdfTilingBrush(new RectangleF(0, 0, 4f, 4f));
        brush4.Graphics.DrawRectangle(brush2, 0, 0, 4f, 4f);
        page.Canvas.TranslateTransform(2f, 0f);
        path.FillMode = PdfFillMode.Winding;
        page.Canvas.DrawPath(pen, brush4, path);
    
        //再次保存畫布狀態(tài)
        page.Canvas.Restore(state);

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形

    創(chuàng)建不同透明度的顏色

    //新建一個PDF文檔
    PdfDocument doc = new PdfDocument();
    PdfPageBase page = doc.Pages.Add();
    
    //初始化一個PdfSeparationColorSpace的對象,用于創(chuàng)建基本色
    PdfSeparationColorSpace cs = new PdfSeparationColorSpace("MySpotColor", Color.Purple);
    
    //將基本色透明度設置為1
    PdfSeparationColor color = new PdfSeparationColor(cs, 1f);
    
    //根據顏色創(chuàng)建畫刷
    PdfSolidBrush brush = new PdfSolidBrush(color);
    
    //繪入圖形及文字并著色
    page.Canvas.DrawPie(brush, 10, 30, 60, 60, 360, 360);
    page.Canvas.DrawString("透明度=1.0", new PdfTrueTypeFont(new Font("Arial Unicode MS", 10f), true), brush, new PointF(16, 100));
    
    //將基本色透明度設置為0.5,并繪入圖片及文字
    color = new PdfSeparationColor(cs, 0.5f);
    brush = new PdfSolidBrush(color);
    page.Canvas.DrawPie(brush, 80, 30, 60, 60, 360, 360);
    page.Canvas.DrawString("透明度=0.5", new PdfTrueTypeFont(new Font("Arial Unicode MS", 10f),true), brush, new PointF(86, 100));
    
    //將基本色透明度設置為0.25,并繪入圖片及文字
    color = new PdfSeparationColor(cs, 0.25f);
    brush = new PdfSolidBrush(color);
    page.Canvas.DrawPie(brush, 150, 30, 60, 60, 360, 360);
    page.Canvas.DrawString("透明度=0.25", new PdfTrueTypeFont(new Font("Arial Unicode MS", 10f),true), brush, new PointF(156, 100));
    
    //保存文檔
    doc.SaveToFile("設置透明度.pdf");

    Spire.PDF教程:如何添加圖片并自定義繪制基本圖形


    *想要購買正版授權的朋友可以咨詢在線客服哦~

    掃描關注“慧聚IT”微信公眾號,及時獲取更多產品最新動態(tài)及最新資訊

    1562572142.jpg

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();