


Reading Chinese character dot matrix data using PHP programming_PHP tutorial
Background knowledge:
Simplified Chinese national standard font (issued in 1981, Mainland China). There are 7445 characters, including 6773 Chinese characters, including 3755 first-level Chinese characters and 3008 second-level Chinese characters. Using 2-byte (16-bit binary) encoding.
Location code: National standard GB2312 stipulates that all national standard Chinese characters and symbols form a 94×94 matrix. In this square matrix, each row is called a "area" and each column is called a "bit". Therefore, this square matrix actually forms a 94-area area (area numbers are 0 1 to 94 respectively), each There are 94 digits (digit numbers are 01 to 94) of Chinese character sets in the area. The area code and location number of a Chinese character are simply combined to form the "location code" of the Chinese character. In the area code of Chinese characters, the upper two digits are the area code and the lower two digits are the position number. It can be seen that there is a one-to-one correspondence between location codes and Chinese characters or symbols.
Internal code: The internal code of Chinese characters refers to the encoding of Chinese characters in computers. The in-machine code is slightly different from the location code. Why not directly use the area code as the internal code in the computer? This is because the area code and bit code of Chinese characters range from 1 to 94. If the area code is directly used as the internal code, it will conflict with the basic ASCII code. The internal code of Chinese characters is usually related to the computer system used. Currently, for most computer systems in China, the internal code of a Chinese character occupies two bytes, which are called high-order byte and low-order byte respectively, and the relationship between these two bytes and the area code is as follows: Internal code high-order = area Code + A0H (H represents hexadecimal) The low digit of the inner code = bit code + A0H. For example, the area code of the Chinese character "ah" is "1601", and the area code and bit code are expressed in hexadecimal respectively, which is "1001H" , then its internal code is "B0A1H". Among them, B0H is the high-order byte of the internal code, and A1H is the low-order byte of the internal code.
php(as the current mainstream development language)Code: Returns a string composed of 0 and 1.
<?php(as the current mainstream development language)
/**
* Read Chinese character dot matrix data
*
* @author legend <legendsky@hotmail.com>
* @link http://www.ugia.cn/?p=82
* @Copyright www.ugia.cn
*/
$str = "People's Republic of China";
$font_file_name = "simsun12.fon" ; // Bitmap font file name
$font_width = 12 ; // Single character width
$font_height = 12 ; // Single character height
$ start_offset = 0 ; // Offset
$fp = fopen ( $font_file_name , "rb" );
$offset_size = $font_width * $font_height / 8 ;
$string_size = $font_width * $font_height ;
$dot_string = "" ;
for ( $i = 0 ; $i < strlen ( $str ); $i ++)
{
if ( ord ( $str { $i }) > 160 )
{
// First find the location code, and then calculate its position in the two-dimensional table of location codes, and then get the position of this character in the file Offset
$offset = (( ord ( $str { $i }) - 0xa1 ) * 94 + ord ( $str { $i + 1 }) - 0xa1 ) * $offset_size ;
$i ++ ;
}
else
{
$offset = ( ord ( $str { $i }) + 156 - 1 ) * $offset_size ;
}
// Read its lattice data
fseek ( $fp , $start_offset + $offset , SEEK_SET );

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.
