|
|
|
สอบถาม การสร้างรูปภาพจากข้อความด้วย PHP ครับ (มีปัญหาการแสดงผลภาษาไทย) |
|
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
or
<meta http-equiv="Content-Type" content="text/html; charset=window-874" />
on the head
|
|
|
|
|
Date :
2012-03-30 11:22:53 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทดลองแล้ว ไม่มีอะไรแสดงที่หน้าเพจเลยครับ
Code (PHP)
<?php
<meta http-equiv="Content-Type" content="text/html; charset=window-874" />
$TEXT = "เรารักภาษาไทย";
$width = (strlen($TEXT)*30)+5;
Header("Content-type: image/jpeg");
$images = ImageCreate($width,32);
$color = ImageColorAllocate($images,255,255,255);
$photo = ImageColorAllocate($images,0,0,0);
ImageString($images, 2, 0, 0, $TEXT, $photo);
ImageJpeg($images);
ImageDestroy($images);
?>
|
|
|
|
|
Date :
2012-03-30 11:40:49 |
By :
JavaScrap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูครับ
Code (PHP)
<?php
$TEXT = "เรารักภาษาไทย";
$width = (strlen($TEXT)*30)+5;
Header("Content-type: text/html; charset=utf-8");
$images = ImageCreate($width,32);
$color = ImageColorAllocate($images,255,255,255);
$photo = ImageColorAllocate($images,0,0,0);
ImageString($images, 2, 0, 0, $TEXT, $photo);
ImageJpeg($images);
ImageDestroy($images);
?>
|
|
|
|
|
Date :
2012-03-30 12:09:48 |
By :
bshtraining |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะต้องใช้ Font ด้วยหรือเปล่าครับ และลองใช้ iconv() ด้วยครับ แต่ผมว่ากระทู้เก่า ๆ มีคนเขียนไว้น่ะครับ
|
|
|
|
|
Date :
2012-03-30 12:19:04 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำตามพี่ BshTraining ก็ยังไม่ได้อ่ะครับ
|
|
|
|
|
Date :
2012-03-31 09:35:54 |
By :
JavaScrap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ win ครับ ต้องใช้ iconv() อย่างไรครับ
|
|
|
|
|
Date :
2012-03-31 09:39:45 |
By :
JavaScrap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอา Header("Content-type: text/html; charset=windows-874"); ไว้บนสุดลองดูหน่อยคับ ๆ
ส่วน iconv() ใช้งี้คับ $ตัวแปร= iconv("UTF-8","windows-874",$ตัวแปร);
|
|
|
|
|
Date :
2012-03-31 12:30:36 |
By :
bubble9431 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทดลองแล้ว ยังไม่ได้ครับ ... กรุณาด้วยครับ
|
|
|
|
|
Date :
2012-04-02 08:55:57 |
By :
JavaScrap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมว่าเป็นที่ browser ของคุณหรือเปล่าครับ มันอาจจะผิดรูปแบบหรือเปล่า ลองเข้าไปปรับ character encoding เป็น Unicode[UTF-8]
|
|
|
|
|
Date :
2012-04-02 09:51:59 |
By :
Ball |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|