<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>scribus &#8211; luke arms</title>
	<atom:link href="https://tech.lkrms.org/tag/scribus/feed/" rel="self" type="application/rss+xml" />
	<link>https://tech.lkrms.org</link>
	<description>just a nerd with &#34;mild OCD tendencies&#34;</description>
	<lastBuildDate>Mon, 22 May 2017 00:20:29 +0000</lastBuildDate>
	<language>en-AU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.6.12</generator>

<image>
	<url>https://tech.lkrms.org/wp-content/uploads/2016/06/cropped-Logo-Letters-WB-Circle-2-32x32.png</url>
	<title>scribus &#8211; luke arms</title>
	<link>https://tech.lkrms.org</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">152348619</site>	<item>
		<title>Embedding fonts in a PDF (after creating it)</title>
		<link>https://tech.lkrms.org/embedding-fonts-in-a-pdf-after-creating-it/</link>
		
		<dc:creator><![CDATA[Luke]]></dc:creator>
		<pubDate>Thu, 12 Sep 2013 01:58:05 +0000</pubDate>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[desktop publishing]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[ghostscript]]></category>
		<category><![CDATA[scribus]]></category>
		<guid isPermaLink="false">http://lkrms.org/?p=983</guid>

					<description><![CDATA[<p>I don&#8217;t do a lot of desktop publishing, but when I do, my tool of choice is Serif PagePlus. It&#8217;s affordable, fast, stable, intuitive, EPS-friendly and capable of producing press-ready output (i.e. CMYK PDFs with bleed). The usual suspects (Adobe InDesign, QuarkXPress, Microsoft Publisher) all fail to meet 2 or more of those requirements. But &#8230; <a href="https://tech.lkrms.org/embedding-fonts-in-a-pdf-after-creating-it/" class="more-link">Continue reading <span class="screen-reader-text">Embedding fonts in a PDF (after creating it)</span> <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a rel="nofollow" href="https://tech.lkrms.org/embedding-fonts-in-a-pdf-after-creating-it/">Embedding fonts in a PDF (after creating it)</a> appeared first on <a rel="nofollow" href="https://tech.lkrms.org">luke arms</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I don&#8217;t do a lot of desktop publishing, but when I do, my tool of choice is <a href="http://www.serif.com/pageplus/">Serif PagePlus.</a> It&#8217;s affordable, fast, stable, intuitive, EPS-friendly and capable of producing press-ready output (i.e. CMYK PDFs with bleed). The usual suspects (Adobe InDesign, QuarkXPress, Microsoft Publisher) all fail to meet 2 or more of those requirements.</p>
<p>But PagePlus only runs on Windows, and I&#8217;m not spending much time on Windows these days. Pixelmator and iDraw are excellent for bitmap and vector editing respectively, but iStudio Publisher is still missing a few features it needs to cut the mustard as a serious DTP app.</p>
<p>So I&#8217;ve been experimenting with <a href="http://www.scribus.net/">Scribus</a>, which is open-source, cross-platform and (surprisingly) well-documented. Being Qt-based, it&#8217;s not as snappy as PagePlus, but it&#8217;s usable on slower machines and meets all of my other requirements.</p>
<p>I&#8217;ve only found one catch so far: when exporting to PDF, its font outlining is slightly inaccurate (text looks heavier than it should, at least when using Avenir LT&#8217;s OpenType fonts). And it can&#8217;t embed OpenType fonts. There&#8217;s a workaround, though: export from Scribus without outlining or embedding any fonts, then use Ghostscript to do the embedding afterwards. Here&#8217;s a little BASH script that looks after it on OS X:</p>
<pre class="brush: bash; title: embed_fonts.sh; notranslate">
#!/bin/bash

if [ $# -ne 1 ]; then

    echo &quot;Usage: embed_fonts.sh MyPdf.pdf&quot;
    exit 1

fi

if [ ! -f &quot;$1&quot; ]; then

    echo &quot;Not a file: $1&quot;
    exit 1

fi

command -v gs &gt;/dev/null 2&gt;&amp;1 || { echo &quot;Ghostscript not found.&quot;; exit 2; }

TEMPFILE=&quot;$(dirname &quot;$1&quot;)/nofonts.$(basename &quot;$1&quot;)&quot;

mv -vf &quot;$1&quot; &quot;$TEMPFILE&quot;

FONTPATH=/Library/Fonts:~/Library/Fonts

gs -sDEVICE=pdfwrite -sFONTPATH=$FONTPATH -dPDFSETTINGS=/prepress -dAutoFilterColorImages=false -dAutoFilterGrayImages=false -dColorImageFilter=/FlateEncode -dDownsampleColorImages=false -dDownsampleGrayImages=false -dDownsampleMonoImages=false -dGrayImageFilter=/FlateEncode -o &quot;$1&quot; &quot;$TEMPFILE&quot;
</pre>
<p>The post <a rel="nofollow" href="https://tech.lkrms.org/embedding-fonts-in-a-pdf-after-creating-it/">Embedding fonts in a PDF (after creating it)</a> appeared first on <a rel="nofollow" href="https://tech.lkrms.org">luke arms</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">983</post-id>	</item>
	</channel>
</rss>
