namespace FileSignatures.Formats; /// /// Photoshop Document file format. /// /// /// See https://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop /// public class Photoshop : FileFormat { public Photoshop() : base([0x38, 0x42, 0x50, 0x53], 4, "image/vnd.adobe.photoshop", "psd") { } }