Russian Ukraine English
Catalog RSS


pdf_open_png

(PHP 4 >= 4.0RC2)

pdf_open_png -- Opens a PNG image

Description

int pdf_open_png (int pdf, string png_file)

The pdf_open_png() function opens an image stored in the file with the name filename. The format of the image has to be png. The function returns a pdf image identifier.

Note: This function shouldn't be used anymore. Please use the function pdf_open_image_file() instead.

Example 1. Including a PNG image


<?php $im = pdf_open_png ($pdf, "test.png"); pdf_place_image ($pdf, $im, 100, 100, 1); pdf_close_image ($pdf, $im); ?>           

See also pdf_close_image(), pdf_open_jpeg(), pdf_open_gif(), pdf_open_memory_image(), pdf_execute_image(), pdf_place_image(), pdf_put_image().

Led