How to Convert fonts to outlines

Forum for the PDF-XChange Editor - Free and Licensed Versions

Moderators: TrackerSupp-Daniel, Tracker Support, Paul - Tracker Supp, Vasyl-Tracker Dev Team, Chris - Tracker Supp, Sean - Tracker, Ivan - Tracker Software, Tracker Supp-Stefan

Post Reply
drlex
User
Posts: 3
Joined: Thu Nov 09, 2017 4:03 am

How to Convert fonts to outlines

Post by drlex »

How can I do convertion text to outlines and save in file?
Attachments
2017-11-09_065950.png
User avatar
Tracker Supp-Stefan
Site Admin
Posts: 17910
Joined: Mon Jan 12, 2009 8:07 am
Location: London
Contact:

Re: How to Convert fonts to outlines

Post by Tracker Supp-Stefan »

Hello drlex,

You can not do this in the Editor alone, but you can "reprint" your file - and at print time select to render all text as outlines:
Outline.png
Regards,
Stefan
drlex
User
Posts: 3
Joined: Thu Nov 09, 2017 4:03 am

Re: How to Convert fonts to outlines

Post by drlex »

Hmm...
Not so good way to do it wia print. Why? Size (H,W) changed to printer size like A4...
User avatar
Tracker Supp-Stefan
Site Admin
Posts: 17910
Joined: Mon Jan 12, 2009 8:07 am
Location: London
Contact:

Re: How to Convert fonts to outlines

Post by Tracker Supp-Stefan »

Hi DrLex,

Yes - it is not ideal indeed! But is what I could think of as a workaround.
If the paper size is important - you can set up custom sizes in your printer drivers with exactly the desired values.

Regards,
Stefan
drlex
User
Posts: 3
Joined: Thu Nov 09, 2017 4:03 am

Re: How to Convert fonts to outlines

Post by drlex »

Thanks.
With PDF-XChange Editor can't see way to do it properly.
More workable decision to use manual or autmation variant with Acrobat DC.

Code: Select all

Dim cur As New ProcessStartInfo
            If Directory.Exists(sTemp) AndAlso Directory.GetFiles(sTemp).Length > 0 Then
                                For Each FileName As String In Directory.GetFiles(sTemp)
                    'Dim fi As New FileInfo(FileName)
                    'Select Case fi.Extension
                    'Case ".pdf"
                    cur.FileName = """C:\Program Files\Convert fonts to outlines.exe"""
                    cur.Arguments = """" & (FileName) & """"
                    cur.WindowStyle = ProcessWindowStyle.Normal
                    cur.UseShellExecute = False
                    cur.RedirectStandardInput = True
                    cur.RedirectStandardError = True
                    cur.RedirectStandardOutput = True
                    Dim processcur As Process
                    processcur = Process.Start(cur)
                    Dim ExplorerHandle As IntPtr = Ico.NativeMethods.FindWindow("AcrobatSDIWindow", vbNullString)
                    Ico.NativeMethods.ShowWindow(ExplorerHandle, Ico.NativeMethods.ShowWindowCommands.SW_HIDE)
                    processcur.WaitForExit()
                    'End Select
                Next
Post Reply