Skip to content

Commit

Permalink
SixLabors#12 Move Tiff classes to Formats.Tiff namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
IldarKhayrutdinov committed Aug 11, 2019
1 parent 904f5be commit 77af83e
Show file tree
Hide file tree
Showing 11 changed files with 158 additions and 160 deletions.
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Tiff/ITiffDecoderOptions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.

namespace SixLabors.ImageSharp.Formats
namespace SixLabors.ImageSharp.Formats.Tiff
{
/// <summary>
/// Encapsulates the options for the <see cref="TiffDecoder"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Tiff/ITiffEncoderOptions.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.

namespace SixLabors.ImageSharp.Formats
namespace SixLabors.ImageSharp.Formats.Tiff
{
/// <summary>
/// Encapsulates the options for the <see cref="TiffEncoder"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Tiff/ImageExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.

using System.IO;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Tiff;
using SixLabors.ImageSharp.PixelFormats;

namespace SixLabors.ImageSharp
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Tiff/TiffConfigurationModule.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.

namespace SixLabors.ImageSharp.Formats
namespace SixLabors.ImageSharp.Formats.Tiff
{
/// <summary>
/// Registers the image encoders, decoders and mime type detectors for the TIFF format.
Expand Down
2 changes: 1 addition & 1 deletion src/ImageSharp/Formats/Tiff/TiffDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

using SixLabors.ImageSharp.PixelFormats;

namespace SixLabors.ImageSharp.Formats
namespace SixLabors.ImageSharp.Formats.Tiff
{
/// <summary>
/// Image decoder for generating an image out of a TIFF stream.
Expand Down
Loading

0 comments on commit 77af83e

Please sign in to comment.