Recent posts

#11
Scripts and Plugins / Re: Importing modules into Pyt...
Last post by henrylaw - August 24, 2026, 01:12:08 PM
Update: I wrote a small module (in another language, to make sure I wasn't using the built-in Python interpreter) which does nothing more than read the clipboard and print it to stdout. In my scripter program I then coded

import subprocess
clip_data = subprocess.run( '/home/henry/Perl/tryout/tryout',
                            shell=False,
                            capture_output=True,
                            text=True )
scribus.messageBox( 'stdout',clip_data.stdout )

Result? "FileNotFoundError: [Errno 2] No such file or directory: '/home/henry/Perl/tryout/tryout'"

... and that file definitely does exist: I can execute it from the command line, thus:

henry@prospero:~$ /home/henry/Perl/tryout/tryout
This is data from the clipboard

I give up, frankly.  I shall have to paste my clipboard output to a file, and then within my scripter program read that file back in again.  Bah.
#12
Scripts and Plugins / Re: Importing modules into Pyt...
Last post by henrylaw - August 24, 2026, 12:42:28 PM
Update. I tried creating /usr/lib/python3.12/site-packages/pyperclip and then hard linking the files in there to their equivalents in /usr/lib/python3/dist-packages/pyperclip

Still the module is not found.
#13
Scripts and Plugins / Importing modules into Python ...
Last post by henrylaw - August 23, 2026, 05:11:51 PM
I am writing a scripter program that will take text from the clipboard, do some reformatting and then insert it into a text frame. To do this I'm trying to import 'pyperscript'.  Environment is Linux Mint 22.3

I code

  import pyperscript

... and get the message

  ModuleNotFoundError: No module named 'pyperclip'

The module is installed; I have test programs, run from the command line, that find and execute it.

Reading up, I think I understand that the python interpreter in Scribus has its own "sys.path", so I wrote a simple routine which prints that out; right enough it doesn't contain /usr/lib/python3/dist-packages, which is where "pyperclip" lives.  It does contain /usr/lib/python3.12/site-packages, so I experimented with

  sudo ln -s /usr/lib/python3/dist-packages/pyperclip /usr/lib/python3.12/site-packages/pyperclip

(and had to create /usr/lib/python3.12/site-packages in the process). But the module is still not found.

Is there a way to do what I want to do?
#14
PDF Generation / Re: Can we suppress the "Progr...
Last post by MrB - August 23, 2026, 12:36:00 PM
Note there is risk of issues with progressive images when sending PDFs to professional printers
#15
PDF Generation / Re: Can we suppress the "Progr...
Last post by MrB - August 23, 2026, 12:21:39 PM
I've fixed this in 1.7.4.svn
#16
PDF Generation / Re: Can we suppress the "Progr...
Last post by henrylaw - August 23, 2026, 10:39:09 AM
Sorry to come back on this after so long, but I've been putting up with this annoyance because of other issues.

This option "Check for images with progressive encoding" is unchecked for all preflight verifier profiles, and yet I still get the warning.
#17
Scripts and Plugins / Re: Photobook Browser – browse...
Last post by a.l.e - August 21, 2026, 08:42:12 PM
Hi,

Thanks for sharing your work!

Not sure you already found it, since it's well hidden, but Scribus already has something similar: "Extras > Picture Browser".

I have not tried (yet) your plugin but from the description, it seems to be adding a few interesting features.

Indeed, while the Picture Browser can be used for creating a photo album, your plugin is more focused on the task.
Still, since Scribus already has Manage Images and Picture Browser in Extras, I would not wish to have one more similar tool distributed by default with Scribus.
But I you feel like, you're welcome to propose patches to the Picture Browser, that give it a better ergonomics...
... and, most of all, I would welcome a marker for pictures that are already in the document and / or being able to filter out the images that are already in (or only show the images that are already in... maybe integrating both the Picture Browser and Manage Images...)
#18
Scripts and Plugins / Photobook Browser – browse, tr...
Last post by Uhrendoktor - August 21, 2026, 03:09:01 PM
Hi everyone,

I am fairly new to Scribus. I mainly wanted to use it to design a photobook without having to rely on other tools, while keeping everything open source and PDF-compatible.

Maybe something like this already exists, but I couldn't find a workflow that really worked for me. And since I'm a developer by trade, I ended up implementing what I had in mind myself.

So I've been working on a Scribus plugin for people who work with a lot of photos, especially for photobooks:

Photobook Browser is a native C++/Qt plugin that lets you:
  • browse images directly in Scribus, showing thumbnails
  • highlights which images are used/unused in the document
  • lets you search and filter in Scribus
  • and lets you drag images into the layout

GitHub:
https://github.com/Uhrendoktor/scribus-photobookbrowser



It's still fairly new, so I'd be interested in feedback, bug reports, or just hearing whether anyone else finds this kind of workflow useful.

Cheers!
#19
Features / Re: Window position
Last post by a.l.e - August 20, 2026, 02:09:32 PM
Which version do you use?

If it's not 1.7, would you mind trying the latest development snapshot and see if things got better?

https://sourceforge.net/projects/scribus/files/scribus-svn/1.7.4.svn/
#20
Features / Window position
Last post by claygues - August 20, 2026, 02:02:05 PM
Hello,

The more I use this software and the more I understand it, Scribus becomes a very valuable tool. It's portable, lightweight enough, and powerful.
So, it's a shame that window positions are not recorded. With a two-screen setup and Windows 11, it's all a mess. Informational windows open anywhere at Scribus startup, and contextual windows (like text edition) always open in an out-of-reach square of the screen.

This should be a top priority to address this issue.

Cordialement,
Cyrille LAYGUES