Giter VIP home page Giter VIP logo

Comments (5)

jdecool avatar jdecool commented on September 25, 2024

Hi @vicjalan,

Actually it's not possible to set letter spacing, because of GD limitation.

I just try to make a workaround and add a $spacing parameter to ImageWorkshopLayer::write function.

I just push a "feature/font-spacing" branch.
If you want, feel free to give me a feedback.

from imageworkshop.

vicjalan avatar vicjalan commented on September 25, 2024

Hi jdecool,

Thanks for looking into this. I downloaded the updated code from the "feature/font-spacing" branch. I tried adding a value for the $spacing parameter but no matter the value I just get a black box around the text but no spacing is applied.

The line of code looks like(where 5 should be the value for $spacing):

$powerLayer = ImageWorkshop::initTextLayer('POWER', 'Resources\fonts\berlin-sans-fb-demi-bold.ttf', 23, 'ffffff', 0, 5);

spacing

Thanks again!

from imageworkshop.

vicjalan avatar vicjalan commented on September 25, 2024

Hi jdecool,

I understand what's happening now. The function initTextLayer doesn't have the $spacing parameter defined, the last parameter it has is $backgroundColor which is why the color was changing instead of adjusting the width.

I added the $spacing parameter to the initTextLayer function. However the dimensions of the text string is being looked up before the write function. So what this means is that the layer's width/height is being determined by the string length so when the letters are broken up and re-assembled with the spacing the text appears cut off.

I'm not sure if I'm explaining myself correctly but here is what I changed:

    public static function initTextLayer($text, $fontPath, $fontSize = 13, $fontColor = 'ffffff', $textRotation = 0, $backgroundColor = null, $spacing = 0)
    {
        $textDimensions = ImageWorkshopLib::getTextBoxDimension($fontSize, $textRotation, $fontPath, $text);

        $layer = static::initVirginLayer($textDimensions['width'], $textDimensions['height'], $backgroundColor);
        $layer->write($text, $fontPath, $fontSize, $fontColor, $textDimensions['left'], $textDimensions['top'], $textRotation, $spacing);

        return $layer;
    }

Also if I set any text rotation it looks like so
spacing_rotation

from imageworkshop.

jdecool avatar jdecool commented on September 25, 2024

Thanks for your feedback.

I just try to write a quick POC.

I'm going to continue this feature next week.

from imageworkshop.

mklahorst avatar mklahorst commented on September 25, 2024

Just checking in on this to see letter spacing is now part of latest build.

from imageworkshop.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.