Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6551925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:23:51+00:00 2026-05-25T12:23:51+00:00

I want to draw a rectangle with two strings in it. I want the

  • 0

I want to draw a rectangle with two strings in it. I want the first string to be 15pt size (its a number), second to be 10pt size (the label). It’s easy to draw single string with one size to the rectangle, I do it like this:

$image = new Imagick('someimage.png');
$draw = new ImagickDraw;
$draw->setGravity(Imagick::GRAVITY_CENTER);
$draw->setfont(__DIR__ . DS . 'TREBUCBD.TTF');
$draw->setfontsize(15);
$draw->annotation(0, 0, '50 points');
$image->drawImage($draw);

The idea here is to have “50” in “50 points” to be big.

I tried to do a $draw->push() to push the current settings to the stack then set the font size and annotation again but then the two strings overlap. I’ve been trying to do this for hours. Any help is very appreciated!

The above implementation is in PHP but probably I will manage to do it even by example that shows it with command line ImageMagick usage.

edit: I’ve started a bounty that I will award for a solution implemented in PHP.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:23:51+00:00Added an answer on May 25, 2026 at 12:23 pm

    Add enough space before “points” and after the “50” so you align them nicely:

    <?php
    $image = new Imagick('test.png');
    $draw = new ImagickDraw;
    $draw->setGravity(Imagick::GRAVITY_CENTER);
    $draw->setfontsize(30);
    $draw->annotation(0, 0, '50         ');
    $image->drawImage($draw);
    
    $draw = new ImagickDraw;
    $draw->setGravity(Imagick::GRAVITY_CENTER);
    $draw->setfontsize(15);
    $draw->annotation(0, 0, '      points');
    $image->drawImage($draw);
    
    file_put_contents('test.png', $image->getImageBlob());
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to draw a rectangle using canvas which change its size with different
I want to draw an rectangle and can change the rectangle's position and size
canvas.drawRect(left, top, right, bottom, paint); Say I want to draw rectangle x=30 to x=35
I want to draw a rectangle on button click event horizontally aligned to the
I want to draw a rectangle on a form in C#. I read and
I want to use a color picker to pick two colors and then draw
I want to draw rectangle to position what I get from startPoint, but now
I want to draw a rectangle using OPENGL in Android... Just a simple rectangle
I want to draw five rectangle bars in Android. I have the regtangles, but
I want to draw a rectangle on one image how to do that?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.