Conversion tif, dwg dgn to pdf
Moderators: XnTriq, helmut, xnview
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Conversion tif, dwg dgn to pdf
Hi Experts,
I have the following requirement and need your help.
1. I I am converting tif to pdf via the command line. The PDF file as output is rather too large. How can I reduce this to be the same size but without any reduction in quality?
2. I want to convert DWG and DGN files to PDF as well. Do I need a plugin to do this?
3. More questions to come.
Your help is appreciated heaps.
Thanks.
I have the following requirement and need your help.
1. I I am converting tif to pdf via the command line. The PDF file as output is rather too large. How can I reduce this to be the same size but without any reduction in quality?
2. I want to convert DWG and DGN files to PDF as well. Do I need a plugin to do this?
3. More questions to come.
Your help is appreciated heaps.
Thanks.
-
- XnThusiast
- Posts: 4136
- Joined: Sun Apr 29, 2012 9:45 am
- Location: Cheltenham, U.K.
Re: Conversion tif, dwg dgn to pdf
Do you have the NConvert Help file? If necessary, you can create a listing using this code:AutoCadConverter wrote:I am converting tif to pdf via the command line. The PDF file as output is rather too large. How can I reduce this to be the same size but without any reduction in quality?
Code: Select all
nconvert -help > Help.txt
Code: Select all
-c 1
With optimal compression the PDF file created should be only marginally larger than the input TIFF file, or actually smaller if the TIFF file is not optimally compressed.
DWG is listed as a supported file type (no plug-in required) but not DGN...AutoCadConverter wrote:I want to convert DWG and DGN files to PDF as well. Do I need a plugin to do this?
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
Thank you very very much for your help.
Can I please ask:
I tried converting to pdf from dwg and it gave me an error.
The command was similar to the the one I wrote for TIF to PDF
The commands I used were:
nconvert -out pdf *.dwg -
nconvert -c 1 -out pdf *.dwg
First I got a warning that had status message 65534
and it also said Error: Can't read _____.dwg (There is only one file in the folder)
Also because I have so many TIF files to convert, I don't really want to open them all to verify.
The command -c 1: Will that completely remove all the color in the TIF? I mostly have BlacknWhite TIFs but there definitely a few color ones too.
Thanks so much for your help.
Can I please ask:
I tried converting to pdf from dwg and it gave me an error.
The command was similar to the the one I wrote for TIF to PDF
The commands I used were:
nconvert -out pdf *.dwg -
nconvert -c 1 -out pdf *.dwg
First I got a warning that had status message 65534
and it also said Error: Can't read _____.dwg (There is only one file in the folder)
Also because I have so many TIF files to convert, I don't really want to open them all to verify.
The command -c 1: Will that completely remove all the color in the TIF? I mostly have BlacknWhite TIFs but there definitely a few color ones too.
Thanks so much for your help.
-
- XnThusiast
- Posts: 4136
- Joined: Sun Apr 29, 2012 9:45 am
- Location: Cheltenham, U.K.
Re: Conversion tif, dwg dgn to pdf
I'm not familiar with the DWG format, possibly someone else can help.AutoCadConverter wrote:I tried converting to pdf from dwg and it gave me an error.
The command was similar to the the one I wrote for TIF to PDF
The commands I used were:
Code: Select all
nconvert -out pdf *.dwg
First I got a warning that had status message 65534Code: Select all
nconvert -c 1 -out pdf *.dwg
and it also said Error: Can't read _____.dwg (There is only one file in the folder)
I don't know if you might possibly require GhostScript to be installed (same x32 or x64 as the NConvert version you are using), or whether there might be different DWG format versions??
If the files you load are mixed bit depths I'm not sure what the effect will be without testing it. 'Fax' compression is certainly specific to 1-bit depth images, but if you want to maintain the bit depth of images that aren't 1-bit I think it would probably be necessary either to separate them and then apply the optimal compression method to each, or possibly alternatively use more advanced scripting to test the bit depth, if that is possible, and then process each file appropriately.AutoCadConverter wrote:Also because I have so many TIF files to convert, I don't really want to open them all to verify.
The command -c 1: Will that completely remove all the color in the TIF? I mostly have BlacknWhite TIFs but there definitely a few color ones too.
Could you please post any new threads under the NConvert heading of the forum.
-
- XnThusiast
- Posts: 4136
- Joined: Sun Apr 29, 2012 9:45 am
- Location: Cheltenham, U.K.
Re: Conversion tif, dwg dgn to pdf
If you do need to process files with mixed bit depths, another option would be to use a compression method that is applicable to any bit depth such as LZW, if the resulting file sizes are acceptable.
-
- Moderator & Librarian
- Posts: 6374
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Conversion tif, dwg dgn to pdf
The AutoCAD formats are not “natively” supported by XnView and NConvert. For converting DWG files, a 3rd-party I/O plug-in is required which isn't included in the “Minimal” and “Standard” but in the “Extended” download package of XnView. The plug-in is also available as a separate download from xnview.com and cadsofttools.com.cday wrote:I'm not familiar with the DWG format, possibly someone else can help.
XnTriq ([url=http://newsgroup.xnview.com/viewtopic.php?p=98957#p98957]cmd_WebPage for plugin-supported formats[/url]) wrote:
I had to install %ProgramFiles%\XnView\Plugins\CS_Manager.exe.
The settings are saved in the registry: HKEY_CURRENT_USER\Software\SoftGold\
Soft Gold ([url=http://www.cadsofttools.com/en/products/plugins_for_3d-party_programs.html]Plugins for 3d-party programs[/url] » CS_Manager) wrote:
Small free application allows to:
- Input registration data
- Change size of CAD image (DIB)
- Change between color and black-white mode
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
Thank you soo much!
I will ask my IT friend to help me install this and will try my first ever batch conversion of DWG files.
I will come back with update.
Thank you very much again.
I will ask my IT friend to help me install this and will try my first ever batch conversion of DWG files.
I will come back with update.
Thank you very much again.
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
Again Thank you.XnTriq wrote:The AutoCAD formats are not “natively” supported by XnView and NConvert. For converting DWG files, a 3rd-party I/O plug-in is required which isn't included in the “Minimal” and “Standard” but in the “Extended” download package of XnView. The plug-in is also available as a separate download from xnview.com and cadsofttools.com.cday wrote:I'm not familiar with the DWG format, possibly someone else can help.
XnTriq ([url=http://newsgroup.xnview.com/viewtopic.php?p=98957#p98957]cmd_WebPage for plugin-supported formats[/url]) wrote:
I had to install %ProgramFiles%\XnView\Plugins\CS_Manager.exe.
The settings are saved in the registry: HKEY_CURRENT_USER\Software\SoftGold\
Soft Gold ([url=http://www.cadsofttools.com/en/products/plugins_for_3d-party_programs.html]Plugins for 3d-party programs[/url] » CS_Manager) wrote:
Small free application allows to:
- Input registration data
- Change size of CAD image (DIB)
- Change between color and black-white mode
I just read the other posts and saw that we have to pay 10Euros. I am fine with that but can you please tell me if :
The DWG files will be converted to PDF like for like. A0 size to A0 size pdf , A3 to A3 and so on.
Some of my DWG files are really old and when converting there usually is a line problem, which gets fixed when I change the line weight settings. Will I be able to overcome this?
-
- Moderator & Librarian
- Posts: 6374
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Conversion tif, dwg dgn to pdf
I'm afraid I can't give you a definitive answer.AutoCadConverter wrote:I just read the other posts and saw that we have to pay 10Euros. I am fine with that but can you please tell me if :
The DWG files will be converted to PDF like for like. A0 size to A0 size pdf , A3 to A3 and so on.
Some of my DWG files are really old and when converting there usually is a line problem, which gets fixed when I change the line weight settings. Will I be able to overcome this?
It's possible to specify a Maximum Width or Height of Drawing in pixels with the “CADSoftTools plugins Manager”, but there's no DPI setting.
- CADSoftTools Support Forum: Search results for “xnview nconvert”
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
XnTriq wrote:I'm afraid I can't give you a definitive answer.AutoCadConverter wrote:I just read the other posts and saw that we have to pay 10Euros. I am fine with that but can you please tell me if :
The DWG files will be converted to PDF like for like. A0 size to A0 size pdf , A3 to A3 and so on.
Some of my DWG files are really old and when converting there usually is a line problem, which gets fixed when I change the line weight settings. Will I be able to overcome this?
It's possible to specify a Maximum Width or Height of Drawing in pixels with the “CADSoftTools plugins Manager”, but there's no DPI setting.
- CADSoftTools Support Forum: Search results for “xnview nconvert”
Thank again for your help. It has been very valuable.
Could you please answer another question for me:
This is in regard to Tiff to PDF
If I want my PDF to have these settings:
Navigation Tab: Page only
Page Layout: Single Page
Magnification: Fit Page
How can I pass these parameters in my nconvert command?
At the moment the command -
nconver -c 1 -out pdf *.tif
achieves Navigation Tab: Page only, but how do I achieve the other settings?
Thanks again!
-
- Moderator & Librarian
- Posts: 6374
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Conversion tif, dwg dgn to pdf
As of now, XnView and NConvert don't have options for setting the viewer preferences of PDF documents.AutoCadConverter wrote:If I want my PDF to have these settings:
Navigation Tab: Page only
Page Layout: Single Page
Magnification: Fit Page
How can I pass these parameters in my nconvert command?
I've been using BeCyPDFMetaEdit (freeware) in the past for post-processing XnView's output. “As an alternative to the dialog-based user interface, the tool supports operating in batch mode (for usage in batch files or links).”
I don't have any hands-on experience with the Reformat function of PlotSoft's free PDFill PDF Tools which depend on Adobe Reader and GhostScript.
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
Thank you once again. You have been very kind and helpful!XnTriq wrote:As of now, XnView and NConvert don't have options for setting the viewer preferences of PDF documents.AutoCadConverter wrote:If I want my PDF to have these settings:
Navigation Tab: Page only
Page Layout: Single Page
Magnification: Fit Page
How can I pass these parameters in my nconvert command?
I've been using BeCyPDFMetaEdit (freeware) in the past for post-processing XnView's output. “As an alternative to the dialog-based user interface, the tool supports operating in batch mode (for usage in batch files or links).”
I don't have any hands-on experience with the Reformat function of PlotSoft's free PDFill PDF Tools which depend on Adobe Reader and GhostScript.
-
- Moderator & Librarian
- Posts: 6374
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Conversion tif, dwg dgn to pdf
You're welcomeAutoCadConverter wrote:Thank you once again. You have been very kind and helpful!
-
- Posts: 8
- Joined: Tue Oct 20, 2015 11:25 am
Re: Conversion tif, dwg dgn to pdf
Can I please ask a last question:XnTriq wrote:You're welcomeAutoCadConverter wrote:Thank you once again. You have been very kind and helpful!
If I want my output folder to be provided in the parameter
nconvert -c 1 -out pdf *.tif
Where do I place this parameter so that all my output goes to another folder?
-
- Moderator & Librarian
- Posts: 6374
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Conversion tif, dwg dgn to pdf
AutoCadConverter wrote:Where do I place this parameter so that all my output goes to another folder?
Code: Select all
nconvert -c 1 -out pdf C:\Source\*.tif -o C:\Destination\%.pdf
XnTriq ([url=http://newsgroup.xnview.com/viewtopic.php?f=57&t=31734&p=126190#p126190]Choose File Location When Converting Image Size[/url]) wrote:Mango Juice ([url=http://newsgroup.xnview.com/viewtopic.php?p=60592#p60592]bugs and suggestions for NConvert[/url]) wrote:mrQQ: try using the -o parameter!mrQQ wrote:and second, it would be really great to have an option to specify output path..
so: -o c:\downloads\filename.jpg
or: -o c:\downloads\%.jpg - if you're doing multiple files - % will become the source file name minus extension
Remember to use %% if you're running it out of a batch file.
- FAQ: How to use nconvert