Skip to content

Instantly share code, notes, and snippets.

View umbalaconmeogia's full-sized avatar
💭
Sometimes coding something.

Tran Trung Thanh umbalaconmeogia

💭
Sometimes coding something.
  • Japan
View GitHub Profile
@umbalaconmeogia
umbalaconmeogia / furiganaTxt2Html.php
Created May 2, 2022 03:34
Convert a file with furigana in parentheses (mainly exported from MS Word to text) to HTML file.
<?php
/**
* Convert a text file that has furigana in parentheses into HTML <ruby> tag.
*
* Syntax
* ```shell
* php furiganaTxt2Html.php <input.txt> <output.html>
* ```
*
* Example:
@umbalaconmeogia
umbalaconmeogia / compressIMagick.php
Created April 27, 2022 11:21
Compress image file to specified filesize using PHP ImageMagick
<?php
/**
* Sample to compress image file in PHP.
*
* This will compress all files in *input* directory and store the result in *output* directory.
*
* To run this code, PHP extension *imagemagick* should be enabled.
*
* Syntax
@umbalaconmeogia
umbalaconmeogia / compressImage.php
Created April 27, 2022 11:19
Compress image file using PHP imagejpeg() function
<?php
/**
* Sample to compress image file in PHP.
*
* This will compress all files in *input* directory and store the result in *output* directory.
*
* To run this code, PHP extension *gd* should be enabled.
*
* Syntax