Download PhotoshopColorSwatchWriter.zip version 1.0.0.0, last updated 28/01/2014 (16.86 KB)

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

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

namespace PhotoshopColorSwatchWriter
{
  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 GeneratorWindow());
    }

    #endregion
  }
}

Donate

Donate