Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
This module provides function convert
that convert all or selected
items placed on given canvas object.
Supported items:
width = 0
)Unsupported items:
Stipples are not applied.
convert(document, canvas, items=None, tounicode=None)
* ``document`` --- SVG document, object that support DOM, i.e. provides
``createElement`` method etc. (function ``SVGdocument`` can be used
to get such object)
* ``canvas`` --- Tkinter.Canvas object
* ``items`` --- list of objects to convert; if ``None`` then all items
are converted
* ``tounicode`` --- user function that should return proper unicode
string if Tkinter app use other then ASCII encoding. By default
``tounicode = lambda text: unicode(text).encode('utf-8')``.
Thanks to **Jan Böcker** who provided solution.
``SVGdocument``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Takes no arguments, returns SVG document; class provided in standard
``xml.dom.minidom`` module is used.
``saveall(filename, canvas, items=None, margin=10, tounicode=None)``
Helper function: saves whole canvas or selected items in SVG file,
sets proper dimensions, and viewport; additional margin
can
be set.
warnings(mode)
Module might emit warnings. By default it use custom function which
prints message on the standard error. You can change this by calling
method ``canvasvg.warnings(mode)`` with three possible values:
* ``canvasvg.PYTHON`` --- use ``warn`` from the standard module
``warnings``;
* ``canvasvg.MODULE`` --- use the custom function;
* ``canvasvg.NONE`` --- do not print any message.
``configure(*flags)``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Module might use either ``<path>`` or ``<line>`` tag for segment
representation. By default it uses ``<line>``. The behaviour could be changed
globally by calling ``canvasvg.configure(*flags)`` with one of consequent
values:
* ``canvasvg.SEGMENT_TO_LINE`` --- use ``<line>`` tag;
* ``canvasvg.SEGMENT_TO_PATH`` --- use ``<path>`` tag.
Changelog
------------------------------------------------------------------------
Below are major changes made before moving on Github__.
* 2013-07-23 --- support for "raw" smoothed lines (contributed by Marc Culler, author of plink__)
* 2011-02-20 --- python3 compatibility
* 2011-01-25 --- update ``saveall``: use list of items to export
* 2008-11-08 --- added ``tounicode``, optional argument
* 2006-12-01 --- initial release
__ https://github.com/WojciechMula/canvas2svg
__ http://www.math.uic.edu/t3m/plink/doc/
FAQs
Save Tkinter Canvas in SVG file
We found that canvasvg demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.