Use Imagick in PHP to operate PSD file instances

Source: Internet
Author: User
This article mainly introduces how to use Imagick to operate PSD files in PHP. This article focuses on layer operations and provides operation code. For more information, see references:
Http://www.php.net/manual/zh/book.imagick.php

Prerequisites

The code is as follows:


$ Im = new Imagick ("test. psd ");

Obtain the number of layers

The code is as follows:


$ Num_layers = $ im-> getNumberImages ();

Get all parameters:

The code is as follows:


For ($ I = 0, $ num_layers = $ im-> getNumberImages (); $ I <$ num_layers; ++ $ I ){

$ Im-> setImageIndex ($ I); // this
$ Im-> setIteratorIndex ($ I); // or this is kinda redundant
$ Pagedata = $ im-> getImagePage ();
// Print ("x, y:" + $ pagedata ["x"]. ",". $ pagedata ["y"]."
\ N ");
// Print ("w, h:" + $ pagedata ["width"]. ",". $ pagedata ["height"]."
\ N ");

Foreach ($ im-> getImageProperties ("*") as $ k => $ v) print ("$ k: $ v
\ N ");

// Export layer
// $ Im-> writeImage ('Layer _ '. $ I. '.png'); // export all layers to a separate png file
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.