Opacity: zIndex: Get 100000 0FP0EXP Token to input your own list (json format) or insert json link:

Get 80000 0FP0EXP Token to input your own list (json format) or insert json link:

My Playlist:

JSON Ready: Not Ready

Ready State:

Network State:

Name:

Album:

Reference:

Background Color

General HTML background color:

Header background color:

Menu background color:

Content background color:

Widget background color:

Footer background color:

Font Size

Get 150000 0FP0EXP Token to unlock this feature.

Heading 1 font size:

Heading 2 font size:

Heading 3 font size:

Heading 4 font size:

Heading 5 font size:

Heading 6 font size:

Header font size:

Header Widget font size:

Menu font size:

Widget font size:

Footer font size:

Content font size:

Font Color

Get 200000 0FP0EXP Token to unlock this feature.

Heading 1 font color:

Heading 2 font color:

Heading 3 font color:

Heading 4 font color:

Heading 5 font color:

Heading 6 font color:

Header font color:

Header Widget font color:

Menu font color:

Widget font color:

Footer font color:

Content font color:

Font Shadow

Get 250000 0FP0EXP Token to unlock this feature.

Heading 1 font shadow:

Heading 2 font shadow:

Heading 3 font shadow:

Heading 4 font shadow:

Heading 5 font shadow:

Heading 6 font shadow:

Header font shadow:

Header Widget font shadow:

Menu font shadow:

Widget font shadow:

Footer font shadow:

Content font shadow:

Other Styles Coming Soon



Source Code

Click the above image for basic sourced and click following button for processing token source code.

Ethereum Virtual Machine

Ethereum and EVM (ETC, BSC, AVAX-C-Chain, Polygon, etc).

Telegram Open Network

Telegram Open Network (TON) decentralized application.

Solana

Solana decentralized application.

Tron

Tron decentralized application.

Near

Near decentralized application.

Wax

Wax decentralized application.

Myalgo

Myalgo wallet for Algorand decentralized application.

Sync2

Sync2 wallet for Vechain decentralized application.

Scatter

Scatter wallet for EOS decentralized application.

Ontology

Ontology decentralized application.

Rabbet

Rabbet wallet for Stellar Lumen decentralized application.

Freighter

Freighter wallet for Stellar Lumen decentralized application.

Hivesigner

Hive Signer for Hive decentralized application.

Hivekeychain

Hive Key Chain for Hive decentralized application.

Zilpay

Zilpay wallet for Zilliqa decentralized application.

Neoline N2

Neoline wallet for Neo N2 decentralized application.

Neoline N3

Neoline wallet for Neo N3 decentralized application.

Keplr

Keplr wallet for Cosmos and other decentralized application.

Keeper

Keeper wallet for Waves decentralized application.

IWallet

IWallet for IOST decentralized application.

Compress Multiple Image using Windows Resizer and Image Magick Linux

Get 60 0FP0EXP Token to remove widget entirely!

source code



source code
old source code

get any 0FP0EXP Token to automatically turn off or 10 0FP0EXP Token to remove this JavaScript Mining.

Get 50000 0FP0EXP Token to remove my NFTS advertisements!

Get 40000 0FP0EXP Token to remove this donation notification!

get 30000 0FP0EXP Token to remove this paypal donation.

View My Stats

get 20000 0FP0EXP Token to remove my personal ADS.

word number: 653

Time: 2024-04-14 11:25:24 +0000

Utility

multiple image

A few days ago, I converted a handbook about maintaining Gumbrih Village’s blog that I made during community service program in my Bachelors in 2014 into a blog post or webpage. Other than to fill my blogs, it is to enrich my online curriculum vitae (CV) where I can link the uploaded handbook as a proof that I actually did it. Anyway, the handbook 56 images because the officers in Gumbrih Village are not as computer literate as millenials today where I have to screenshot the steps in very detail. Not only that 56 is a lot of image to upload to a blog post or web content, back then the screenshot and snipping application are not as developed today. Each images are 3MB (megabyte) large in bmp format which is over most image blog limit which is 1MB. Optimizing the images file size one by one is very tiring. Therefore, I need an application that can do them all at once. I found many online services when I search the term online image compressor on the search engine but most of them are premium services when handling large amount of images. So I relied on installed application on my operating system.

Windows Image Resizer Now Power Toys

windows image resizer demonstration

I will go to Windows first because most people are still in this operating system. One software I found convenient is Windows Image Resizer where all you need to do is select all the images within the folder, right click, and choose Resize pictures. Then you are given options which you can explore yourself and in the end just execute with resizing all images at once. The latest news from the developers blog is that Windows Image Resizer is now a part of Microsoft Power Toys.

Image Magick Linux

Image Magick Linux Demonstration

Almost all Linux operating system are pre-install with Image Magick and if it is not for your case, just go to their website and download. Most people in Linux uses the terminal or command line. The image size became much smaller than using Windows Image Resizer since I convert the bmp to jpg where the conversion already include minimal optimization. The image size was reduced from 3MB to around 150kB. The procedure to convert is as following:

Here is a code to convert 1 bmp image to jpg:

convert image.bmp image.jpg

You can convert multiple files using the following simple command but only if you do not care about the filenames as they will be made random:

convert *.bmp *.jpg

If you are will to replace the files, you can use mogrify command or you can just copy the images to a new folder and mogrify them.

mogrify -format jpg *.bmp

The conventional way to convert multiple files at once is first create an empty file and insert the following code:

for PHOTO in *.[format]
   do
       BASE=`basename $PHOTO`
	convert "$PHOTO" "[folder]/$BASE.[desired format]"
   done

In my case I made a filename my-convert in the same directory as the images:

for PHOTO in *.bmp
   do
       BASE=`basename $PHOTO`
	convert "$PHOTO" "Linux/$BASE.jpg"
   done

Proceed in executing the file and if it does not work, use administrator access or root or sudo:

chmod +x my-convert
./my-convert

If you want to do more advance modification, you can check the documenation:

convert --help
man convert

If the above commands does not work then search their website.

Mirrors

Please leave a comment if you know other methods.