| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /////////////////////////////////////////////////////////////////////////////////
- //
- // Photoshop PSD FileType Plugin for Paint.NET
- // http://psdplugin.codeplex.com/
- //
- // This software is provided under the MIT License:
- // Copyright (c) 2006-2007 Frank Blumenberg
- // Copyright (c) 2010-2014 Tao Yue
- //
- // Portions of this file are provided under the BSD 3-clause License:
- // Copyright (c) 2006, Jonas Beckeman
- //
- // See LICENSE.txt for complete licensing and attribution information.
- //
- /////////////////////////////////////////////////////////////////////////////////
- using System;
- using System.Diagnostics;
- using System.Globalization;
- namespace PhotoshopFile
- {
- internal class BlendingRanges
- {
- /// <summary>
- /// The layer to which this channel belongs
- /// </summary>
- public Layer Layer { get; private set; }
- public byte[] Data { get; set; }
- ///////////////////////////////////////////////////////////////////////////
- public BlendingRanges(Layer layer)
- {
- Layer = layer;
- Data = new byte[0];
- }
- ///////////////////////////////////////////////////////////////////////////
- public BlendingRanges(PsdBinaryReader reader, Layer layer)
- {
- Util.DebugMessage(reader.BaseStream, "Load, Begin, BlendingRanges");
- Layer = layer;
- var dataLength = reader.ReadInt32();
- if (dataLength <= 0)
- return;
- Data = reader.ReadBytes(dataLength);
- Util.DebugMessage(reader.BaseStream, "Load, End, BlendingRanges");
- }
- }
- }
|