Download PhotoshopColorSwatchLoader.zip version 1.0.0.0, last updated 22/01/2014 (24.13 KB)

Download
  • md5: ea73aa398ec190b0794416866e79de48
using System;
using System.Windows.Forms;

// Reading PhotoShop Color Swatch (aco) files using C#
// http://cyotek.com/blog/reading-photoshop-color-swatch-aco-files-using-csharp

namespace PhotoShopColorSwatchLoader
{
  internal static class Program
  {
    #region Class Members

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    private static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

    #endregion
  }
}

Donate

Donate