├── .gitattributes ├── .gitignore ├── BatchImageProcessor.CLI ├── BatchImageProcessor.CLI.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── BatchImageProcessor.Model ├── BatchImageProcessor.Model.csproj ├── File.cs ├── Folder.cs ├── Interface │ ├── IFile.cs │ ├── IFolderable.cs │ ├── IFolderableHost.cs │ └── IIoObject.cs ├── IoObject.cs ├── Model.cs ├── Properties │ ├── Annotations.cs │ └── AssemblyInfo.cs ├── StaticImageUtils.cs ├── Types │ ├── AdjustmentOptions.cs │ ├── CropOptions.cs │ ├── Enums │ │ ├── Alignment.cs │ │ ├── ColorType.cs │ │ ├── Format.cs │ │ ├── InterpolationMode.cs │ │ ├── NameType.cs │ │ ├── RawHighlightMode.cs │ │ ├── ResizeMode.cs │ │ ├── Rotation.cs │ │ ├── WatermarkType.cs │ │ └── WhiteBalanceMode.cs │ ├── ModelProgressUpdate.cs │ ├── OptionSet.cs │ ├── OutputOptions.cs │ ├── RawOptions.cs │ ├── ResizeOptions.cs │ └── WatermarkOptions.cs └── Utility │ └── ExtensionMethods.cs ├── BatchImageProcessor.sln ├── BatchImageProcessor ├── App.cs ├── App.xaml ├── BatchImageProcessor.csproj ├── Controls │ ├── SplitButton.cs │ ├── SplitButton.xaml │ └── VirtualizingWrapPanel.cs ├── EntryPoint.cs ├── Exec │ └── dcraw.exe ├── GlobalSuppressions.cs ├── Images │ ├── 24 │ │ └── image-export.png │ ├── 32 │ │ ├── cross.png │ │ └── image-transition.png │ ├── ImageRotator.ico │ ├── ImageRotator.png │ ├── arrow-045.png │ ├── arrow-090.png │ ├── arrow-135.png │ ├── arrow-180.png │ ├── arrow-225.png │ ├── arrow-270.png │ ├── arrow-315.png │ ├── arrow-circle-180.png │ ├── arrow-circle-ccwise.png │ ├── arrow-circle-cwise.png │ ├── arrow-noturn--auto.png │ ├── arrow-noturn.png │ ├── arrow-transition.png │ ├── arrow.png │ ├── bin.png │ ├── circle.png │ ├── color-adjustment--cross.png │ ├── color-adjustment.png │ ├── cross.png │ ├── edit.png │ ├── folder--plus.png │ ├── folder-import.png │ ├── folder.png │ ├── image--pencil.png │ ├── image-crop--cross.png │ ├── image-crop.png │ ├── image-export.png │ ├── image-greyscale.png │ ├── image-import.png │ ├── image-resize-actual--cross.png │ ├── image-resize-actual.png │ ├── image-resize-exact.png │ ├── image-resize.png │ ├── image-rotate--asterisk.png │ ├── image-rotate.png │ ├── image-saturation--cross.png │ ├── image-saturation.png │ ├── image-sepia.png │ ├── image-vertical.png │ ├── image.png │ ├── information.png │ ├── refresh.png │ ├── selection-exclude.png │ ├── selection-select.png │ ├── selection.png │ ├── ui-check-box-uncheck.png │ ├── ui-check-box.png │ ├── ui-check-boxes.png │ ├── ui-text-field.png │ └── wrench-screwdriver.png ├── Native │ ├── DwmApiInteropt.cs │ ├── HookEventArgs.cs │ ├── HookType.cs │ ├── LocalWindowsHook.cs │ ├── Natives.cs │ ├── ShellContextMenu.cs │ └── ShellContextMenuException.cs ├── Properties │ ├── Annotations.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── image-export.ico ├── View │ ├── AboutBox.cs │ ├── AboutBox.xaml │ ├── FileOptions.xaml │ ├── FileOptions.xaml.cs │ ├── MainWindow.cs │ ├── MainWindow.xaml │ ├── RawOptions.xaml │ ├── RawOptions.xaml.cs │ ├── RenameFileDialog.cs │ └── RenameFileDialog.xaml └── ViewModel │ ├── Converters │ ├── BooleanConverter.cs │ ├── BooleanToEffectConverter.cs │ ├── BooleanToOpacityConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── EnumBooleanConverter.cs │ ├── EnumStringConverter.cs │ └── EnumVisibilityConverter.cs │ ├── EnumStringConverter.cs │ ├── EnumVisibilityConverter.cs │ ├── Extensions │ └── EnumerationExtension.cs │ ├── FileCollectionView.cs │ ├── FileWrapper.cs │ ├── FolderCollectionView.cs │ ├── FolderWrapper.cs │ ├── Services │ └── NavigationService.cs │ ├── TypeConverter.cs │ ├── ViewModel.cs │ └── WeakThumbnail.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/.gitignore -------------------------------------------------------------------------------- /BatchImageProcessor.CLI/BatchImageProcessor.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.CLI/BatchImageProcessor.CLI.csproj -------------------------------------------------------------------------------- /BatchImageProcessor.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.CLI/Program.cs -------------------------------------------------------------------------------- /BatchImageProcessor.CLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.CLI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/BatchImageProcessor.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/BatchImageProcessor.Model.csproj -------------------------------------------------------------------------------- /BatchImageProcessor.Model/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/File.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Folder.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Interface/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Interface/IFile.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Interface/IFolderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Interface/IFolderable.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Interface/IFolderableHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Interface/IFolderableHost.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Interface/IIoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Interface/IIoObject.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/IoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/IoObject.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Model.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Properties/Annotations.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/StaticImageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/StaticImageUtils.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/AdjustmentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/AdjustmentOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/CropOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/CropOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/Alignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/Alignment.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/ColorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/ColorType.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/Format.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/InterpolationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/InterpolationMode.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/NameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/NameType.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/RawHighlightMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/RawHighlightMode.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/ResizeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/ResizeMode.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/Rotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/Rotation.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/WatermarkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/WatermarkType.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/Enums/WhiteBalanceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/Enums/WhiteBalanceMode.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/ModelProgressUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/ModelProgressUpdate.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/OptionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/OptionSet.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/OutputOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/OutputOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/RawOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/RawOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/ResizeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/ResizeOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Types/WatermarkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Types/WatermarkOptions.cs -------------------------------------------------------------------------------- /BatchImageProcessor.Model/Utility/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.Model/Utility/ExtensionMethods.cs -------------------------------------------------------------------------------- /BatchImageProcessor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor.sln -------------------------------------------------------------------------------- /BatchImageProcessor/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/App.cs -------------------------------------------------------------------------------- /BatchImageProcessor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/App.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/BatchImageProcessor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/BatchImageProcessor.csproj -------------------------------------------------------------------------------- /BatchImageProcessor/Controls/SplitButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Controls/SplitButton.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Controls/SplitButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Controls/SplitButton.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/Controls/VirtualizingWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Controls/VirtualizingWrapPanel.cs -------------------------------------------------------------------------------- /BatchImageProcessor/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/EntryPoint.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Exec/dcraw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Exec/dcraw.exe -------------------------------------------------------------------------------- /BatchImageProcessor/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/GlobalSuppressions.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Images/24/image-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/24/image-export.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/32/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/32/cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/32/image-transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/32/image-transition.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ImageRotator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ImageRotator.ico -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ImageRotator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ImageRotator.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-045.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-090.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-135.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-180.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-225.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-270.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-315.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-circle-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-circle-180.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-circle-ccwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-circle-ccwise.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-circle-cwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-circle-cwise.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-noturn--auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-noturn--auto.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-noturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-noturn.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow-transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow-transition.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/arrow.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/bin.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/circle.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/color-adjustment--cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/color-adjustment--cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/color-adjustment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/color-adjustment.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/edit.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/folder--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/folder--plus.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/folder-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/folder-import.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/folder.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image--pencil.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-crop--cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-crop--cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-crop.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-export.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-greyscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-greyscale.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-import.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-resize-actual--cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-resize-actual--cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-resize-actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-resize-actual.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-resize-exact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-resize-exact.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-resize.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-rotate--asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-rotate--asterisk.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-rotate.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-saturation--cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-saturation--cross.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-saturation.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-sepia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-sepia.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image-vertical.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/image.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/information.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/refresh.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/selection-exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/selection-exclude.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/selection-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/selection-select.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/selection.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ui-check-box-uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ui-check-box-uncheck.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ui-check-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ui-check-box.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ui-check-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ui-check-boxes.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/ui-text-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/ui-text-field.png -------------------------------------------------------------------------------- /BatchImageProcessor/Images/wrench-screwdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Images/wrench-screwdriver.png -------------------------------------------------------------------------------- /BatchImageProcessor/Native/DwmApiInteropt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/DwmApiInteropt.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/HookEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/HookEventArgs.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/HookType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/HookType.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/LocalWindowsHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/LocalWindowsHook.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/Natives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/Natives.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/ShellContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/ShellContextMenu.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Native/ShellContextMenuException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Native/ShellContextMenuException.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Properties/Annotations.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Properties/Resources.resx -------------------------------------------------------------------------------- /BatchImageProcessor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BatchImageProcessor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Properties/Settings.settings -------------------------------------------------------------------------------- /BatchImageProcessor/Resources/image-export.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/Resources/image-export.ico -------------------------------------------------------------------------------- /BatchImageProcessor/View/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/AboutBox.cs -------------------------------------------------------------------------------- /BatchImageProcessor/View/AboutBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/AboutBox.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/View/FileOptions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/FileOptions.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/View/FileOptions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/FileOptions.xaml.cs -------------------------------------------------------------------------------- /BatchImageProcessor/View/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/MainWindow.cs -------------------------------------------------------------------------------- /BatchImageProcessor/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/MainWindow.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/View/RawOptions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/RawOptions.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/View/RawOptions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/RawOptions.xaml.cs -------------------------------------------------------------------------------- /BatchImageProcessor/View/RenameFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/RenameFileDialog.cs -------------------------------------------------------------------------------- /BatchImageProcessor/View/RenameFileDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/View/RenameFileDialog.xaml -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/BooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/BooleanConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/BooleanToEffectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/BooleanToEffectConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/BooleanToOpacityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/BooleanToOpacityConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/EnumBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/EnumBooleanConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/EnumStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/EnumStringConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Converters/EnumVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Converters/EnumVisibilityConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/EnumStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/EnumStringConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/EnumVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/EnumVisibilityConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Extensions/EnumerationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Extensions/EnumerationExtension.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/FileCollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/FileCollectionView.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/FileWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/FileWrapper.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/FolderCollectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/FolderCollectionView.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/FolderWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/FolderWrapper.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/Services/NavigationService.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/TypeConverter.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/ViewModel.cs -------------------------------------------------------------------------------- /BatchImageProcessor/ViewModel/WeakThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/BatchImageProcessor/ViewModel/WeakThumbnail.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sidneys1/BatchImageProcessor/HEAD/README.md --------------------------------------------------------------------------------