Inkscape developers please add this feature: use hex float number instead decimal number. Use float hex number not lose precision from convert decimal when write file, then convert back to hex when read file. Useful for use SVG replace PDF.
Example SVG file here use big endian IEEE float format for draw black circle with radius 100 at (50; 50), fill opacity 1.0:
The goal for inkscape is to produce standard-compliant SVGs, that can also be rendered by browsers and other popular SVG renderers. This request unfortunately does not seem to be compatible with that goal.
Inkscape developers please add this feature: use hex float number instead decimal number. Use float hex number not lose precision from convert decimal when write file, then convert back to hex when read file. Useful for use SVG replace PDF.
Example SVG file here use big endian IEEE float format for draw black circle with radius 100 at (50; 50), fill opacity 1.0:
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg version="1.1" width="100" height="100" >
<circle cx="#42480000" cy="#42480000" r="#42C80000" fill="#000000" fill-opacity="#3F800000" stroke="none" />
</svg>
Should also add this feature in future SVG version too.
Feature requests need to go to https://inkscape.org/report .
Make sure to supply info about the part of the SVG specification (link to it) that allows these values.
Not in standard. I think stardard not support IEEE float hex number. Strange because have hex integer format for color.
The goal for inkscape is to produce standard-compliant SVGs, that can also be rendered by browsers and other popular SVG renderers. This request unfortunately does not seem to be compatible with that goal.