<?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>image resize | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/image-resize/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 05:29:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>How to resize image using php?</title>
		<link>https://studentprojects.in/software-development/php-mysql/php-tutorial/resize-image-php/</link>
					<comments>https://studentprojects.in/software-development/php-mysql/php-tutorial/resize-image-php/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 10:10:34 +0000</pubDate>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[image resize]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1805</guid>

					<description><![CDATA[<p>Here is a simple script to resize the given image. This requires PHP5, GD library. First download the file and include to your code. Usage example:</p>
<p>The post <a href="https://studentprojects.in/software-development/php-mysql/php-tutorial/resize-image-php/">How to resize image using php?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Here is a simple script to resize the given image. This requires PHP5, GD library. </p>
<p>First <a href="https://studentprojects.in/wp-content/uploads/2011/09/resize-class.zip">download the file</a> and include to your code. </p>
<p><strong>Usage example:</strong></p>
<pre lang="php" escaped="true" line="1">
<?php
// *** Include the class
include("resize-class.php");

// *** 1) Initialise / load image
$resizeObj = new resize('sample.jpg');

// *** 2) Resize image (options: exact, portrait, landscape, auto, crop)
$resizeObj -> resizeImage(200, 200, 'crop');
// *** 3) Save image
$resizeObj -> saveImage('sample-resized.jpg', 100);
?>
</pre><p>The post <a href="https://studentprojects.in/software-development/php-mysql/php-tutorial/resize-image-php/">How to resize image using php?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/php-mysql/php-tutorial/resize-image-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
