Search found 7 matches

by iacoposk8
2014-08-28T23:37:59-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

OK. thank you for your response.
I thought it was easier, because I found so many scripts to photoshop online, even amateur, with a few lines where you could do.
a common thing that I saw in all the script is this:
are hidden all levels, then one by one were displayed and exported.
even doing so you ...
by iacoposk8
2014-08-28T09:34:43-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

and to export the combined layer there is another way?
by iacoposk8
2014-08-28T08:37:56-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

but I can understand it via code?
so that if I export a layer in a foreach, if I find one of this type use the code fmw42
by iacoposk8
2014-08-28T07:36:14-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

is there a way to know if the layer is of type "combine"?
by iacoposk8
2014-08-25T05:57:23-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

Thank you very much! you have been very kind.
you can make it variable? I'll explain:
now the script to work it needs to indicate that the [0], [2] etc. .. you can put it all in a loop so that I export all levels and when it encounters a case like this be able to handle it.
and if we could also crop ...
by iacoposk8
2014-08-23T23:03:54-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

Re: export levels' psd

I tried, but the exported image is not only the blue arrow, but the arrow blue with a white background. I would like to have only the arrow cropped with transparent background.
by iacoposk8
2014-08-23T11:28:53-07:00
Forum: IMagick
Topic: export levels' psd
Replies: 12
Views: 20275

export levels' psd

I would like to create a script in php (or another language) that exports all layers of a psd file. I wrote:

<?php
$im = new Imagick("Senza titolo-1.psd");
for ($i = 0, $num_layers = $im->getNumberImages(); $i < $num_layers; ++$i) {
$im->writeImage('layer_' . $i . '.png');
}


$im ...