Download RiffPaletteWriter.zip version 1.0.0.0, last updated 04/03/2017 (14.94 KB)

Download
  • md5: 2864394d3c1cc948887ced13c5d5bedf
  • sha1: dc44b4f4d8d6318030d6460a5f88f43aa345ce2f
  • sha256: 8781446c207bc5faf4021226bdbd3789c6acdd21efbaeaa101dbcca0a2749abf
using System;
using System.Windows.Forms;
using Cyotek.Demonstrations.RiffPaletteWriter;

// 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