diff --git a/ComicCompress.csproj b/ComicCompress.csproj new file mode 100644 index 0000000..de3c08b --- /dev/null +++ b/ComicCompress.csproj @@ -0,0 +1,31 @@ + + + + Exe + net6.0 + ComicCompressor + ComicCompress + True + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ComicCompress.csproj.user b/ComicCompress.csproj.user new file mode 100644 index 0000000..80919ff --- /dev/null +++ b/ComicCompress.csproj.user @@ -0,0 +1,12 @@ + + + + ProjectDebugger + + + ComicCompress PDF + + + ProjectDebugger + + \ No newline at end of file diff --git a/ComicCompress.sln b/ComicCompress.sln new file mode 100644 index 0000000..7b2586c --- /dev/null +++ b/ComicCompress.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33530.505 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComicCompress", "ComicCompress.csproj", "{2625C71D-E4EC-4768-BF04-87AAB364916A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2625C71D-E4EC-4768-BF04-87AAB364916A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2625C71D-E4EC-4768-BF04-87AAB364916A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2625C71D-E4EC-4768-BF04-87AAB364916A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2625C71D-E4EC-4768-BF04-87AAB364916A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {227CA710-75CC-4BCD-8B0B-DD7D5FE4B7A3} + EndGlobalSection +EndGlobal diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..017566b --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,20 @@ +{ + "profiles": { + "WSL": { + "commandName": "WSL2", + "distributionName": "" + }, + "ComicCompress PDF": { + "commandName": "Project", + "commandLineArgs": "-i _PDF_ -o _NEW_PDF_ -r -s " + }, + "Compress Image to webp": { + "commandName": "Project", + "commandLineArgs": "-i _IMG_ -o _IMG_WEBP_ -r -s -j" + }, + "Compress Image to WEBP PAR": { + "commandName": "Project", + "commandLineArgs": "-i _IMG_ -o _IMG_WEBP_ -r -s -j -p -c 4" + } + } +} \ No newline at end of file