1

ai(Adobe Illustrator)またはepsファイルのプロパティ(dpi単位の解像度など)を取得するにはどうすればよいですか。ファイルをサーバーにアップロードするときに、このプロパティを確認する必要があります。

また、ai / epsを標準の画像形式(jpg、gif、pngなど)に変換するDLLはありますか?

4

2 に答える 2

2
use ImageMagickNET.dll through this you can convert the .ai or .eps files into .jpg format..

c# コード:

  public partial class Form1 : Form
    {

        Process ffmpeg;
        string video;
        string thumb;
        public Form1()
        {
            InitializeComponent();
        }
        private void button4_Click(object sender, EventArgs e)
        {
            ffmpeg = new Process();

            ffmpeg.StartInfo.Arguments = "convert \"" + .ai file path + "\" -background white -flatten -density 300 -colors 512 -antialias  -normalize -units PixelsPerInch -quality 100 -colorspace RGB -resize 3425x3425  \"D:\\GRAPHICS SEARCH ENGINE\\GRAPHICS IMAGES\\AI\\" convert.jpg\"";

            ffmpeg.StartInfo.FileName = ("C:\\Program Files (x86)\\ImageMagick-6.5.3-Q16\\convert.exe");
            ffmpeg.Start();

         }
    }

幅、高さ、ページ数、タイトルなどの ai ファイルのプロパティを取得するには、itextsharp.dll を使用します。

コード:

using System;
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Linq; 
using System.Text;
using System.Windows.Forms;
using iTextSharp.text; 
using iTextSharp.text.pdf;

namespace pdfreared { public partial class Form1 : Form { public Form1() { InitializeComponent(); }

    private void button1_Click(object sender, EventArgs e)
    {
        PdfReader reader = new PdfReader(@"D:\Files Formats\Icon.ai");
        int n = reader.NumberOfPages;
        label4.Text = n.ToString();

        // size of the first page
        Rectangle psize = reader.GetPageSize(1);
        float width = psize.Width;
        label1.Text ="Width= " + Convert.ToString(width);
        float height = psize.Height;
        label2.Text = "Height = " + Convert.ToString(height);
      //  reader.Metadata.

        Console.WriteLine("Size of page 1 of {0} => {1} × {2}", n, width, height);
        // file properties
        Dictionary<string, string> infodict = reader.Info;
        foreach (KeyValuePair<string, string> kvp in infodict)
        {
            Console.WriteLine(kvp.Key + " => " + kvp.Value);
            label3.Text = kvp.Key + " => " + kvp.Value;


        }

    }
}
于 2013-03-01T08:18:39.093 に答える
0

「identify -verbose image.eps」を使用して、EPS ファイルと AI ファイルのメタデータ情報を提供します。

于 2016-10-06T04:47:06.187 に答える