Page 1 of 1
Alpha fill check action list
Posted: Wed Jun 04, 2025 12:52 pm
by JavierLFPC
Hi,
I need to create an action list in PitStop pro that detects any object with an alpha fill and show me an error message if there is not an alpha fill.
Typically the jobs will include jpeg objets with transparency.
In attachment you can find 2 pdf files, with and without transparency.

- NoTransparency.jpeg (137.01 KiB) Viewed 12378 times

- Transparency.jpeg (217.05 KiB) Viewed 12378 times
Re: Alpha fill check action list
Posted: Fri Jun 06, 2025 2:08 pm
by freddyp
The JPEG format does not support transparency, so a method that is based on the properties of the image will not work. What you are referring to is undoubtedly the fact that there are white pixels.
Here is a conceptual way of detecting those. Run a PitStop Server Action List on the image (make sure to enable image input on the app):
Trace path (you can play a bit with the resolution and the white threshold; white holes can be ignored)
Select last added objects
Log selection
If the size of the created trace path is smaller than that of the image, there were "transparent" pixels. All other jobs do not have them.
Re: Alpha fill check action list
Posted: Sun Jun 15, 2025 7:14 pm
by yosimo
JavierLFPC wrote: ↑Wed Jun 04, 2025 12:52 pm
...In attachment you can find 2 pdf files, ...
Hi JavierLFPC,
I cannot find your PDF files. Only JPG files are shown. Perhaps you could make the PDF files available for download (from a file hoster)?
Re: Alpha fill check action list
Posted: Mon Jun 16, 2025 8:41 am
by JavierLFPC
Hi,
Sure! Here you have a link to download them:
https://www.transferxl.com/es/download/08vH2W4mzv5nBc
Thanks!
Re: Alpha fill check action list
Posted: Tue Jun 17, 2025 12:55 pm
by yosimo
Hmm, the PDFs only contain simple image data. No alpha fill, no mask and no native transparency.
How is PitStop Pro supposed to find this if the PDF does not even contain the properties to be searched for?
Re: Alpha fill check action list
Posted: Tue Jun 17, 2025 2:14 pm
by loicaigon
Hello,
I think Freddy's suggestion is the best option so far.
Loic
Re: Alpha fill check action list
Posted: Thu Jun 19, 2025 4:54 am
by chomairs
loicaigon wrote: ↑Tue Jun 17, 2025 2:14 pm
Hello,
I think Freddy's suggestion is the best option so far.
Loic
I agree with you

Re: Alpha fill check action list
Posted: Tue Jul 01, 2025 4:21 pm
by loicaigon
Hey There,
Here is a possible approach based on the folloing postulate: if an image has white pixels, then tracing would result in a smaller object that the page itself. If by contrast, the tracing consists in the full page, then the combination of that trace and the page should result in nothing.
So you can basically detect that nothing or not nothing to report if the page has a pseudo alpha fill (i.e. white pixels).
Take example here:
Source Image:
Tracing Image
Adding a full rectangle
Combining shapes
Remove and report
Loic