OfficeConverter 1.7.9
dotnet add package OfficeConverter --version 1.7.9
NuGet\Install-Package OfficeConverter -Version 1.7.9
<PackageReference Include="OfficeConverter" Version="1.7.9" />
paket add OfficeConverter --version 1.7.9
#r "nuget: OfficeConverter, 1.7.9"
// Install OfficeConverter as a Cake Addin #addin nuget:?package=OfficeConverter&version=1.7.9 // Install OfficeConverter as a Cake Tool #tool nuget:?package=OfficeConverter&version=1.7.9
OfficeConverter
Convert Microsoft Office document to PDF (Office 2007 - 2016)
- 2014-09-21 Version 1.0
- Converts .DOC, .DOCM, .DOCX, .DOT, .DOTM, .ODT, .XLS, .XLSB, .XLSM, .XLSX, .XLT, .XLTM, .XLTX, .XLW, .ODS, .POT, .PPT, .POTM, .POTX, .PPS, .PPSM, .PPSX, .PPTM, .PPTX and .ODP files to PDF with the use of Microsoft Office
- Checks if the files are password protected without using Microsoft Office to speed up conversion
License Information
OfficeConverter is Copyright (C)2014-2024 Kees van Spelde and is licensed under the MIT license:
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 NON INFRINGEMENT. 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.
Installing via NuGet
The easiest way to install OfficeConverter is via NuGet.
In Visual Studio's Package Manager Console, simply enter the following command:
Install-Package OfficeConverter
Converting a file from code
using (var converter = new Converter())
{
converter.Convert(<inputfile>, <outputfile>);
}
Logging
From version 1.7.0 OfficeConverter uses the Microsoft ILogger interface (https://docs.microsoft.com/en-us/dotnet/api/microsoft.extensions.logging.ilogger?view=dotnet-plat-ext-5.0). You can use any logging library that uses this interface.
OfficeConverter has some build in loggers that can be found in the OfficeConverter.Logger
namespace.
For example
var logger = !string.IsNullOrWhiteSpace(<some logfile>)
? new ChromeHtmlToPdfLib.Loggers.Stream(File.OpenWrite(<some logfile>))
: new ChromeHtmlToPdfLib.Loggers.Console();
Core Team
Sicos1977 (Kees van Spelde)
Support
If you like my work then please consider a donation as a thank you.
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NS92EXB2RDPYA" target="_blank"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" /></a>
Reporting Bugs
Have a bug or a feature request? Please open a new issue.
Before opening a new issue, please search for existing issues to avoid submitting duplicates.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Microsoft.Extensions.Logging (>= 8.0.0)
- Microsoft.Win32.Registry (>= 5.0.0)
- OpenMcdf (>= 2.3.1)
- PasswordProtectedChecker (>= 1.3.10)
- System.Drawing.Common (>= 8.0.2)
- System.Security.Cryptography.Pkcs (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.7.9 | 1,492 | 3/4/2024 |
- Updated nuget packages
- Updated SDK files