Browse Source

Add: ShowUserComment

HOME 10 tháng trước cách đây
mục cha
commit
7fc25ebb07
3 tập tin đã thay đổi với 54 bổ sung1 xóa
  1. 32 0
      ShowUserComment/Program.cs
  2. 14 0
      ShowUserComment/ShowUserComment.csproj
  3. 8 1
      StrangeTools.sln

+ 32 - 0
ShowUserComment/Program.cs

@@ -0,0 +1,32 @@
+using ImageMagick;
+using System.Text;
+
+if (args.Length != 1)
+{
+    Console.Error.WriteLine("ERR: 1 file required from args");
+    return 1;
+}
+
+var image = new MagickImage(args[0]);
+
+var x = image.GetProfile("exif");
+if (x == null)
+{
+    Console.Error.WriteLine("ERR: no exif profile found");
+    return 2;
+}
+
+var p = new ExifProfile(x.ToByteArray()!);
+
+var v = p.GetValue(ExifTag.UserComment);
+if (v == null)
+{
+    Console.Error.WriteLine("ERR: no exif UserComment found");
+    return 3;
+}
+
+var s = Encoding.BigEndianUnicode.GetString(v.Value[8..]);
+
+Console.WriteLine(s);
+
+return 0;

+ 14 - 0
ShowUserComment/ShowUserComment.csproj

@@ -0,0 +1,14 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net8.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <PackageReference Include="Magick.NET-Q8-x64" Version="13.9.0" />
+  </ItemGroup>
+
+</Project>

+ 8 - 1
StrangeTools.sln

@@ -70,7 +70,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WarcViewerBlazorWinForm", "
 EndProject
 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CpuLoad", "CpuLoad\CpuLoad.csproj", "{FD777D69-ACFD-4381-B165-51CC42FB3988}"
 EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DummyCursor", "DummyCursor\DummyCursor.csproj", "{88F5DDCC-2674-4586-9FA9-7880EC712668}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DummyCursor", "DummyCursor\DummyCursor.csproj", "{88F5DDCC-2674-4586-9FA9-7880EC712668}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShowUserComment", "ShowUserComment\ShowUserComment.csproj", "{D47A9506-9522-4365-8FC8-56FF6DA50E1E}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -194,6 +196,10 @@ Global
 		{88F5DDCC-2674-4586-9FA9-7880EC712668}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{88F5DDCC-2674-4586-9FA9-7880EC712668}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{88F5DDCC-2674-4586-9FA9-7880EC712668}.Release|Any CPU.Build.0 = Release|Any CPU
+		{D47A9506-9522-4365-8FC8-56FF6DA50E1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{D47A9506-9522-4365-8FC8-56FF6DA50E1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{D47A9506-9522-4365-8FC8-56FF6DA50E1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{D47A9506-9522-4365-8FC8-56FF6DA50E1E}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
@@ -229,6 +235,7 @@ Global
 		{3D04DA1F-F15E-413B-B4EC-ABC1EC2E3C66} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
 		{FD777D69-ACFD-4381-B165-51CC42FB3988} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
 		{88F5DDCC-2674-4586-9FA9-7880EC712668} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
+		{D47A9506-9522-4365-8FC8-56FF6DA50E1E} = {3120ADE6-C606-42F1-9AA8-B7F1A8933CD7}
 	EndGlobalSection
 	GlobalSection(ExtensibilityGlobals) = postSolution
 		SolutionGuid = {017A8C58-F476-47E7-9CBE-077A98A76AB4}