This file is /tmp/phpBeoJQ5 . ################# You can copy this code to test ################# <? include("include/dbclass.inc"); //可以用 MYSQL.INC 类代替测试 $q = new DB_Sql; $db = $q-Database; //define the database mysql_connect('localhost:3306',$q-User,$q-Password); ...[ 查看全文 ]
将image组件的图片保存为JPG格式图片方法procedure SaveAsJPG ;var jp: TJPEGImage; //Requires the "jpeg" unit added to "uses" clause.begin jp := TJPEGImage.Create; try with jp do begin jp.CompressionQuality := 2; jp.Compress ; &...[ 查看全文 ]