Recent posts

#2
Beginner Talk / Re: adjust frame to image by d...
Last post by Plop - September 04, 2026, 10:26:38 PM
I'll also add that being able to perform this kind of framing/cropping an image to page dimensions at any time (as opposed to only on import) would be useful.
#3
Tutorials, Tips and How-Tos / Re: No icc profile embedded in...
Last post by Muravir - September 04, 2026, 09:45:36 PM
Quote from: Nermander on September 04, 2026, 08:28:25 PMWhat option do you choose in the PDF export dialogue? For screen of for print?

For screen is RGB, for print is CMYK.

I choose the option for print, of course. Choosing the Screen/Web option, grays out the icc profiles options beneath and makes the whole dokument RGB, so even the vector shapes are out of gamut.

https://imgur.com/2ejrfqG

I've managed to take screenshots while the list of profiles to embed is on, by using terminal. There are no CMYK profiles to choose:
https://imgur.com/a/Ay8MWsj

P.S. The captcha verification seems very broken. It often is not letting me post or edit, despite filling it out correctly.
#4
Tutorials, Tips and How-Tos / Re: No icc profile embedded in...
Last post by Nermander - September 04, 2026, 08:28:25 PM
What option do you choose in the PDF export dialogue? For screen of for print?

For screen is RGB, for print is CMYK.
#5
Tutorials, Tips and How-Tos / No icc profile embedded in sav...
Last post by Muravir - September 04, 2026, 03:09:02 PM
Scribus Version 1.6.5 (Flatpak), Linux Mint 22.3 x86_64, Cinnamon.

Hello. I'm trying to properly export a pdf 1.3 with embedded CMYK icc profile, as the printhouse directed. The problem is, the exported PDF does never contain CMYK icc profile selected by me in the preferences and document setup. No matter what options I choose in the Color tab of Save as PDF dialog.

While trying to export the pdf in free version of paid software, the selected CMYK icc profile gets embedded and I can see the difference in colors of a photo that this PDF contains. (I get a watermark because of the free version, so I can't just embed the icc profile this way.)

On the dropdowns in Color tab of Save as PDF dialog, there are only RGB/sRGB icc profiles listed. I've seen that reported many times in the internet without any direct solution.
If I don't choose any of these iccs, the pdf is in RGB anyway. And when choosing PDF 1.5 or higher, the PDF is in CMYK, but there is still no icc profile embedded.

Does Scribus even have the CMYK icc profile embed functionality?

Screenshots:

No CMYK in dropdowns:
https://imgur.com/c9bBfXp (Not able to take a screenshot while the dropdowns are displayed.)

Preferences and document setup with color managment on:
https://imgur.com/z4netXq
https://imgur.com/a/98ZRQvJ

PDF 1.3 result:
https://imgur.com/PcOTFNc

PDF 1.5 result:
https://imgur.com/IJkQ8tZ

PDF 1.5 result from paid software demo:
https://imgur.com/JU64QsX
#6
Beginner Talk / Re: adjust frame to image by d...
Last post by Plop - September 04, 2026, 03:02:25 AM
Hello,

While I understand that this "auto frame fitting to page dimension" when dropping an image onto the canvas may be useful, there are cases where it definitely isn't - specifically when images are just ever so slightly bigger than the page on purpose, to deal with bleed.

Is there a way to disable it this auto framing altogether ? If not, an option do disable it should definitely be added. Or at the very least there should be some very clear visual indication that some frame fitting has been performed - otherwise the user will just be unaware.

Here's a practical case. Here I am importing a pre-assembled page with a specific bleed tolerance built-in. The auto framing performed on import is counter productive here, because the software cannot guess how I am intending to use this bleed (and it can even be different depending on the page being left or right). This can quickly lead to errors.

https://youtu.be/_cO0MBwvWX0

Having to perform "fit frame to image" on every imported image is just annoying, and is a step easily forgotten after not using the software for a while. I hope this makes sense.
#7
Free discussion / Re: VivaDesigner
Last post by mnawij - September 02, 2026, 08:00:04 PM
I have used it to convert inDesign files to formats that I could copy type and photos to Scribus to recreate documents or print the pdf if there were no changes from the customer.
#8
Scripts and Plugins / Re: Get the PPP informations
Last post by a.l.e - August 27, 2026, 05:57:58 PM
In the UI, you can see the actual PPI in the "context menu > Info" and in "Extras > Manage Image".

In the Scripter, there is getImagePpi() (... it's really time for an update of the docs on impagina.org...)
#9
Scripts and Plugins / Re: Get the PPP informations
Last post by BS69 - August 27, 2026, 05:10:01 PM
explained differently:

I import image one, I see A=100% and B=300x300
getImageScale respond 1.00 so the A value
in the SLA file ImageScale = "0.24"

I import image two from a different camera and I see A=100% and B=72x72
getImageScale respond 1 (100%) so the A value
in the SLA file ImageScale = "1"

So, in the SLA I got a combination % and resolution so I can count the pixels
with getImageScale I only get the A value not the B value, without a clue on value B I can't count the pixels

I assumed the B value being the DPI info from the exif, but it's not, as image 2 was DPI=314 in Exif

So, either the getImageScale should answer the same as SLA (a factor of 72 DPI) or it should answer value A as it does now but a getImagePPP procedure shoud answer the B value

Isn't it ? ;)
#10
Scripts and Plugins / Get the PPP informations
Last post by BS69 - August 27, 2026, 04:29:40 PM
Hi Guys,

Correct me if I'm wrong, there's no procedure to get the PPP informations of an imported image, like it is showed inside the image property tab or in the image manager.

Some images show 300x300 after import, some show 72x72 despite the exif resolution is 314x314 (Olympus tg7 images), well without this info I can't have the real scale factor inside a script as it is a combination of scale and resolution.