A downloadable Plugin

Download NowName your own price

๐Ÿ”ฅ Reduce your RPG Maker MV project size by up to 90%

From 1.3GB โ†’ 150MB

Built for Android, browser builds, and image-heavy games.


๐Ÿ’ก What is this?

WR Image Optimizer is a free plugin that enables WebP image loading in RPG Maker MV, allowing your game to load optimized images instead of large PNG files.

  • โœ… Loads .webp instead of .png
  • โœ… Dramatically reduces file size
  • โœ… Improves performance on mobile and web
  • โœ… Safe PNG fallback (no risk)

๐Ÿš€ Real Results

Tested on a real project:

  • ๐Ÿ“ฆ Before: 1.3 GB (PNG)
  • โšก After: 150 MB (WebP)

๐Ÿ‘‰ ~90% smaller
๐Ÿ‘‰ No noticeable quality loss in-game


๐Ÿ“ฑ Why use this?

This plugin solves common RPG Maker MV problems:

  • โšก Slow loading times
  • ๐Ÿ“‰ Large download sizes (especially for web builds)
  • ๐Ÿ’พ High memory usage on Android
  • ๐Ÿ”ฅ Crashes on mobile devices

๐Ÿง  How it works

img/pictures/MyImage.webp โ†’ loaded first
img/pictures/MyImage.png  โ†’ fallback
  • โœ” No need to rewrite events
  • โœ” Fully backwards compatible

โš ๏ธ Editor Limitation

RPG Maker MV does not support WebP in the editor.

  • You must keep PNG files during development
  • The editor only displays PNG images
  • WebP is used only at runtime via the plugin

๐Ÿ› ๏ธ Deployment Workflow

During development:

  • โœ” Keep both .png and .webp

After deployment:

  • โœ” Manually remove or replace PNG files in your final build

๐Ÿ‘‰ Required for maximum size reduction


โš™๏ธ Converting PNG โ†’ WebP (FFmpeg)

Recommended (high quality):

ffmpeg -i input.png -q:v 90 -pix_fmt yuva420p output.webp
  • โœ” Preserves transparency
  • โœ” Very high quality
  • โœ” Ideal for CG and scenes

๐Ÿ“‚ Convert a folder (Windows)

for %i in (*.png) do ffmpeg -i "%i" -q:v 90 -pix_fmt yuva420p "%~ni.webp"

๐Ÿ“ Convert all subfolders

for /r %i in (*.png) do ffmpeg -i "%i" -q:v 90 -pix_fmt yuva420p "%~dpni.webp"

๐ŸŽฏ Recommended Usage

Use WebP for:

  • CG / scenes
  • Backgrounds
  • Visual novel content

Keep PNG for:

  • Tilesets
  • Characters
  • UI / system graphics

๐Ÿงฑ Scope

This plugin only affects:

  • img/pictures/

It does NOT modify:

  • characters
  • tilesets
  • UI
  • system images

โš”๏ธ Why this matters

RPG Maker MV projects often become very large due to PNG images, especially in visual novels or image-heavy games.

This plugin directly solves:

  • Large project sizes (1GB+ games)
  • Slow browser loading
  • Poor Android performance
  • High memory usage

โค๏ธ Free Plugin

This plugin is completely free.

  • โญ Rate it
  • ๐Ÿ’ฌ Share your results
  • ๐Ÿ”— Spread the word

โš ๏ธ Encryption Note

This plugin is designed for standard picture loading and WebP workflows. If you use RPG Maker MV's default image encryption, WebP loading will not work as intended.

For best results, use this plugin with non-encrypted files in img/pictures/.


๐Ÿ’ฌ Developer Note

Some parts of this page were written with the help of AI to keep the information clear and structured.

The plugin itself is something I actively use in my own projects to optimize Android performance and reduce web build size.

I decided to release it for free because the results were honestly too good not to share.

Download

Download NowName your own price

Click download now to get access to the following files:

WR_Image_Optimizer_MV.js 2.6 kB

Leave a comment

Log in with itch.io to leave a comment.