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 8457571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:50:31+00:00 2026-06-10T12:50:31+00:00

I am looking for jquery or js library that can help you place text/shapes

  • 0

I am looking for jquery or js library that can help you place text/shapes over an image.
like in this site http://picfont.com/
it can let you put the text in any location over the image by drag and drop.

Thanks in advance

  • 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-06-10T12:50:32+00:00Added an answer on June 10, 2026 at 12:50 pm

    The answer depends on whether you want the resulting text to become embedded within the image (i.e. as pixels) such that you could save the whole image (text included) as a file, or whether you’re happy for the text to just float above the image.

    In the latter case, just use a <div> that can be absolutely positioned on top of an <img> element.

    In the former case the only option I know of is to use an HTML5 <canvas> element, and then use .fillText() to write text to the canvas:

    var canvas = document.getElementById('canvas'),
        ctx = canvas.getContext('2d'),
        img = new Image;
    
    img.onload = function() {
        canvas.width = this.width;
        canvas.height = this.height;
        ctx.drawImage(this, 0, 0);
        ctx.font = "36pt Verdana";
    
        ctx.fillStyle = "black";
        ctx.fillText("Test Text", 42, 82);
    
        ctx.fillStyle = "white";
        ctx.fillText("Test Text", 40, 80);
    };
    
    img.src = ...;
    

    See also http://jsfiddle.net/D8ZZS/2/ for a variant of the above where the image is loaded from a <input type="file"> control using the HTML5 FileReader interface.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Looking at this jQuery example, how can I modify the code so that it
Looking for a jQuery MultiSelect Widget that can handle thousands of items. Really like
I'm looking for a jQuery plugin / library that makes the contentEditable attribute work
I'm looking for a particular kind of slideshow plugin, that uses the jQuery library.
We're looking for the best jQuery-based user interface library we can find. It doesn't
I am looking for some sort of a free JavaScript/JQuery graphing library that has
I'm looking for a jQuery library or plugin that is a map of the
Is there a jQuery like JAVA/Android library that uses CSS Selectors to parse the
Im looking to add rich-text in-place editing to a project (so people can see
I've been looking around JQuery libraries for the URL hash, but found none 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.