Browse Source

Cleanup of XML documentation - cref is for classes

Former-commit-id: a3b8237a7a054d4fa65d103cc81785400ca74072
af/merge-core
Thomas Broust 12 years ago
parent
commit
01d423d7d7
  1. 2
      src/ImageProcessor/Extensions/ImageInfo.cs
  2. 2
      src/ImageProcessor/Imaging/ExifPropertyTag.cs
  3. 2
      src/ImageProcessor/Imaging/ExifPropertyTagType.cs
  4. 2
      src/ImageProcessor/Imaging/GifEncoder.cs
  5. 2
      src/ImageProcessor/Processors/Alpha.cs
  6. 2
      src/ImageProcessor/Processors/Brightness.cs
  7. 2
      src/ImageProcessor/Processors/Contrast.cs
  8. 2
      src/ImageProcessor/Processors/Crop.cs
  9. 2
      src/ImageProcessor/Processors/Flip.cs
  10. 2
      src/ImageProcessor/Processors/Rotate.cs
  11. 4
      src/ImageProcessor/Processors/Saturation.cs

2
src/ImageProcessor/Extensions/ImageInfo.cs

@ -16,7 +16,7 @@ namespace ImageProcessor.Extensions
/// <summary>
/// Provides information about an image.
/// <see cref="http://madskristensen.net/post/examine-animated-gife28099s-in-c"/>
/// <see href="http://madskristensen.net/post/examine-animated-gife28099s-in-c"/>
/// </summary>
public class ImageInfo
{

2
src/ImageProcessor/Imaging/ExifPropertyTag.cs

@ -12,7 +12,7 @@ namespace ImageProcessor.Imaging
{
/// <summary>
/// The following enum gives descriptions of the property items supported by Windows GDI+.
/// <see cref="http://msdn.microsoft.com/en-us/library/ms534417%28VS.85%29.aspx"/>
/// <see href="http://msdn.microsoft.com/en-us/library/ms534417%28VS.85%29.aspx"/>
/// TODO: Add more XML descriptions.
/// </summary>
public enum ExifPropertyTag

2
src/ImageProcessor/Imaging/ExifPropertyTagType.cs

@ -13,7 +13,7 @@ namespace ImageProcessor.Imaging
{
/// <summary>
/// Specifies the data type of the values stored in the value data member of that same PropertyItem object.
/// <see cref="http://msdn.microsoft.com/en-us/library/system.drawing.imaging.propertyitem.type.aspx"/>
/// <see href="http://msdn.microsoft.com/en-us/library/system.drawing.imaging.propertyitem.type.aspx"/>
/// </summary>
public enum ExifPropertyTagType : short
{

2
src/ImageProcessor/Imaging/GifEncoder.cs

@ -29,7 +29,7 @@ namespace ImageProcessor.Imaging
/// Always wire this up in a using block.
/// Disposing the encoder will complete the file.
/// Uses default .NET GIF encoding and adds animation headers.
/// Adapted from <see cref="http://github.com/DataDink/Bumpkit/blob/master/BumpKit/BumpKit/GifEncoder.cs"/>
/// Adapted from <see href="http://github.com/DataDink/Bumpkit/blob/master/BumpKit/BumpKit/GifEncoder.cs"/>
/// </remarks>
/// </summary>
public class GifEncoder : IDisposable

2
src/ImageProcessor/Processors/Alpha.cs

@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"alpha=(?:100|[1-9]?[0-9])", RegexOptions.Compiled);

2
src/ImageProcessor/Processors/Brightness.cs

@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"brightness=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);

2
src/ImageProcessor/Processors/Contrast.cs

@ -25,7 +25,7 @@ namespace ImageProcessor.Processors
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"contrast=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);

2
src/ImageProcessor/Processors/Crop.cs

@ -30,7 +30,7 @@ namespace ImageProcessor.Processors
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"crop=\d+(.\d+)?[,-]\d+(.\d+)?[,-]\d+(.\d+)?[,-]\d+(.\d+)?|cropmode=(pixels|percent)", RegexOptions.Compiled);

2
src/ImageProcessor/Processors/Flip.cs

@ -23,7 +23,7 @@ namespace ImageProcessor.Processors
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"flip=(horizontal|vertical|both)", RegexOptions.Compiled);

2
src/ImageProcessor/Processors/Rotate.cs

@ -184,7 +184,7 @@ namespace ImageProcessor.Processors
/// <param name="backgroundColor">The background color to fill an image with.</param>
/// <returns>The image rotated to the given angle at the given position.</returns>
/// <remarks>
/// Based on <see cref="http://www.codeproject.com/Articles/58815/C-Image-PictureBox-Rotations?msg=4155374#xx4155374xx"/>
/// Based on <see href="http://www.codeproject.com/Articles/58815/C-Image-PictureBox-Rotations?msg=4155374#xx4155374xx"/>
/// </remarks>
private Bitmap RotateImage(Image image, float rotateAtX, float rotateAtY, float angle, Color backgroundColor)
{

4
src/ImageProcessor/Processors/Saturation.cs

@ -23,13 +23,13 @@ namespace ImageProcessor.Processors
/// Encapsulates methods to change the saturation component of the image.
/// </summary>
/// <remarks>
/// <see cref="http://www.bobpowell.net/imagesaturation.htm"/>
/// <see href="http://www.bobpowell.net/imagesaturation.htm"/>
/// </remarks>
public class Saturation : IGraphicsProcessor
{
/// <summary>
/// The regular expression to search strings for.
/// <see cref="http://stackoverflow.com/a/6400969/427899"/>
/// <see href="http://stackoverflow.com/a/6400969/427899"/>
/// </summary>
private static readonly Regex QueryRegex = new Regex(@"saturation=(-?(?:100)|-?([1-9]?[0-9]))", RegexOptions.Compiled);

Loading…
Cancel
Save