Tag

image-processing

1 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Mar 25, 2025 · Backend Development

Python Script for Scraping and Converting Anime Images from Huashi6

This article explains how to use Python's requests, BeautifulSoup, and Pillow libraries to crawl high‑resolution anime pictures from the Huashi6 website, extract their webp URLs via regex, download them, and convert the images to the more common png format for personal use.

BeautifulSoupRequestsWeb Scraping
0 likes · 8 min read
Python Script for Scraping and Converting Anime Images from Huashi6
Test Development Learning Exchange
Test Development Learning Exchange
Aug 2, 2024 · Fundamentals

How to Add and Remove Image Watermarks Using Python (PIL & OpenCV)

This tutorial demonstrates several Python techniques—including PIL and OpenCV code—for adding text, transparent image, batch, rotated watermarks, and even removing watermarks from pictures, providing practical examples for image processing in the digital media era.

Tutorialimage-processingopencv
0 likes · 6 min read
How to Add and Remove Image Watermarks Using Python (PIL & OpenCV)
Python Programming Learning Circle
Python Programming Learning Circle
Jan 26, 2022 · Fundamentals

Generating Chinese "Fu" Characters with Python and PIL

This tutorial demonstrates how to use Python libraries such as requests and Pillow to scrape individual Chinese characters, resize them, compose them onto a background image, and output a customized "Fu" couplet image, complete with full source code and usage instructions.

Chinese charactersPILTutorial
0 likes · 8 min read
Generating Chinese "Fu" Characters with Python and PIL
Laravel Tech Community
Laravel Tech Community
Aug 31, 2021 · Backend Development

PHP imagelayereffect Function: Setting Alpha Blending for GD Layered Effects

The PHP GD library function imagelayereffect sets an alpha blending flag to enable layered effects such as overlay on an image resource, describing its parameters, return values, and providing a complete example that creates, modifies, outputs, and destroys an image.

GDOverlayalpha-blending
0 likes · 2 min read
PHP imagelayereffect Function: Setting Alpha Blending for GD Layered Effects
Laravel Tech Community
Laravel Tech Community
Aug 5, 2021 · Backend Development

PHP imagecolormatch Function: Matching Palette Colors to True‑Color Images

The PHP imagecolormatch function adjusts the colors of a palette‑based image to better align with a true‑color image by taking two image resources of identical dimensions, returning TRUE on success or FALSE on failure, and is demonstrated with a complete example script.

backendimage-processingimagecolormatch
0 likes · 2 min read
PHP imagecolormatch Function: Matching Palette Colors to True‑Color Images
Laravel Tech Community
Laravel Tech Community
Jul 20, 2021 · Backend Development

Using getimagesizefromstring to Retrieve Image Dimensions from a String in PHP

getimagesizefromstring is a PHP function that extracts an image’s width and height from raw image data supplied as a string, mirroring getimagesize but accepting string input; the article explains its parameters, return values, and provides example code comparing file‑based and string‑based usage.

ExamplePHPbackend
0 likes · 2 min read
Using getimagesizefromstring to Retrieve Image Dimensions from a String in PHP