<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Help! My publisher wants a 300 dpi TIFF</title>
	<atom:link href="http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/</link>
	<description>Steve Eddins manages the Image &#38; Geospatial development team at The MathWorks and coauthored Digital Image Processing Using MATLAB. He writes here about image processing concepts, algorithm implementations, and MATLAB.</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:58:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: AC</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-24616</link>
		<dc:creator>AC</dc:creator>
		<pubDate>Wed, 09 Nov 2011 10:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-24616</guid>
		<description>Hi all,
I have been struggling myself with this problem. Thanks for all the tips!
I just wanted to add: if you prefer to do it manually (as opposed to command line), once you plot a figure in MATLAB, you may simply click &#039;File&gt;Export Setup&#039;. Then you can choose the Resolution and the size at the same time. 
I thought this was convenient and simple enough to be mentioned here. 

Wow, submission just became less time-consuming :)</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
I have been struggling myself with this problem. Thanks for all the tips!<br />
I just wanted to add: if you prefer to do it manually (as opposed to command line), once you plot a figure in MATLAB, you may simply click &#8216;File&gt;Export Setup&#8217;. Then you can choose the Resolution and the size at the same time.<br />
I thought this was convenient and simple enough to be mentioned here. </p>
<p>Wow, submission just became less time-consuming :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-24436</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 23 Aug 2011 21:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-24436</guid>
		<description>Peter&#8212;Thanks!</description>
		<content:encoded><![CDATA[<p>Peter&mdash;Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-24435</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 23 Aug 2011 20:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-24435</guid>
		<description>This code works for me. Get export_fig from:
http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig

&lt;pre&gt;
figure(&#039;InvertHardcopy&#039;,&#039;off&#039;,&#039;Color&#039;,[1 1 1]); % Force the background to be white
plot(x, y);
export_fig([filepath filename &#039;full&#039;], &#039;-tif&#039;, &#039;-cmyk&#039;, &#039;-r300&#039;); % For CMYK 300 DPI tiff images
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>This code works for me. Get export_fig from:<br />
<a href="http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig" rel="nofollow">http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig</a></p>
<pre>
figure('InvertHardcopy','off','Color',[1 1 1]); % Force the background to be white
plot(x, y);
export_fig([filepath filename 'full'], '-tif', '-cmyk', '-r300'); % For CMYK 300 DPI tiff images
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22578</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 06 Jan 2010 15:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22578</guid>
		<description>Kumaran&#8212;GeoTIFF referencing information is stored in a TIFF image using private tags, not using the XResolution and YResolution tags.  I don&#039;t know exactly how to do what you are asking. However, since you say the referencing info doesn&#039;t change, you might be able to use the Tiff class (a R2009b) feature to copy the GeoTIFF tag info into your output TIFF file.</description>
		<content:encoded><![CDATA[<p>Kumaran&mdash;GeoTIFF referencing information is stored in a TIFF image using private tags, not using the XResolution and YResolution tags.  I don&#8217;t know exactly how to do what you are asking. However, since you say the referencing info doesn&#8217;t change, you might be able to use the Tiff class (a R2009b) feature to copy the GeoTIFF tag info into your output TIFF file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumaran</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22553</link>
		<dc:creator>Kumaran</dc:creator>
		<pubDate>Mon, 04 Jan 2010 06:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22553</guid>
		<description>Hi, I am importing a geotiff image using imread. I have the .tfw file which gives me the reference info.
I then perform some processing on the image and then which to wish to export the image as a geotiff. 
The problem I am facing is that I am not sure what to put into the resolution parameters. 
The reference data is the same, so I can reuse the tfw file and rename it accordingly.
What do I do with the the XResolution and YResolution parameters. I thought they should be the pixels per degree, but I cannot change the ResolutionUnit.

Can you provide any help on how to create a geotiff image with the proper referencing and resolution?</description>
		<content:encoded><![CDATA[<p>Hi, I am importing a geotiff image using imread. I have the .tfw file which gives me the reference info.<br />
I then perform some processing on the image and then which to wish to export the image as a geotiff.<br />
The problem I am facing is that I am not sure what to put into the resolution parameters.<br />
The reference data is the same, so I can reuse the tfw file and rename it accordingly.<br />
What do I do with the the XResolution and YResolution parameters. I thought they should be the pixels per degree, but I cannot change the ResolutionUnit.</p>
<p>Can you provide any help on how to create a geotiff image with the proper referencing and resolution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22291</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 04 Nov 2009 15:28:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22291</guid>
		<description>Sonja&#8212;My &lt;a href=&quot;http://www.mathworks.com/matlabcentral/fileexchange/25595&quot; rel=&quot;nofollow&quot;&gt;imwritesize&lt;/a&gt; submission on the MATLAB Central File Exchange might be helpful.  It was posted there earlier today.</description>
		<content:encoded><![CDATA[<p>Sonja&mdash;My <a href="http://www.mathworks.com/matlabcentral/fileexchange/25595" rel="nofollow">imwritesize</a> submission on the MATLAB Central File Exchange might be helpful.  It was posted there earlier today.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonja</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22289</link>
		<dc:creator>Sonja</dc:creator>
		<pubDate>Wed, 04 Nov 2009 05:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22289</guid>
		<description>My publisher is wanting images for a new book to be 300 dpi. Only 5 of the 19 images are 300, the rest are either 96 or 150. HOW DO I ENLARGE THE DPI?

I&#039;m on a hard deadline, so any respose would be helpful!!!</description>
		<content:encoded><![CDATA[<p>My publisher is wanting images for a new book to be 300 dpi. Only 5 of the 19 images are 300, the rest are either 96 or 150. HOW DO I ENLARGE THE DPI?</p>
<p>I&#8217;m on a hard deadline, so any respose would be helpful!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22103</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 09 Sep 2009 17:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22103</guid>
		<description>Jan&#8212;When you say &quot;It won&#039;t let me change the pixels,&quot; what does &quot;It&quot; refer to?

This blog is about image processing and MATLAB, and the post you commented on talks about how to do the task using MATLAB.

If you don&#039;t have MATLAB and want to use something else, then you should look for an image editing package.  There are many such packages, some free and some commercial.</description>
		<content:encoded><![CDATA[<p>Jan&mdash;When you say &#8220;It won&#8217;t let me change the pixels,&#8221; what does &#8220;It&#8221; refer to?</p>
<p>This blog is about image processing and MATLAB, and the post you commented on talks about how to do the task using MATLAB.</p>
<p>If you don&#8217;t have MATLAB and want to use something else, then you should look for an image editing package.  There are many such packages, some free and some commercial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-22092</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 03 Sep 2009 22:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-22092</guid>
		<description>I have a .tiff file that is 200 dpi and the publisher needs it to be 300 dpi.  It is 1700 x 2200 pixels and I believe 8.5 x 11 inches, but I&#039;m not sure. It won&#039;t let me change the pixels.  How do I change it or what software can I use so that it will work for me?</description>
		<content:encoded><![CDATA[<p>I have a .tiff file that is 200 dpi and the publisher needs it to be 300 dpi.  It is 1700 x 2200 pixels and I believe 8.5 x 11 inches, but I&#8217;m not sure. It won&#8217;t let me change the pixels.  How do I change it or what software can I use so that it will work for me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: May</title>
		<link>http://blogs.mathworks.com/steve/2006/03/03/help-my-publisher-wants-a-300-dpi-tiff/#comment-21970</link>
		<dc:creator>May</dc:creator>
		<pubDate>Mon, 13 Jul 2009 13:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/steve/?p=41#comment-21970</guid>
		<description>Thanks Steve. My understanding got better! :)</description>
		<content:encoded><![CDATA[<p>Thanks Steve. My understanding got better! :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

