Magick.NET icon indicating copy to clipboard operation
Magick.NET copied to clipboard

Get tiff layers per group

Open ITaluone opened this issue 6 years ago • 2 comments

Prerequisites

  • [x] I have written a descriptive issue title
  • [x] I have verified that I am using the latest version of Magick.NET

System Configuration

.net Framework 4.7.2

Magick.NET version: 7.9.0.2 Environment (Operating system, version and so on): Windows 10 1703 x64

Question

Hi :)

Is it possible to get all tiff layers per group? In photoshop you can add a group/folder to get a better structure in the tiff. For a software project this would be very useful.

example:


//some initialization
magickimagecollection.Read(file);
foreach(var layer in magickimagecollection) {
        string group = layer.Group;
}

thanks for your help

ITaluone avatar Nov 26 '18 07:11 ITaluone

We currently don't support reading layer groups in ImageMagick. We have this on our TODO list but I cannot give an estimate when we will add support for this.

dlemstra avatar Nov 26 '18 12:11 dlemstra

Hi

thanks for your reply.

Not a real problem by now.

Thanks anyway :)

ITaluone avatar Nov 26 '18 12:11 ITaluone