#region PDFsharp - A .NET library for processing PDF
//
// Authors:
// Stefan Lange
//
// Copyright (c) 2005-2017 empira Software GmbH, Cologne Area (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#endregion
using System.IO;
namespace PdfSharp.Fonts
{
///
/// Represents a writer for generation of font file streams.
///
internal class FontWriter
{
///
/// Initializes a new instance of the class.
/// Data is written in Motorola format (big-endian).
///
public FontWriter(Stream stream)
{
_stream = stream;
}
///
/// Closes the writer and, if specified, the underlying stream.
///
public void Close(bool closeUnderlyingStream)
{
if (_stream != null && closeUnderlyingStream)
{
#if !UWP
_stream.Close();
#endif
_stream.Dispose();
}
_stream = null;
}
///
/// Closes the writer and the underlying stream.
///
public void Close()
{
Close(true);
}
///
/// Gets or sets the position within the stream.
///
public int Position
{
get { return (int)_stream.Position; }
set { _stream.Position = value; }
}
///
/// Writes the specified value to the font stream.
///
public void WriteByte(byte value)
{
_stream.WriteByte(value);
}
///
/// Writes the specified value to the font stream.
///
public void WriteByte(int value)
{
_stream.WriteByte((byte)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteShort(short value)
{
_stream.WriteByte((byte)(value >> 8));
_stream.WriteByte((byte)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteShort(int value)
{
WriteShort((short)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteUShort(ushort value)
{
_stream.WriteByte((byte)(value >> 8));
_stream.WriteByte((byte)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteUShort(int value)
{
WriteUShort((ushort)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteInt(int value)
{
_stream.WriteByte((byte)(value >> 24));
_stream.WriteByte((byte)(value >> 16));
_stream.WriteByte((byte)(value >> 8));
_stream.WriteByte((byte)value);
}
///
/// Writes the specified value to the font stream using big-endian.
///
public void WriteUInt(uint value)
{
_stream.WriteByte((byte)(value >> 24));
_stream.WriteByte((byte)(value >> 16));
_stream.WriteByte((byte)(value >> 8));
_stream.WriteByte((byte)value);
}
//public short ReadFWord()
//public ushort ReadUFWord()
//public long ReadLongDate()
//public string ReadString(int size)
public void Write(byte[] buffer)
{
_stream.Write(buffer, 0, buffer.Length);
}
public void Write(byte[] buffer, int offset, int count)
{
_stream.Write(buffer, offset, count);
}
///
/// Gets the underlying stream.
///
internal Stream Stream
{
get { return _stream; }
}
Stream _stream;
}
}