<?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/"
	>

<channel>
	<title>Linux Ask! &#187; Graphics</title>
	<atom:link href="http://www.linuxask.com/topics/applications/graphics/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Combine multiple images into a single image with ImageMagick</title>
		<link>http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick</link>
		<comments>http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick#comments</comments>
		<pubDate>Sun, 18 Sep 2011 13:41:41 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[ImageMagick]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3402</guid>
		<description><![CDATA[Combine multiple images into a single image with ImageMagick Answer: With the powerful ImageMagick program, we can easily handle common graphics tasks using command only. For example, to combine multiple images into a single image, we need just one command: # convert file1.jpg file2.jpg file3.jpg +append -quality 90 'output.jpg' The above command (file1.jpg file2.jpg file3.jpg) <a href='http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-combine-the-output-of-multiple-commands-into-a-single-file" rel="bookmark" title="How to combine the output of multiple commands into a single file?">How to combine the output of multiple commands into a single file? </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick" rel="bookmark" title="Create a transparent image using ImageMagick">Create a transparent image using ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-html-to-image" rel="bookmark" title="Convert HTML to image">Convert HTML to image </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Combine multiple images into a single image with ImageMagick </p>
<p><strong>Answer:</strong></p>
<p>With the powerful <a href="http://www.imagemagick.org"><strong>ImageMagick</strong></a> program, we can easily handle common graphics tasks using command only.</p>
<p>For example, to combine multiple images into a single image, we need just one command: </p>
<p><code># convert file1.jpg file2.jpg file3.jpg  +append -quality 90 'output.jpg'</code></p>
<p>The above command (file1.jpg file2.jpg file3.jpg) into the file <strong>output.jpg</strong> with quality set to 90.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-combine-the-output-of-multiple-commands-into-a-single-file" rel="bookmark" title="How to combine the output of multiple commands into a single file?">How to combine the output of multiple commands into a single file? </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick" rel="bookmark" title="Create a transparent image using ImageMagick">Create a transparent image using ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-html-to-image" rel="bookmark" title="Convert HTML to image">Convert HTML to image </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a transparent image using ImageMagick</title>
		<link>http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick</link>
		<comments>http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick#comments</comments>
		<pubDate>Mon, 29 Aug 2011 13:29:05 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[ImageMagick]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3445</guid>
		<description><![CDATA[Create a transparent image using ImageMagick Answer: You can use the following command to create an empty png file, using the ImageMagick. # convert -size 100x100 xc:none empty.png an empty png of size 100x100 will be created.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick" rel="bookmark" title="Combine multiple images into a single image with ImageMagick">Combine multiple images into a single image with ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-html-to-image" rel="bookmark" title="Convert HTML to image">Convert HTML to image </a></li>
<li><a href="http://www.linuxask.com/questions/create-iso-image-from-cd-rom-in-linux" rel="bookmark" title="Create ISO image from CD-ROM in Linux">Create ISO image from CD-ROM in Linux </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Create a transparent image using ImageMagick</p>
<p><strong>Answer:</strong></p>
<p>You can use the following command to create an empty <strong>png</strong> file, using the <strong>ImageMagick</strong>.</p>
<p><code># convert -size 100x100 xc:none empty.png</code></p>
<p>an empty png of size 100x100 will be created.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick" rel="bookmark" title="Combine multiple images into a single image with ImageMagick">Combine multiple images into a single image with ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-html-to-image" rel="bookmark" title="Convert HTML to image">Convert HTML to image </a></li>
<li><a href="http://www.linuxask.com/questions/create-iso-image-from-cd-rom-in-linux" rel="bookmark" title="Create ISO image from CD-ROM in Linux">Create ISO image from CD-ROM in Linux </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print large banner on printer</title>
		<link>http://www.linuxask.com/questions/print-large-banner-on-printer</link>
		<comments>http://www.linuxask.com/questions/print-large-banner-on-printer#comments</comments>
		<pubDate>Fri, 09 Jul 2010 10:44:35 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[command]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1845</guid>
		<description><![CDATA[Print large banner on printer Answer: This is a less well known command for Linux. It allow you to prints a large, high quality banner on the standard output. Example: # banner -w 80 Hello World Where -w change the width of the output, in which the default is 132.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/hello-world-in-different-scripting-languages" rel="bookmark" title="Hello World in different scripting languages">Hello World in different scripting languages </a></li>
<li><a href="http://www.linuxask.com/questions/solving-the-error-packet-too-large-in-mysql" rel="bookmark" title="Solving the error &#8220;Packet too large&#8221; in MySQL">Solving the error &#8220;Packet too large&#8221; in MySQL </a></li>
<li><a href="http://www.linuxask.com/questions/wrap-each-line-to-fit-in-specified-width" rel="bookmark" title="Wrap each line to fit in specified width">Wrap each line to fit in specified width </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Print large banner on printer</p>
<p><strong>Answer:</strong></p>
<p>This is a less well known command for Linux. It allow you to prints a large, high quality banner on the standard output. </p>
<p>Example:</p>
<p><code>#  banner -w 80 Hello World</code></p>
<p>Where <strong>-w</strong> change the width of the output, in which the default is 132.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/hello-world-in-different-scripting-languages" rel="bookmark" title="Hello World in different scripting languages">Hello World in different scripting languages </a></li>
<li><a href="http://www.linuxask.com/questions/solving-the-error-packet-too-large-in-mysql" rel="bookmark" title="Solving the error &#8220;Packet too large&#8221; in MySQL">Solving the error &#8220;Packet too large&#8221; in MySQL </a></li>
<li><a href="http://www.linuxask.com/questions/wrap-each-line-to-fit-in-specified-width" rel="bookmark" title="Wrap each line to fit in specified width">Wrap each line to fit in specified width </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/print-large-banner-on-printer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert HTML to image</title>
		<link>http://www.linuxask.com/questions/convert-html-to-image</link>
		<comments>http://www.linuxask.com/questions/convert-html-to-image#comments</comments>
		<pubDate>Fri, 12 Feb 2010 12:05:53 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[ImageMagick]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1188</guid>
		<description><![CDATA[Convert HTML to image Answer: Firstly, you need to install html2ps # sudo apt-get install html2ps Then install the ImageMagick # sudo apt-get install imagemagick Finally run the command: # convert -density 72 input.html output.png<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick" rel="bookmark" title="Combine multiple images into a single image with ImageMagick">Combine multiple images into a single image with ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick" rel="bookmark" title="Create a transparent image using ImageMagick">Create a transparent image using ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-windows-text-file-to-unix-format-without-dos2unix" rel="bookmark" title="Convert Windows text file to UNIX format without dos2unix">Convert Windows text file to UNIX format without dos2unix </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Convert HTML to image</p>
<p><strong>Answer:</strong></p>
<p>Firstly, you need to install <strong>html2ps</strong></p>
<p><code># sudo apt-get install html2ps</code></p>
<p>Then install the <strong>ImageMagick</strong></p>
<p><code># sudo apt-get install imagemagick</code></p>
<p>Finally run the command:</p>
<p><code># convert -density 72 input.html output.png</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/combine-multiple-images-into-a-single-image-with-imagemagick" rel="bookmark" title="Combine multiple images into a single image with ImageMagick">Combine multiple images into a single image with ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-transparent-image-using-imagemagick" rel="bookmark" title="Create a transparent image using ImageMagick">Create a transparent image using ImageMagick </a></li>
<li><a href="http://www.linuxask.com/questions/convert-windows-text-file-to-unix-format-without-dos2unix" rel="bookmark" title="Convert Windows text file to UNIX format without dos2unix">Convert Windows text file to UNIX format without dos2unix </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/convert-html-to-image/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
