# File lib/prawn/document/graphics_state.rb, line 33
      def save_graphics_state
        add_content "q"
        if block_given?
          yield
          restore_graphics_state
        end
      end