c#

位置:IT落伍者 >> c# >> 浏览文章

用C#对Illustrator矢量图形软件进行编程[2]


发布日期:2019年10月28日
 
用C#对Illustrator矢量图形软件进行编程[2]

第四步: 双击刚才加入的按钮进入C#代码编辑:

private void btnAI_Demo_Click(object sender EventArgs e)

{

//代码区

}

在代码区内加入以下代码:

IllustratorApplication app = new IllustratorApplication();

IllustratorDocument doc = appDocumentsAdd(IllustratorAiDocumentColorSpaceaiDocumentCMYKColor );

IllustratorTextFrame textFrame = docTextFramesAdd();

object[] position = new object[] { };

textFramePosition = position;

textFrameContents = BrawDrawCom;

textFrameHeight = ;

textFrameWidth = docWidth;

textFrameCreateOutline();

appActiveDocumentClose(IllustratorAiSaveOptionsaiPromptToSaveChanges);

第五步: 按F进入调试出现窗体界面后点击测试AI编程按钮此时会出现两种情况

)在已开启Adobe Illustrator矢量绘图软件时会出现如下界面

[] [] []

               

上一篇:用C#对Illustrator矢量图形软件进行编程[1]

下一篇:用C#对Illustrator矢量图形软件进行编程[3]