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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:53:32+00:00 2026-05-22T12:53:32+00:00

I could not find much details on getTransformToElement method, and how to use it

  • 0

I could not find much details on getTransformToElement method, and how to use it correctly.

From the spec

“Returns the transformation matrix
from the user coordinate system on the
current element (after application of
the ‘transform’ attribute, if any) to
the user coordinate system on
parameter element (after application
of its ‘transform’ attribute, if
any).”

Terminology like, SVG canvas, viewbox, viewport, user cordinate, screen cordinate (http://www.w3.org/TR/SVG/coords.html) etc make it hard to understand what exactly this interface is used for.

thanks,

bsr

  • 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-22T12:53:33+00:00Added an answer on May 22, 2026 at 12:53 pm

    It returns a Transformation Matrix, I wouldn’t worry too much about that other terminology for now. If you have some SVG like this:

    <svg id="mysvg" viewBox="0 0 640 480">
        <g transform="skewX(45) skewY(33)">
            <text x="60" y="290" id="mytext">Example</text>
        </g>
    </svg>
    

    You can then use getTransformToElement like this:

    //Get the SVG root for context
    var s = document.getElementById('mysvg');
    //Get a reference to the element
    var t = document.getElementById('mytext');
    //Find the transformation that would need to be applied to s to put it in the same co-ordinate space as t
    var m = s.getTransformToElement(t);
    

    At the end of that code m will be an object representing a matrix (there’s a bunch of methods too, but I’m ignoring them):

    m = {a: 1, b: -0.6494075655937195, c: -1, d: 1.6494076251983643, e: 0, f: 0}
    

    You can then use that matrix to apply the same transform as on mytext relative to mysvg to any other element as per the matrix multiplication from the SVG spec:

    image of matrix multiplication

    As noted in the comment below this method is deprecated in favour of getCTM in the upcoming SVG 2 standard.

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

Sidebar

Related Questions

I could not find the function that returns the name of the cell referenced.
I could not find any pointers on how to create a menubar icon on
I could not find a clear answer to this question elsewhere, so I'll try
After having a search around I could not find exactly what I want, I
I have research about an issue and could not find a solution for it
I searched a lot but could not find a way to dump table relations
I have been searching everywhere but I could not find an answer. I need
I searched the Web and could not find anything that would show me a
I'm getting the build error 'error VCBLD0007: Could not find project configuration RELEASE|X64 to
I have been looking for an answer to this and could not find it

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.