<?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>ExpBuilder &#187; Image</title>
	<atom:link href="http://ar.expbuilder.com/tag/image/feed" rel="self" type="application/rss+xml" />
	<link>http://ar.expbuilder.com</link>
	<description>مدونة ووردبريس عربية أخرى</description>
	<lastBuildDate>Wed, 05 May 2010 09:52:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>how to convert image from BMP to JPG type in php</title>
		<link>http://ar.expbuilder.com/how-to-convert-image-from-bmp-to-jpg-type-in-php.html</link>
		<comments>http://ar.expbuilder.com/how-to-convert-image-from-bmp-to-jpg-type-in-php.html#comments</comments>
		<pubDate>Fri, 11 Dec 2009 12:43:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[التعليم]]></category>
		<category><![CDATA[الدروس]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[BMP]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[JPG]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=1158</guid>
		<description><![CDATA[how to convert image from BMP to JPG type in php 
Step &#8211; 1

PHP Code:
  $upload_path = "your full upload path where image will store";
if($_FILES['file']['type']=='image/bmp')
{
$name=explode('.',$_FILES['file']['name']);
$name=$name[0].".jpg";
$img = ImageCreateFromBmp($upload_path.$_FILES['file']['name']);
imagejpeg($img,$upload_path.$name); // Convert to jpg file
unlink($upload_path.$_FILES['file']['name']); // Delete BMP File
// Your Databse operation here
}
  

Step &#8211; 2
// Now  Define function

PHP Code:
  function ImageCreateFromBmp($filename)
{
$tmp_name = tempnam("/tmp", [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/how-to-convert-image-from-bmp-to-jpg-type-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image to PHP Standalone Output</title>
		<link>http://ar.expbuilder.com/image-to-php-standalone-output.html</link>
		<comments>http://ar.expbuilder.com/image-to-php-standalone-output.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 22:34:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Standalone]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=872</guid>
		<description><![CDATA[Image to PHP Standalone Output


By :   Tarcísio Xavier Gruppi
This package can be used to generate a class to serve a list of images.
It is based on the original Image to PHP class originally written by Ben Yacoub Hatem.
Download :
http://www.ziddu.com/download/7363931/imagetophpso-2009-08-05.zip.html
]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-to-php-standalone-output.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image to PHP</title>
		<link>http://ar.expbuilder.com/image-to-php.html</link>
		<comments>http://ar.expbuilder.com/image-to-php.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 22:33:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=870</guid>
		<description><![CDATA[Image to PHP

By : Ben Yacoub Hatem
This class is meant to read all images in a specified directory and then generates a PHP class with functions that serve the headers and the data of such image files.
It is very useful when you want to distribute a small PHP package with images embedded in the PHP [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-to-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Cache System</title>
		<link>http://ar.expbuilder.com/image-cache-system.html</link>
		<comments>http://ar.expbuilder.com/image-cache-system.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 17:28:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[System]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=647</guid>
		<description><![CDATA[Image Cache System

By : Daniel Kanaan
This package can be used to store and retrieve images in a MySQL database.
The images are cached in temporary disk files to avoid database access overhead.
It can store uploaded images keeping the original size or resized to a given width and height.
It can also create cache files in a given [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-cache-system.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image CAPTCHA</title>
		<link>http://ar.expbuilder.com/image-captcha.html</link>
		<comments>http://ar.expbuilder.com/image-captcha.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:56:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[CAPTCHA]]></category>
		<category><![CDATA[Image]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=499</guid>
		<description><![CDATA[Image CAPTCHA

By : mithereal
This class implements CAPTCHA validation using a fixed list of images.
It retrieves images from a server side directory and displays obfuscated versions to the user along with radio buttons to let the user pick the one that corresponds to the right answer.
The class may also generate automatic thumbnails for each of the [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-captcha.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create image for WAV file</title>
		<link>http://ar.expbuilder.com/create-image-for-wav-file.html</link>
		<comments>http://ar.expbuilder.com/create-image-for-wav-file.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:46:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[Create]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[WAV]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=457</guid>
		<description><![CDATA[Create image for WAV file

By : mfboy
This class can be used to draw a graph of the sound of a WAV file.
It opens a given sound sample file in the WAV format and extracts the variation of the volume of the sample over time.
The class renders an image that represents the sound sample wave form.
Download [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/create-image-for-wav-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Nudity Filter</title>
		<link>http://ar.expbuilder.com/image-nudity-filter.html</link>
		<comments>http://ar.expbuilder.com/image-nudity-filter.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:09:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Nudity]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=325</guid>
		<description><![CDATA[
Image Nudity Filter
By : Bakr Alsharif
This class can be used to determine whether an image may contain nudity.
It analyses the colors used in different sections of an image to determine whether those colors match the human skin color tones.
As result of the analysis it returns a score value that reflects the probability of the image [...]]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-nudity-filter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image File Browser</title>
		<link>http://ar.expbuilder.com/image-file-browser.html</link>
		<comments>http://ar.expbuilder.com/image-file-browser.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:20:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[إسكربتات البى إتش بى]]></category>
		<category><![CDATA[برمجيات الويب]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[Image]]></category>

		<guid isPermaLink="false">http://localhost/mine/expbuilder/tutorials/?p=159</guid>
		<description><![CDATA[By : Panos Kyriakakis
This class can be used to let the user browse and pick images stored in the server.
It uses an AJAX based user interface to avoid page reloading when the browsing display is updated.
Required external javascripts: prototype.js, scriptaculous library (scriptaculous.js,unittest.js,effects.js)
Download:
http://www.ziddu.com/download/7221937/ifb-2007-07-11.zip.html
]]></description>
		<wfw:commentRss>http://ar.expbuilder.com/image-file-browser.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
