Total Doc Converter X एक सर्वर आधारित टूल है जो बैच में Docs को PDF में कन्वर्ट करता है। इसे वेब सर्वर पर इंस्टॉल करके, आप इसे पूरे नेटवर्क के लिए सुलभ बना सकते हैं या ASP.NET के माध्यम से अपने एप्लिकेशन का हिस्सा बना सकते हैं। या यदि आप चाहें, तो इसे एक स्टैंड-अलोन ऐप के रूप में उपयोग किया जा सकता है।
एक बार जब आपने Total Doc Converter X इंस्टॉल कर लिया है, तो आप नोटिस करेंगे कि यह GUI-मुक्त है। इसके बजाय हम उपयोगकर्ताओं को कमांड लाइन परिवेश के माध्यम से भेजे जाने वाले विस्तृत कमांड की सूची प्रदान करते हैं। चाहे आप सर्वर एडमिनिस्ट्रेटर हों या नेटवर्क उपयोगकर्ता, जॉब के पैरामीटर सेट करना और कन्वर्ट प्रक्रिया शुरू करना त्वरित और आसान है। आप स्वचालन उद्देश्यों के लिए .bat फ़ॉर्मेट में प्रोजेक्ट सेटिंग भी सहेज सकते हैं।
अन्य विकल्प (PDF में कन्वर्ट करते समय) में शामिल हैं:
इस सुविधा का लाभ उठाकर, यह आवश्यक नहीं है कि आपके नेटवर्क उपयोगकर्ता जानें कि विंडोज कमांड लाइन से DOC को PDF में कैसे कन्वर्ट किया जाए। ActiveX समर्थन के लिए धन्यवाद, Doc Converter X को Windows शेल के माध्यम से अन्य ऐप्स में आसानी से एकीकृत किया जा सकता है।
इतने सारे अंतर्निहित कस्टमाइजेशन विकल्पों के साथ, कई टूल सेट के साथ संघर्ष करने की कोई आवश्यकता नहीं है। Total Doc Converter X यह सब करता है! आप जल्द ही खोज लेंगे कि आपके आउटपुट फ़ाइलें संबंधित मौलिकता से अधिक उपयोगी हैं।
क्योंकि यह एक कमांड लाइन कन्वर्टर ऐप है, नेटवर्क उपयोगकर्ता बिना किसी बाधित संदेश के शांत, पर्दे के पीछे कन्वर्जन कर सकते हैं।
आज ही हमारा ऐप आज़माएं और पूरा संस्करण खरीदें। हम विशेष रूप से बड़े और छोटे सर्वरों को समायोजित करने के लिए कई विभिन्न लाइसेंसिंग विकल्प प्रदान करते हैं। एंटरप्राइज लाइसेंसिंग के लिए, इस फॉर्म के माध्यम से हमसे संपर्क करें।
प्रत्येक लाइसेंस जीवनकाल के लिए होता है और इसमें 12 महीने के लिए सभी प्रमुख उन्नयन शामिल होते हैं। उसके बाद आप मौजूदा लाइसेंस रख सकते हैं या बाद में 70% छूट पर अपग्रेड खरीद सकते हैं। अधिक जानने के लिए, हमें ऑनलाइन फेसबुक, ट्विटर पर देखें और हमारे ब्लॉग पर जाएं।
Windows Vista/7/8/10/11
"हमारे वेब सर्वर पर Total Doc Converter X इंस्टॉल कर हमने पूरे नेटवर्क के लिए DOC से PDF रूपांतरण सुलभ बना दिया। यह GUI-मुक्त है, इसलिए सर्वर पर बिल्कुल हल्का चलता है। कमांड लाइन से पेज नंबरिंग और वॉटरमार्क जोड़ना बहुत काम आया।"
विनोद राव नेटवर्क एडमिनिस्ट्रेटर, लॉजिस्टिक्स कंपनी
"ASP.NET एप्लिकेशन में हमने DOC को PDF में बैच रूपांतरण को एकीकृत किया। कमांड की विस्तृत सूची से हर जॉब के पैरामीटर सेट करना आसान रहा। स्टैंड-अलोन मोड में भी इसका उपयोग कर पाना एक बोनस है।"
पंकज मेहरा डेवलपर, एंटरप्राइज सॉफ्टवेयर टीम
"रोज़ाना सैकड़ों DOC दस्तावेज़ों को PDF में बदलना अब स्क्रिप्ट से स्वचालित है। वॉटरमार्क और पेज नंबर जैसी सेटिंग्स ने आउटपुट को पेशेवर बनाया। बड़े बैच में शुरुआती सेटअप में समय लगा, पर उसके बाद यह भरोसेमंद ढंग से चला।"
अंजलि देसाई आईटी सपोर्ट लीड, बीमा कंपनी
string src = @"C:\test\Source.docx";
string dest = @"C:\test\Dest.pdf";
var cnv = new DocConverterX();
cnv.Convert(src, dest, "-cPDF -log c:\\test\\Doc.log");
if (!string.IsNullOrEmpty(cnv.ErrorMessage))
throw new Exception(cnv.ErrorMessage);
public static class Function1
{
[FunctionName("Function1")]
public static async Task Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{
StringBuilder sbLogs = new StringBuilder();
sbLogs.AppendLine("started...");
try
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
var assemblyDirectoryPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
assemblyDirectoryPath = assemblyDirectoryPath.Substring(0, assemblyDirectoryPath.Length - 4);
var executablePath = $@"{assemblyDirectoryPath}\Converter\DocConverterX.exe";
sbLogs.AppendLine(executablePath + "...");
var srcPath = $@"{assemblyDirectoryPath}\src\sample.docx";
var outPath = Path.GetTempFileName() + ".pdf";
startInfo.FileName = executablePath;
if (File.Exists(outPath))
{
File.Delete(outPath);
}
if (File.Exists(executablePath) && File.Exists(srcPath))
{
sbLogs.AppendLine("files exists...");
}
else
sbLogs.AppendLine("EXE & source files NOT exists...");
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.Arguments = $"\"{srcPath}\" \"{outPath}\" -cPDF";
using (Process exeProcess = Process.Start(startInfo))
{
sbLogs.AppendLine($"wait...{DateTime.Now.ToString()}");
exeProcess.WaitForExit();
sbLogs.AppendLine($"complete...{DateTime.Now.ToString()}");
}
sbLogs.AppendLine("Conversion complete.");
}
catch (Exception ex)
{
sbLogs.AppendLine(ex.ToString());
}
return new OkObjectResult(sbLogs);
}
}
dim C
Set C=CreateObject("DocConverter.DocConverterX")
C.Convert "c:\source.docx", "c:\dest.pdf", "-cPDF -log c:\doc.log"
Response.Write C.ErrorMessage
set C = nothing
dim C
Set C=CreateObject("DocConverter.DocConverterX")
Response.Clear
Response.AddHeader "Content-Type", "binary/octet-stream"
Response.AddHeader "Content-Disposition", "attachment; filename=test.pdf"
Response.BinaryWrite C.ConvertToStream("C:\www\ASP\Source.docx", "C:\www\ASP", "-cpdf -log c:\doc.log")
set C = nothing
$src="C:\\test\\test.docx";
$dest="C:\\test\\test.pdf";
if (file_exists($dest)) unlink($dest);
$c= new COM("DocConverter.DocConverterX");
$c->convert($src,$dest, "-cPDF -log c:\\test\\Doc.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;
require 'win32ole'
c = WIN32OLE.new('DocConverter.DocConverterX')
src = "C:\\test\\test.docx"
dest = "C:\\test\\test.pdf"
c.convert(src, dest, "-cPDF -log c:\\test\\Doc.log")
if not File.exist?(dest)
puts c.ErrorMessage
end
import win32com.client
import os.path
c = win32com.client.Dispatch("DocConverter.DocConverterX")
src = "C:\\test\\test.docx"
dest = "C:\\test\\test.pdf"
c.convert(src, dest, "-cPDF -log c:\\test\\Doc.log")
if not os.path.exists(dest):
print(c.ErrorMessage)
uses Dialogs, Vcl.OleAuto;
var
c: OleVariant;
begin
c := CreateOleObject('DocConverter.DocConverterX');
c.Convert('c:\test\source.docx', 'c:\test\dest.pdf', '-cPDF -log c:\test\Doc.log');
if c.ErrorMessage <> '' then
ShowMessage(c.ErrorMessage);
end;
var c = new ActiveXObject("DocConverter.DocConverterX");
c.Convert("C:\\test\\source.docx", "C:\\test\\dest.pdf", "-cPDF");
if (c.ErrorMessage != "")
alert(c.ErrorMessage)
use Win32::OLE; my $src = "C:\\test\\test.docx"; my $dest = "C:\\test\\test.pdf"; my $c = CreateObject Win32::OLE 'DocConverter.DocConverterX'; $c->convert($src, $dest, "-cPDF -log c:\\test\\Doc.log"); print $c->ErrorMessage if -e $dest;
नि:शुल्क ट्रायल डाउनलोड करें और अपने फाइलों को मिनटों में कन्वर्ट करें।
कोई क्रेडिट कार्ड या ईमेल की आवश्यकता नहीं।