We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Is support for text orientation planned ?
Many thanks
The text was updated successfully, but these errors were encountered:
Hi,
I modified your lib as follows for my needs
After Line 84 : const A_WRAPTEXT = 64; Add Line : const A_ROTATION_90 = 128;
const A_WRAPTEXT = 64;
const A_ROTATION_90 = 128;
After Lines 486 to 487 : if ($xf[1] & self::A_WRAPTEXT) { $align .= ' wrapText="1"'; } Add Lines : if ($xf[1] & self::A_ROTATION_90) { $align .= ' textRotation="90"'; }
if ($xf[1] & self::A_WRAPTEXT) { $align .= ' wrapText="1"'; }
if ($xf[1] & self::A_ROTATION_90) { $align .= ' textRotation="90"'; }
After Lines 798 to 800 : if (strpos($v, '<wraptext>') !== false) { $A += self::A_WRAPTEXT; } Add Lines : if (strpos($v, '<rotation90>') !== false) { $A += self::A_ROTATION_90; }
if (strpos($v, '<wraptext>') !== false) { $A += self::A_WRAPTEXT; }
if (strpos($v, '<rotation90>') !== false) { $A += self::A_ROTATION_90; }
So I just have to add the rotation90 tag and it works.
Br,
Sorry, something went wrong.
No branches or pull requests
Hello,
Is support for text orientation planned ?
Many thanks
The text was updated successfully, but these errors were encountered: