Skip to content

Commit

Permalink
initial commit, r1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvoronin committed Mar 15, 2017
0 parents commit d217ad0
Show file tree
Hide file tree
Showing 10 changed files with 1,014 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
###

[Oo]bj/
[Bb]in/

.vs
*.suo
*.user
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016

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.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Digital cameras and mobile phones create image file formats such as JPEG. These files contains hidden data or metadata called EXIF (Exchangeable image file format) which can include the date, time and sometimes the GPS coordinates of the picture, the brand and serial number of the device which took it as well as a thumbnail of the original image. Metanull can remove the metadata from your image files so the image you have won't have kind of information that identify you in it.

To avoid these kind of issues you can remove metadata selectively, that is by removing sensitive information but keeping other useful information in the images. This can be achieved in Windows, right clicking on and selecting properties, details tab, you can remove metadata from here. But if you have large number of photos that you want to remove Exif or metadata Windows Explorer is not the convenient way to do that.

Metanull is a portable Windows application that can remove metadata from your photos or images. It can be used to remove exif data from single or multiple images. The program is simple to use, select a single image or select a folder to batch remove meta information. Then select where you want to store meta data stripped images. Once done just hit the Null It button.

It will do the job in a min or so depending on the number of images you through at it. See the below image showing before and after stripping exif data with the program.
22 changes: 22 additions & 0 deletions src/Metanull.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Metanull", "Metanull\Metanull.csproj", "{DEEC1279-0CF6-4BD2-A903-2ADE9DA9E7A1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DEEC1279-0CF6-4BD2-A903-2ADE9DA9E7A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DEEC1279-0CF6-4BD2-A903-2ADE9DA9E7A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DEEC1279-0CF6-4BD2-A903-2ADE9DA9E7A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DEEC1279-0CF6-4BD2-A903-2ADE9DA9E7A1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
352 changes: 352 additions & 0 deletions src/Metanull/MainForm.Designer.cs

Large diffs are not rendered by default.

Loading

0 comments on commit d217ad0

Please sign in to comment.