Download PhotoshopColorSwatchWriter.zip version 2.0.0.0, last updated 15/03/2026 (17.27 KB)

Download
  • md5: 56d753ea51f23c0dcdfb6bc934aabc5b
  • sha1: dc65c9411b063b43b194845dc99a27e228a319a4
  • sha256: f22265a7b2fd0f6e71db50bbeeff063b5a28adc731420dbf6b85e888b3dd267d
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