Git Product home page Git Product logo

Comments (11)

LasseRafn avatar LasseRafn commented on May 31, 2024 2

Thank you!

Sure thing, I will attempt to make centering better! πŸ‘

from ui-avatars.

LasseRafn avatar LasseRafn commented on May 31, 2024 1

Sorry for the crazy slow response, been super busy. Anyway, I think this makes sense πŸ‘ Will try to experiment and compare the two, maybe add an option to use one, but default to the most correct one

from ui-avatars.

HsRealDev avatar HsRealDev commented on May 31, 2024

Hi Lasse,

I did some more debugging. And as one friend of mine once said: "The sitation is strange." :D

Changing the driver of ImageManager to Imagick in InitialAvatar class ...

InitialAvatar.php, line 34:
$this->image = new ImageManager(['driver' => 'imagick']);

... makes text to get then properly aligned in horizontal but the vertical alignment then goes wrong :)

Bugger.

Maybe there be a bug somewhere in Intervention -> Image lib.
Or with the font.

from ui-avatars.

HsRealDev avatar HsRealDev commented on May 31, 2024

And I debugged even a bit more using directly ImageMagick. I did this simple command line script:

<?php
declare(strict_types=1);

$fontFileName = 
    "/tmp/fonts/OpenSans-Regular.ttf";

$fillColor       = new \ImagickPixel('#000');
$strokeColor     = new \ImagickPixel('#000');
$backgroundColor = new \ImagickPixel('#f7f924');

$initials = 'PM';

$avatarSize = 256;
$fontSize   = 0.5 * $avatarSize;

$draw = new \ImagickDraw();
$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeWidth(2);
$draw->setFontSize($fontSize);

$draw->setFont(
    $fontFileName
);

$draw->setGravity(\Imagick::GRAVITY_CENTER);
$draw->annotation(0, 0, $initials);

$imagick = new \Imagick();
$imagick->newImage($avatarSize, $avatarSize, $backgroundColor);
$imagick->drawImage($draw);
$imagick->writeImage("/tmp/test.png");

That one also has some problems to place the text correctly "exactly" aligned. But, IMHO, has better general output on different fonts and sizes.

What do you think Lasse? If you feel like this won't fix on UI-avatars, i understand :) In that case, just close this issue.

from ui-avatars.

TomW1605 avatar TomW1605 commented on May 31, 2024

Hi this is a really useful service however this off centre issue is starting to bug me too. Is there any update on fixing this?

from ui-avatars.

LasseRafn avatar LasseRafn commented on May 31, 2024

from ui-avatars.

aliaanis avatar aliaanis commented on May 31, 2024

Any solution yet ?

from ui-avatars.

LasseRafn avatar LasseRafn commented on May 31, 2024

@aliaanis I've been unable to find a solution πŸ‘Ž I will try @HsRealDev's solution as I think he is definitively onto something (good work, thanks!)

from ui-avatars.

curtiscook avatar curtiscook commented on May 31, 2024

fwiw: it looks like svg might be rendering correctly and failing during png conversion?
svg (https://ui-avatars.com/api/?name=B&size=250&format=svg)
image

png (https://ui-avatars.com/api/?name=B&size=250&format=png)
image

from ui-avatars.

redac avatar redac commented on May 31, 2024

Any updates on this @LasseRafn ? πŸ™πŸΌ

from ui-avatars.

redac avatar redac commented on May 31, 2024

@LasseRafn did the solution you tried lead anywhere?

from ui-avatars.

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.