C#对Illustrator (ai) 操作

本文介绍了如何在C#环境中通过引用Interop.Illustrator.dll与Adobe Illustrator进行交互,特别是针对SVG图片的置入问题进行了探讨,寻求解决方案。
摘要由CSDN通过智能技术生成

添加引用 Interop.Illustrator.dll,安装 Illustrator 后台在 com中找到 adobe  Illustrator cs* type library


Illustrator.Application app = new Illustrator.Application();
        Illustrator.Document doc = app.Documents.Add(Illustrator.AiDocumentColorSpace.aiDocumentCMYKColor, 400, 240);
        //Illustrator.Document doc=app.Open("f://a.ai");

        Illustrator.Layer layer1 = doc.Layers.Add();//新建图层
        layer1.Name = "文字图层1";
        Illustrator.TextFrame textFrame = layer1.TextFrames.Add();
        //object[] position = new object[2] { 0, 0 };
        //textFrame.Position = position;
        textFrame.Contents = "测试文字";
        textFrame.Left = 1;
        textFrame.Top = 20;
        textFrame.Rotate(0, null, null, null, null, null);   // 旋转
        textFrame.C
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值