Tagged articles
15 articles
Page 1 of 1
php Courses
php Courses
Feb 12, 2025 · Backend Development

Real-Time Photo Effects with PHP: Capturing Webcam Video and Applying Filters

This tutorial explains how to use PHP with OpenCV and the GD library to capture webcam video, save each frame as a JPEG, and apply various real‑time image filters such as grayscale, Gaussian blur, contrast adjustments, and edge detection, including keyboard‑controlled filter switching.

FiltersGDOpenCV
0 likes · 5 min read
Real-Time Photo Effects with PHP: Capturing Webcam Video and Applying Filters
php Courses
php Courses
Oct 24, 2024 · Backend Development

Using PHP to Capture Webcam Video and Apply Real‑Time Effects

This tutorial explains how to set up a PHP environment, use OpenCV and GD libraries to capture live webcam frames, apply various image‑processing effects such as grayscale, blur, contrast adjustments, and implement keyboard‑controlled effect switching, all with complete code examples.

GDImage ProcessingOpenCV
0 likes · 5 min read
Using PHP to Capture Webcam Video and Apply Real‑Time Effects
php Courses
php Courses
Oct 17, 2024 · Backend Development

Using PHP to Capture Webcam Video and Apply Real-Time Effects

This tutorial explains how to set up a PHP environment, use OpenCV and GD libraries to capture webcam video, apply various real‑time image effects such as grayscale, blur, contrast, and edge detection, and add keyboard controls for switching filters, enabling creative photo processing.

GDOpenCVWebcam
0 likes · 5 min read
Using PHP to Capture Webcam Video and Apply Real-Time Effects
php Courses
php Courses
Dec 21, 2023 · Backend Development

Accelerating Image Processing in PHP with GD, Caching, and Parallel Execution

This article explains how to speed up PHP image processing by using the GD library for resizing, implementing file‑based caching to avoid redundant work, and leveraging Swoole‑based parallel processing to handle multiple images concurrently, complete with practical code examples.

GDImage ProcessingPHP
0 likes · 6 min read
Accelerating Image Processing in PHP with GD, Caching, and Parallel Execution
Laravel Tech Community
Laravel Tech Community
Aug 23, 2021 · Backend Development

PHP imagefill() Function: Area Fill in Images

This article explains PHP's imagefill() function, detailing its purpose for region filling in images, describing each parameter (image resource, x and y coordinates, and color), the return values, and provides a complete example script demonstrating its usage.

BackendGDImage Processing
0 likes · 2 min read
PHP imagefill() Function: Area Fill in Images
Laravel Tech Community
Laravel Tech Community
Aug 20, 2021 · Backend Development

PHP imagecreatetruecolor Function: Creating True Color Images

The article explains PHP's imagecreatetruecolor function, detailing its purpose of creating a true‑color image resource, required parameters width and height, version compatibility notes, return values, and provides a complete example script that generates a PNG with custom text.

BackendGDImage Processing
0 likes · 2 min read
PHP imagecreatetruecolor Function: Creating True Color Images
Laravel Tech Community
Laravel Tech Community
Aug 9, 2021 · Backend Development

PHP imagecopy Function: Copying a Portion of an Image

This article explains the PHP imagecopy function, showing its signature, parameters, and how it copies a rectangular region from a source image to a destination image at specified coordinates, providing a concise reference for developers working with image manipulation in backend applications.

BackendGDPHP
0 likes · 1 min read
PHP imagecopy Function: Copying a Portion of an Image
Laravel Tech Community
Laravel Tech Community
Aug 4, 2021 · Backend Development

PHP imagecolorat: Retrieve Pixel Color Index Value

The article explains PHP's imagecolorat function, which returns the RGB integer of a pixel in a true‑color image using the GD library, and shows how to extract red, green, and blue components with bitwise operations through a complete code example.

BackendGDPHP
0 likes · 2 min read
PHP imagecolorat: Retrieve Pixel Color Index Value
Laravel Tech Community
Laravel Tech Community
Jul 27, 2021 · Backend Development

PHP imagearc() Function: Drawing an Elliptical Arc

The PHP imagearc() function draws an elliptical arc on a GD image resource using specified center coordinates, width, height, start and end angles, and color, returning the transformed image on success or FALSE on failure, with a full example demonstrating its usage.

BackendGDGraphics
0 likes · 2 min read
PHP imagearc() Function: Drawing an Elliptical Arc