<?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>TechiePark &#187; Image</title>
	<atom:link href="http://www.techiepark.com/tag/image/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techiepark.com</link>
	<description>everything about web technologies</description>
	<lastBuildDate>Thu, 02 Feb 2012 06:00:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>File upload using Java</title>
		<link>http://www.techiepark.com/tutorials/file-upload-using-java/</link>
		<comments>http://www.techiepark.com/tutorials/file-upload-using-java/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 22:48:51 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Jsp]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Upload]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2007/12/12/file-upload-using-java/</guid>
		<description><![CDATA[First download Apache Jakarta Commons FileUpload library from this link and add into classpath of your Application. Validate HTTP Request Now that you have installed the FileUpload library, you can start writing the code. First, we have to make sure the HTTP request is encoded in multipart format. This can be done using the static [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/file-upload-using-java/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The request doesn&#8217;t contain a multipart/form-data or multipart/mixed stream, content type header is null</title>
		<link>http://www.techiepark.com/tutorials/the-request-doesnt-contain-a-multipartform-data-or-multipartmixed-stream-content-type-header-is-null/</link>
		<comments>http://www.techiepark.com/tutorials/the-request-doesnt-contain-a-multipartform-data-or-multipartmixed-stream-content-type-header-is-null/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 04:29:07 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Jsp]]></category>
		<category><![CDATA[Servlet]]></category>

		<guid isPermaLink="false">http://www.techiepark.com/?p=303</guid>
		<description><![CDATA[org.apache.commons.fileupload.FileUploadBase$InvalidContentTypeException: the request doesn&#8217;t contain a multipart/form-data or multipart/mixed stream, content type header is null If you are iterating the items from the multipart request without checking if an http request is encoded in multipart format then you will get this error. If ServletFileUpload.isMultipartContent(request) returns true then you need to get the fields via the [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/the-request-doesnt-contain-a-multipartform-data-or-multipartmixed-stream-content-type-header-is-null/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP script uploads files and manipulates images very easily</title>
		<link>http://www.techiepark.com/resources/php-script-uploads-files-and-manipulates-images-very-easily/</link>
		<comments>http://www.techiepark.com/resources/php-script-uploads-files-and-manipulates-images-very-easily/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 12:26:45 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.techiepark.com/?p=266</guid>
		<description><![CDATA[class.upload.php - This PHP script uploads files and manipulates images very easily. The perfect script to generate thumbnails or create a photo gallery! It can convert, resize and work on uploaded images in many ways, add labels, watermarks and reflections and other image editing features. You can use it for files uploaded through an HTML [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/resources/php-script-uploads-files-and-manipulates-images-very-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serving Image from Absolute Path in Java/J2EE</title>
		<link>http://www.techiepark.com/tutorials/serving-image-from-absolute-path-in-javaj2ee/</link>
		<comments>http://www.techiepark.com/tutorials/serving-image-from-absolute-path-in-javaj2ee/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 05:50:49 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Servlet]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=210</guid>
		<description><![CDATA[import java.io.*; import java.net.URLDecoder; import javax.servlet.*; import javax.servlet.http.*; /** * Serving Image from Absolute Path. */ public class ImageServAbsolutePath extends HttpServlet { private static final long serialVersionUID = 1L; private static final int BUFFER_SIZE = 10240; private String imagePath; public void init() throws ServletException { /*&#8212;&#8212;- Image Base Path &#8212;&#8212;&#8212;&#8211;*/ this.imagePath = &#34;/images&#34;; } protected [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/serving-image-from-absolute-path-in-javaj2ee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic JPEG image resizing in Java</title>
		<link>http://www.techiepark.com/tutorials/basic-jpeg-image-resizing-in-java/</link>
		<comments>http://www.techiepark.com/tutorials/basic-jpeg-image-resizing-in-java/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 00:01:14 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Jsp]]></category>
		<category><![CDATA[Resize]]></category>
		<category><![CDATA[Servlet]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2008/01/01/basic-jpeg-image-resizing-in-java/</guid>
		<description><![CDATA[/* JpegResizerDemo.java */ import java.io.FileInputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.awt.RenderingHints; import java.awt.image.BufferedImage; import java.awt.image.RescaleOp; import java.awt.image.AffineTransformOp; import java.awt.geom.AffineTransform; import java.util.Map; import java.util.HashMap; import com.sun.image.codec.jpeg.JPEGImageDecoder; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.ImageFormatException; import com.sun.image.codec.jpeg.JPEGImageEncoder; /** * @author CyranoVR */ public class ImageResizer { public static void main(String args[]) { if (args.length != 3) { [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/basic-jpeg-image-resizing-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image resizing with PHP</title>
		<link>http://www.techiepark.com/tutorials/image-resizing-with-php/</link>
		<comments>http://www.techiepark.com/tutorials/image-resizing-with-php/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 22:41:23 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resize]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2007/12/12/image-resizing-with-php/</guid>
		<description><![CDATA[&#60;?php function imageResize($width, $height, $target) { //takes the larger size of the width and height and applies the formula accordingly&#8230;this is so this script will work dynamically with any size image if ($width &#62; $height) { $percentage = ($target / $width); } else { $percentage = ($target / $height); } //gets the new value and [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/image-resizing-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

