Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
Code cleanup
  • Loading branch information
Apoc70 committed Mar 27, 2017
1 parent f3d95d3 commit f9d1faa
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 82 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.licenseheader

# Visual Studio cache files
# files ending in .cache can be ignored
Expand Down
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# ResizeImage
ResizeImage
# ResizeImage Tool

The ResizeImage command line tool resizes all images provided in a SOURCE directory and saves the resized images in a dedicated TARGET directory.

The resize behaviour is controlled by the ResizeImage.config file.

More information is provided in the Wiki accessible here: https://github.com/Granikos/ResizeImage/wiki

Feel free to clone the solution.

Found any issues? PLease open an new issue: https://github.com/Granikos/ResizeImage/issues

## Credits
Written by: Thomas Stensitzki

Stay connected:

* My Blog: http://justcantgetenough.granikos.eu
* Twitter: https://twitter.com/stensitzki
* LinkedIn: http://de.linkedin.com/in/thomasstensitzki
* Github: https://github.com/Apoc70

For more Office 365, Cloud Security and Exchange Server stuff checkout services provided by Granikos

* Blog: http://blog.granikos.eu/
* Website: https://www.granikos.eu/en/
* Twitter: https://twitter.com/granikos_de
1 change: 0 additions & 1 deletion ResizeImage/Granikos.ResizeImage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
<CustomToolNamespace>Granikos.ResizeImage.Properties</CustomToolNamespace>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Include="ResizeImage.licenseheader" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
Expand Down
12 changes: 6 additions & 6 deletions ResizeImage/Program.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// MIT License
//
//
// Copyright (c) 2017 Granikos GmbH & Co. KG (https://www.granikos.eu)
//
//
// 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
Expand All @@ -20,6 +20,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

using Granikos.ResizeImage.Properties;
using System;
using System.Collections.Generic;
using System.Drawing;
Expand All @@ -28,7 +29,6 @@
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using Granikos.ResizeImage.Properties;

namespace Granikos.ResizeImage
{
Expand Down Expand Up @@ -123,7 +123,7 @@ private static void ResizeImage(string file, string outputDir)
/// <param name="args">String array containing the arguments
/// ARG1 = Absolute path to source directory
/// ARG2 = Absolute path to target directory
/// ARG3 .. ARGx = FIle extionsion (jpg, bmp, etc.)
/// ARG3 .. ARGx = File extionsion (jpg, bmp, etc.)
/// </param>
private static void Main(string[] args)
{
Expand Down
73 changes: 0 additions & 73 deletions ResizeImage/ResizeImage.licenseheader

This file was deleted.

0 comments on commit f9d1faa

Please sign in to comment.