Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    Unsolved QGraphicsSVGItem ignores (some) clipping paths. Why?

    General and Desktop
    1
    1
    38
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • N
      Nicoco last edited by Nicoco

      This SVG image is correctly rendered in Firefox and Inkscape, but for some reason, when using QGraphicsSVGItem without anything fancy, it renders this way:

      b7438226-8ead-4e81-b541-9888b03058e9-image.png

      For reference, this is what it looks like on firefox:

      83ecb93a-bfdf-45fc-b41c-5255655ae7e3-image.png

      As you can see, the back of the card is not supposed to go beyond the white border.

      Am I doing something wrong? Is there a (preferably easy) fix?

      A minimal working example, as you can see I am not doing anything fancy at all

      import sys
      from PyQt5 import QtWidgets, QtCore, Qt, QtGui
      
      app = QtWidgets.QApplication(sys.argv)
      
      scene = QtWidgets.QGraphicsScene()
      scene.addItem(Qt.QGraphicsSvgItem("back-red.svg"))
      
      graphics_view = QtWidgets.QGraphicsView()
      graphics_view.setScene(scene)
      graphics_view.show()
      
      sys.exit(app.exec())
      
      1 Reply Last reply Reply Quote 0
      • First post
        Last post