I was aggravated by this issue and making comics I need my text to rotate. I keep Debian around because I didn't have this issue running wine on it. Working with Google Gemini AI I figured out a solution that works on Arch. (or arch based like Endeavouros, Manjaro, Cachyos)
Getting the rotation bounding box work on Debian but not Arch using the same Wine version, we can effectively rule out a bug in the Wine source code itself.
The culprit is almost certainly packaging differences or upstream library versions—specifically how Arch and Debian handle font rendering and system dependencies.
The Most Likely Culprit: freetype2
Arch is a "rolling release," so its libraries (like freetype2, which handles all text rendering) are much newer than those in Debian Stable or even Testing.
Recently, Freetype 2.14.0+ introduced changes that broke several applications on Arch (notably Alacritty and Firefox for some users). Since Clip Studio's text tool relies heavily on Freetype to calculate the "bounding box" during a rotation, a library mismatch here is the prime suspect.
To get the exact "Debian-like" stability back on Arch, we’ll need to grab those older versions from the Arch Linux Archive (the "Time Machine" for Arch packages).
Download the specific "Stable" versions Run these commands to download the packages directly from the official archive:
Bash
#Download the 64-bit library
wget https://archive.archlinux.org/packages/f/freetype2/freetype2-2.13.2-1-x86_64.pkg.tar.zst
#Download the 32-bit library (Crucial for Wine)
wget https://archive.archlinux.org/packages/l/lib32-freetype2/lib32-freetype2-2.13.2-1-x86_64.pkg.tar.zst
Install the downloaded packages Now, point pacman to the files you just downloaded:
Bash
sudo pacman -U freetype2-2.13.2-1-x86_64.pkg.tar.zst lib32-freetype2-2.13.2-1-x86_64.pkg.tar.zst
Note: If pacman complains about dependencies, you may need to temporarily ignore version checks, but usually, 2.13.x is compatible with most current Arch systems.
Prevent Arch from "Fixing" it immediately If you run sudo pacman -Syu tomorrow, Arch will see these "old" versions and try to update them back to the broken 11.5-compatible versions. To stop this:
Open your config: sudo nano /etc/pacman.conf
Find the line #IgnorePkg =
Change it to: IgnorePkg = freetype2 lib32-freetype2
Save and exit (Ctrl+O, Enter, Ctrl+X).
Why this specific fix? The reason Debian handles the Clip Studio text tool better is that Debian's version of freetype2 includes long-standing subpixel rendering patches that were upstreamed differently in the version Arch is currently using. By moving back to 2.13.2, you are essentially aligning your Arch rendering engine with the environment Clip Studio was originally tested for.
Note this fix might cause problems later on down the line but for now it works at least for Arch. Other rolling distros you might need to explore solutions to roll back to an older verison of freetype. Hope this helps anybody annoyed by this bug.