Found a total of 10000 related content
Generate thumbnails PHP code to batch generate thumbnails
Article Introduction:Generate thumbnails: Generate thumbnails PHP code for batch generating thumbnails: Disadvantages: Pictures of different lengths and widths will be stretched and deformed, and cannot be intelligently cropped. If you need intelligent cropping, please do your own research. <?php $config = array(); $config['path'] = "./"; $config['t_width'] = 120; $config['t_height'] = 98; $config['ignore'] = array("",".",".."); $config['pre
2016-07-29
comment 0
952
php生成缩略图的类代码
Article Introduction:php生成缩略图的类代码。?php /** * 功能:生成缩略图 * 作者:phpox * 日期:Thu May 17 09:57:05 CST 2007 */ class CreatMiniature { //公共变量 var $srcFile=""; //原图 var $echoType; //输出图片
2016-06-13
comment 0
849
PHP class code for generating thumbnails_PHP tutorial
Article Introduction:PHP class code for generating thumbnails. ?php /** * Function: Generate thumbnails* Author: phpox * Date: Thu May 17 09:57:05 CST 2007 */ class CreatMiniature { //Public variable var $srcFile=""; //Original image var $ echoType; //Output picture
2016-07-21
comment 0
805
Code sharing for php to generate thumbnails by percentage_PHP tutorial
Article Introduction:Code sharing for php to generate thumbnails by percentage. So I looked through the manual, understood a few functions, and wrote a simple PHP program to generate thumbnails. There is no need to use classes. I think a function can do it, and it is more convenient for novices.
2016-07-13
comment 0
1065
PHP批量生成缩略图的代码
Article Introduction:PHP批量生成缩略图的代码。缺点:长宽不一的图片会被拉伸变形,不能智能裁切,需要智能裁切的,请自行研究。 ?php $config=array(); $config['path']="./"; $config['t_width']=120
2016-06-13
comment 0
963
PHP code to generate thumbnails in batches_PHP tutorial
Article Introduction:PHP code to generate thumbnails in batches. Disadvantages: Pictures with different lengths and widths will be stretched and deformed, and cannot be intelligently cropped. If you need intelligent cropping, please do your own research. ?php $config=array(); $config['path']="./"; $config['t_width']=120
2016-07-21
comment 0
993
Code sharing for generating picture thumbnails with PHP based on GD2 graphics library_PHP tutorial
Article Introduction:Sharing code for generating picture thumbnails in PHP based on GD2 graphics library. Code sharing for generating image thumbnails using PHP based on the GD2 graphics library. This article mainly introduces code sharing for generating image thumbnails using PHP based on the GD2 graphics library. This article directly gives the implementation code and
2016-07-13
comment 0
979
PHP file upload class example that can generate thumbnails, _PHP tutorial
Article Introduction:PHP can generate thumbnail file upload class examples. An example of a file upload class that can generate thumbnails in PHP. This article describes an example of a file upload class that can generate thumbnails in PHP and its usage. Share it with everyone for your reference. The specific implementation method is as follows:
2016-07-13
comment 0
946
Tutorial on using imagick to generate PSD file thumbnails in PHP, _PHP tutorial
Article Introduction:Tutorial on using imagick to generate PSD file thumbnails in PHP. Tutorial on using imagick to generate PSD file thumbnails in PHP. The first step is to install ImageMagick. First you need to install ImageMagick http://imagemagick.org/script/binary-releases.php#windows because
2016-07-13
comment 0
998
How to use timthumb to generate thumbnails in php, timthumb thumbnails_PHP tutorial
Article Introduction:PHP uses timthumb to generate thumbnails, timthumb thumbnails. How to use timthumb to generate thumbnails in PHP, timthumb thumbnails This article describes how to use timthumb to generate thumbnails in PHP. Share it with everyone for your reference, the details are as follows: Generate
2016-07-12
comment 0
836
Summary of how to generate QR code with logo in php, summary of phplogo_PHP tutorial
Article Introduction:Summary of the method of generating QR code with logo in php, summary of phplogo. Summary of the method of generating QR code with logo in php, summary of phplogo 1. Class libraries used 1. phpqrcode (php library) 2. qrcode.js (javascript library) 2. Use of phpqrcode Only use php class library, also
2016-07-12
comment 0
898
PHP that supports png transparent images to generate thumbnail class sharing, _PHP tutorial
Article Introduction:Supports php to generate thumbnail images for png transparent images for sharing. Share the PHP thumbnail generation class that supports png transparent images. Note: This function relies on the GD2 graphics library. I recently wanted to use PHP to generate thumbnails. I searched online and found this article: PHP Generates Pictures.
2016-07-13
comment 0
921
Sharing techniques for generating video screenshots and thumbnails based on PHP
Article Introduction:Tips for generating video screenshots and thumbnails based on PHP. With the rapid development of the Internet, more and more websites and applications need to display video content. When displaying videos on a page, thumbnails are usually generated to provide a preview, and video screenshots may also be required to capture specific scenes. This article will introduce techniques for generating video screenshots and thumbnails based on PHP, and attach corresponding code examples. Install FFmpeg First, we need to install FFmpeg, which is a powerful multimedia processing tool that can be used for video screenshots
2023-08-09
comment 0
1628