• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Is it possible to remove background in InDesign only?

Enthusiast ,
May 14, 2024 May 14, 2024

Copy link to clipboard

Copied

Hello,

In Indesign, if I open a multipage PDF, is it possible to remove its background (by using Indesign only) ?

In that case, I would like to remove this yellow background :

 

screenshot partition.jpg

 

<Title renamed by moderator>

TOPICS
How to

Views

987

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Guide , May 16, 2024 May 16, 2024

Hi @pierret18811376 

 

Image processing is the way to go, but here you might fake it using SCREEN blending mode on a BLACK background.

 

Simple demo script:

 

(function(  orig, dup,g)
//----------------------------------
// Assuming a simple image container is selected on the page.
{
   // 1. Basic enhancer.
   (orig=app.selection[0]).properties =
   {
      strokeColor: "Black",
      transparencySettings: {blendingSettings:{blendMode:+BlendMode.SCREEN}},
   };
   with( dup=orig.duplicate() )
   {
  
...

Votes

Translate

Translate
Guide ,
May 16, 2024 May 16, 2024

Copy link to clipboard

Copied

Hi @pierret18811376 

 

Image processing is the way to go, but here you might fake it using SCREEN blending mode on a BLACK background.

 

Simple demo script:

 

(function(  orig, dup,g)
//----------------------------------
// Assuming a simple image container is selected on the page.
{
   // 1. Basic enhancer.
   (orig=app.selection[0]).properties =
   {
      strokeColor: "Black",
      transparencySettings: {blendingSettings:{blendMode:+BlendMode.SCREEN}},
   };
   with( dup=orig.duplicate() )
   {
      graphics.everyItem().remove();
      fillColor = "Black";
      sendToBack();
   }
   
   // 2. Increase the B/W contrast if needed.
   g = orig.parent.groups.add([orig,dup]);
   (dup=g.duplicate()).properties =
   {
      transparencySettings: {blendingSettings:{blendMode:+BlendMode.COLOR_BURN}},
   };
})();

 

 

Result:

ScreenBlendingScript.jpg

 

Best,

Marc

 

EDIT: Sorry for my intervention: I thought we were in the Scripting branch of the forum! Others have answered the substance of the question before me. My mistake.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines