search
HomeWeb Front-endH5 TutorialIntroduction to SVG 2D in HTML5 6—Overview of window coordinate system, user coordinate system and transformation_html5 tutorial skills

Coordinate system
SVG has two coordinate systems: the window coordinate system and the user coordinate system. By default, the points in the user coordinate system and the view window coordinate system are in one-to-one correspondence, with the origin at the upper left corner of the view window, the x-axis horizontally to the right, and the y-axis vertically downward; as shown in the figure below:

The window position of SVG is generally specified by CSS, and the size is set by the width and height attributes of the SVG element. However, if the SVG is stored in an embedded object (such as an object element, or other SVG element), and the document containing the SVG is Formatted with CSS or XSL, and the CSS or other specified size values ​​of these surrounding objects can already calculate the size of the viewport, the size of the surrounding object will be used at this time.

Here we need to distinguish between the concepts of window, window coordinate system and user coordinate system:

Window: refers to the visible rectangular area on the web page. The length and width are limited. This area is generally related to the size of the surrounding objects.

View window coordinate system: It is essentially a coordinate system with an origin, x-axis and y-axis; and it extends infinitely in two directions. By default, the origin is at the upper left corner of the viewport, the x-axis is horizontally to the right, and the y-axis is vertically downward. Points in this coordinate system can be transformed.

User coordinate system : It is essentially a coordinate system with an origin, x-axis and y-axis; and it extends infinitely in two directions. By default, the origin is at the upper left corner of the viewport, the x-axis is horizontally to the right, and the y-axis is vertically downward. Points in this coordinate system can be transformed.

By default, the window coordinate system coincides with the user coordinate system, but it should be noted here that the window coordinate system belongs to the element that creates the window. After the window coordinate system is determined, the coordinate tone of the entire window is determined. However, the user coordinate system belongs to each graphic element. As long as the graphics undergoes coordinate transformation, a new user coordinate system will be created. All coordinates and dimensions in this element use this new user coordinate system.

To put it simply: the window coordinate system describes the initial coordinate profile of all elements in the window, and the user coordinate system describes the coordinate profile of each element. By default, all elements use the default coordinate system that coincides with the window coordinate system. User coordinate system.

Coordinate space transformation
Let us review the transformation of canvas user coordinates. They are implemented through translation, scaling, and rotation functions; after each transformation, subsequent drawings The graphics work unless transformed again, which is the concept of the "current" user coordinate system. Canvas has only one user coordinate system.
In SVG, the situation is completely different. SVG itself is a vector graphic element, and its two coordinate systems can essentially be counted as "user coordinate systems"; both coordinate spaces of SVG can be transformed: window space transformation and user space transformation. Window space transformation is controlled by the viewBox attribute of the relevant elements (these elements create new windows); user space transformation is controlled by the transform attribute of the graphic element. View-space transformations are applied to the corresponding entire viewport, and user-space transformations are applied to the current element and its sub-elements.

View window transformation - viewBox property

All elements that can create a window (see the next section), plus marker, pattern, and view elements, have a viewBox attribute.

The format of the viewBox attribute value is (x0, y0, u_width, u_height). Each value is separated by commas or spaces. Together they determine the area displayed by the window: the coordinates of the upper left corner of the window are set to (x0, y0 ), the width of the window is set to u_width, and the height is u_height; this transformation affects the entire window.

Don’t be confused here: the size and position of the window have been determined by the element that creates the window and the surrounding elements (for example, the window created by the outermost svg element is determined by CSS, width and height), here The viewBox actually sets which part of the view window coordinate system can be displayed in this determined area.
The setting of viewBox actually includes two transformations: scaling and translation of the view window space.

The calculation of the transformation is also very simple: take the view window of the outermost svg element as an example, assuming that the width and length of the svg are set to width, height, and the viewBox is set to (x0, y0, u_width, u_height). Then the scaling ratios of the width and height of the drawn graphics are: width/u_width, height/u_height respectively. The coordinates of the upper left corner of the window are set to (x0,y0).

Experience the difference in the results drawn by the following codes:

Copy the code
The code is as follows:






You can see green and red rectangles in the picture drawn in the above example. In this case, the points in the window coordinate system still correspond to the points on the window one-to-one. This is also the default situation.

Copy code
The code is as follows:






Above In the picture drawn by the example, you can only see the green rectangle, and the green rectangle displayed on the screen is 200*200 pixels. At this time, the coordinate points are no longer one-to-one correspondence, and the picture is enlarged.

Copy code
The code is as follows:






In the picture drawn in the above example, the unit of the window coordinate system is reduced, so both rectangles are reduced.

In daily work, one of the tasks we often need to complete is to scale a group of graphics so that it fits its parent container. We can achieve this goal by setting the viewBox attribute.

Elements that create new windows
We can nest windows at any time. When a new window is created, a new window coordinate system and user coordinate system will also be created. Of course, new clipping paths will also be created. The following is a list of elements that can create new windows:
svg: svg supports nesting.
symbol: Creates a new window when instantiated by the use element.

image: A new window will be created when referencing the svg element.
foreignObject: Create a new window to render the objects inside.

Preserve the zoom ratio - preserveAspectRatio attribute
Sometimes, especially when using viewBox, we expect the graphics to occupy the entire view window, rather than pressing in both directions Same scaling. Sometimes, we want the graphics to be scaled at a fixed ratio in both directions. You can control this using the attribute preserveAspectRatio.
This attribute is available to all elements that can create a new window, plus image, marker, pattern, and view elements. And the preserveAspectRatio attribute will only take effect after the viewBox is set on the element. If the viewBox is not set, the preserveAspectRatio attribute is ignored.
The syntax of the attribute is as follows: preserveAspectRatio="[defer] []"
Note that the three parameters need to be separated by spaces.
defer: Optional parameter, only valid for image elements. If the value of the preserveAspectRatio attribute in the image element starts with "defer", it means that the image element uses the scaling ratio of the referenced image, if it is referenced If the image has no scaling, "defer" is ignored. All other elements ignore this string.
align: This parameter determines the alignment of unified scaling, and can take the following values:
none - does not force unified scaling, so that the graphics can completely fill the entire viewport.
xMinYMin - Forces uniform scaling and aligns the and set in the viewBox to the minimum X and Y values ​​of the viewport.
xMidYMin - Forces uniform scaling, and aligns the midpoint in the X direction of the vivowBox to the midpoint of the X direction in the viewport. In short, the midpoint in the X direction is aligned, and the Y direction is the same as above.
xMaxYMin - Forces uniform scaling and aligns the set in the viewBox to the maximum X value of the viewport.
Similar to other types of values: xMinYMid, xMidYMid, xMaxYMid, xMinYMax, xMidYMax, xMaxYMax. The meanings of these combinations are similar to those above.
meetOrSlice: optional parameter, you can set the following values:
meet - the default value, scale the graphics uniformly, so that all graphics are displayed in the viewport.
slice - Scale the graphics uniformly so that the graphics fills the viewport, and the excess parts are clipped.

The following picture illustrates the effects of various fillings:



Transformation of user coordinate system - transform attribute
This type of transformation is specified by setting the transform attribute of the element. It should be noted here that the transformation of the element set by the transform attribute only affects the element and its sub-elements, and has nothing to do with other elements and does not affect other elements.

Translation - translate
Translation transformation translates the relevant coordinate value to the specified position. This transformation requires passing in the amount of translation on both axes. Look at the example:

Copy the code
The code is as follows:



This example draws a rectangle and places its starting point (0,0) translates to (30,40). Although the coordinate values ​​of (x, y) can be set directly, it is also very convenient to use translation transformation. The second parameter of this transformation can be omitted and is treated as 0 by default.

Rotation - rotate
Rotating an element is also a very common task. We can use the rotate transformation to implement it, which requires passing in the angle parameter of the rotation. Look at the example:

Copy the code
The code is as follows:



This example will display a rectangle rotated 45 degrees. There are a few points to note:
1. The transformation here takes the angle value as a parameter.
2. Rotation refers to the rotation relative to the x-axis.
3. The rotation is carried out around the origin (0,0) of the user coordinate system.

skew - skew
transform also supports tilt transformation, which can be along the x-axis (tilt left and right, a positive angle is tilted to the right, which actually tilts y axis), or tilt along the y-axis (tilt up and down, a positive angle means downward tilt, which actually tilts the x-axis); this transformation requires passing in an angle parameter, which determines the angle of tilt. Look at the example below:

Copy the code
The code is as follows:










From the result, you can directly see the same size rectangle under different skew transformations Finally, the position and shape are obtained. Note here that the starting position of the rectangle has changed. This is because (30,30) is already at a different position in the new coordinate system.

Scale - scale
The scaling object is completed by the scaling transformation, which accepts 2 parameters, specifying the horizontal and vertical scaling ratios respectively. If the second If two parameters are omitted, it takes the same value as the first parameter. Look at the example below:

Copy the code
The code is as follows:


ABC (scale)
ABC (scale)


Transformation matrix - matrix
Anyone who has studied graphics knows that all transformations are actually represented by matrices, so the above transformations can actually be used A 3*3 matrix to represent:

Copy the code
The code is as follows:

a c e
b d f
0 0 1

Since only 6 values ​​are used, it is also abbreviated as [a b c d e f]. Assigning matrix(a,b,c,d,e,f) to transfrom can implement the corresponding transformation. Transformation converts both coordinates and lengths to new dimensions. The matrices corresponding to the above various transformations are as follows:

Translation transformation [1 0 1 0 tx ty]:

Copy code
The code is as follows:

1 0 tx
0 1 ty
0 0 1

Scale transformation [sx 0 0 sy 0 0]:

Copy code
The code is as follows:

sx 0 0
0 sy 0
0 0 1

Rotation transformation [cos(a) sin(a) -sin(a) cos(a) 0 0]:

Copy code
The code is as follows:

cos(a) -sin(a) 0
sin(a) cos(a) 0
00 1

Tilt along the 🎜>The code is as follows:

1 tan(a) 0
0 1 00 0 1Tilt along the Y axis [1 tan( a) 0 1 0 0]:



Copy code

The code is as follows:

11 0
tan(a) 1 000 1
The essence of transformation
When we summarized canvas earlier, we knew that various transformations act on the user coordinate system. In SVG, all transformations are also for two coordinate systems (essentially "user coordinate systems"). When the "transform" attribute is assigned to a container object or graphic object, or the "viewBox" attribute is assigned to "svg, symbol, marker, pattern, view", SVG will transform according to the current user coordinate system to create new user coordinates. system, and acts on the current object and its sub-objects. The coordinates and length units specified in the object no longer correspond to the peripheral coordinate system in a 1:1 ratio, but are converted to a new user coordinate system with the deformation; this new user coordinate system only acts on the current element and its sub-elements.

Transform chain
The transform attribute supports setting multiple transformations. These transformations only need to be separated by spaces and then placed together in the attribute. The execution effect is the same as executing these transformations independently in sequence.

Copy code
The code is as follows:





The above effect is the same as the following:

Copy the code
The code is as follows:











Unit
Finally, let’s talk about the unit. Any coordinates and lengths can be brought and without units.
Without unit

Values ​​without units are considered to have "user units", which are the unit values ​​of the current user coordinate system.
With units

The relevant units in svg are the same as in CSS: em, ex, px, pt, pc, cm, mm and in. You can also use "%" for length.
Relative measurement units: em and ex are the same as in CSS, they are relative to the font-size and x-height of the current font.
Absolute measurement unit: One px is equal to one "user unit", that is, "5px" and "5" are the same. But whether a px corresponds to a pixel depends on whether some transformation has been performed.
The other units are basically multiples of px: 1pt=1.25px, 1pc=15px, 1mm=3.543307px, 1cm=35.43307px, 1in=90px.

If the width and height of the outermost SVG element do not specify a unit (that is, "user unit"), these values ​​will be considered to be in px.

This article is a bit confusing. In fact, just remember that "the coordinates and length of graphic elements refer to the coordinates and length of the new user coordinate system after double transformation of the window coordinate system transformation and the user coordinate system transformation." That’s it.

Practical reference:
Script index: http://msdn.microsoft.com/zh-cn/library/ff971910(v=vs.85).aspx
Development Center: https://developer.mozilla.org/en/SVG
Popular Reference: http://www.chinasvg.com/
Official documentation: http://www.w3.org/TR/SVG11/

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
聊聊如何利用 SVG 实现图片马赛克效果聊聊如何利用 SVG 实现图片马赛克效果Sep 01, 2022 am 11:05 AM

不借助 Javascript,如何利用 SVG 实现图片马赛克效果?下面本篇文章就来带大家详细了解一下,希望对大家有所帮助!

svg怎么转jpg格式svg怎么转jpg格式Nov 24, 2023 am 09:50 AM

svg可以通过使用图像处理软件、使用在线转换工具和使用Python图像处理库的方法来转jpg格式。详细介绍:1、图像处理软件包括Adobe Illustrator、Inkscape和GIMP;2、在线转换工具包括CloudConvert、Zamzar、Online Convert等;3、Python图像处理库等等。

深入浅析vue3+vite中怎么使用svg图标深入浅析vue3+vite中怎么使用svg图标Apr 28, 2022 am 10:48 AM

svg图片在项目中使用的非常广泛,下面本篇文章带大家介绍一下如何在vue3 + vite 中使用svg图标,希望对大家有所帮助!

VUE3入门教程:使用Vue.js插件玩转SVGVUE3入门教程:使用Vue.js插件玩转SVGJun 16, 2023 am 09:48 AM

随着现代Web前端开发的不断发展,越来越多的技术被广泛应用于实际开发中。其中,Vue.js是目前最为流行的JavaScript框架之一,它基于MVVM模式,提供了丰富的API和组件库,使得开发响应式、可复用、高效的Web应用变得更加容易。而目前最新的Vue.js3版本相较于旧版,又有着更好的性能和更丰富的特性,引起了广泛的关注和研究。本文将会为大家介绍一种

北大出品:纹理质量和多视角一致性的最新SOTA,在2分钟内实现1张图的3D转换北大出品:纹理质量和多视角一致性的最新SOTA,在2分钟内实现1张图的3D转换Jan 10, 2024 pm 11:09 PM

只需两分钟,玩转图片转3D!还是高纹理质量、多视角高一致性的那种。不管是什么物种,输入时的单视图图像还是这样婶儿的:两分钟后,3D版大功告成:△上,Repaint123(NeRF);下,Repaint123(GS)新方法名为Repaint123,核心思想是将2D扩散模型的强大图像生成能力与再绘策略的纹理对齐能力相结合,来生成高质量、多视角一致的图像。此外,该研究还引入了针对重叠区域的可见性感知自适应再绘强度的方法。Repaint123一举解决了此前方法多视角偏差大、纹理退化、生成慢等问题。目前项

详解用SVG给 favicon 添加标识详解用SVG给 favicon 添加标识Sep 07, 2022 am 10:30 AM

怎么使用SVG给 favicon 添加标识?下面本篇文章给大家介绍一下使用 SVG 生成带标识的 favicon的方法,希望对大家有所帮助!

在HTML5画布上绘制SVG文件在HTML5画布上绘制SVG文件Sep 15, 2023 pm 03:09 PM

要在画布元素上绘制HTMLImageElements,请使用drawImage()方法。此方法使用src=”mySVG.svg”定义一个Image变量,并在加载时使用drawImage。varmyImg=newImage();myImg.onload=function(){  ctx.drawImage(myImg,0,0);}img.src="http://www.example.com/files/sample.svg";

vue3+vue-cli4中怎么使用svgvue3+vue-cli4中怎么使用svgMay 11, 2023 pm 05:58 PM

一、安装svg-sprite-loadernpminstallsvg-sprite-loader--save-dev二、在src/components/svgIcon下新建组件index.vueimport{computed}from"@vue/reactivity";exportdefault{name:"baseSvgIcon",props:{iconClass:{type:String},className:{type:String},},setup

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)