With package svg there are two different approaches regarding the use of fonts:
LaTeX in control
This is the default setting. Any formatting of the fonts in the SVG file is ignored and all text is typeset by LaTeX. Adjustments to the font regarding family, size, weight, shape etc. must be made in LaTeX style directly in the SVG file, using commands such as \small, \huge or \textbf{...} in text fields accordingly.
Inkscape in control
With inkscapelatex=false, LaTeX is disabled for processing text in the SVG file. This can be set for all processed SVG files with \svgsetup{inkscapelatex=false} or individually for certain files by using \includesvg[inkscapelatex=false,...]{...} as needed. In this case, all font formatting remains as it is in the SVG file. This also means, math expressions like $a+b=c$ aren't processed as well and there maybe raises the need to adjust font face, type etc. according to the document if desired.
Note
Regardless of the approach chosen, I recommend to create the SVG graphic preferably in the same size as it should appear in the final output and, if necessary, scaling it only minimally to avoid distorting the chosen fonts in particular.
\scalebox...? – GowriSaro Jan 24 '23 at 11:18\scaleboxbut same result – Zebra125 Jan 24 '23 at 11:23graphicxpackage and\includegraphicsas an alternative tosvgand\includesvg? Does the same (wrong) conversion occur when compiling the code? – alchemist Jan 24 '23 at 12:37svgenables LaTeX to typeset any text within the svg (as documented). If this is not desired, you could just use\includesvg[inkscapelatex=false]{./Test.svg}And instead using\scaleboxI would recommend to use\includesvg[scale=0.5,inkscapelatex=false]{./Test.svg}instead. – mrpiggi Jan 24 '23 at 13:25graphix– Zebra125 Jan 24 '23 at 13:34\includegraphicslike you do with PNG or JPG images. – Fran Jan 24 '23 at 22:34