back to main
Bookmark and Share

Use our picture editor with free pictures

Put On Your Site
Putting a picture editor on your site is easier than you may think.

You can put a picture editor on your site in just a few seconds.
Morph PhotoLite Plus is a picture editor with free pictures that you can put on your own website.

Please read the terms of use before using and/or linking to Morph PhotoLite Plus.
Last Updated : August 5, 2009 GMT +8

Read Terms of Use
Free Forever



Putting Morph PhotoLite Plus on your website
  1. Fill out the form below
  2. Click on the GET HTML CODE button below
  3. Copy and paste the HTML CODE into your web page
Load Default Image
If you select Load Default Image the image at Default Image URL will be loaded by default





Lock Image Size
User will not be able to change width or height if it is locked
(This is useful for banner ads)


Default Image Width


Default Image Height



Put Open Own Image Button
Allows you to put a button for the purpose of opening your own image
(useful for opening your own image as a layer)



Allow Upload
If you allow upload users can submit photos directly to your website



Link Type
You may use an HTML Button or an HTML Anchor Tag to link to Morph PhotoLite Plus


Link Text
The text to be displayed in the link


Link Preview
Click on link below to test configurations





Important Information

  • From the window opened by the Open Own Image button, you can open a new image or insert an image as a layer by submitting the absolute URL location of the image as a post or get variable named OPENURL to the following URL
    • http://www.morphsolutions.com/photoliteplus/app/openlayer.php - if you want the image to be inserted as a layer of the the current image then submit to this URL (if no image is currently being edited by the user then the image will be opened as a new image)
    • http://www.morphsolutions.com/photoliteplus/app/opennew.php - submit to this URL if you want the image to be opened as a new image
  • You can also open an image from the window that was opened by the Open Own Image button, by submitting the image data as a base64 encoded string in a post variable named OPENDATA to the following URL
    • http://www.morphsolutions.com/photoliteplus/app/openlayerpostdata.php - if you want the image to be inserted as a layer of the the current image then submit to this URL (if no image is currently being edited by the user then the image will be opened as a new image)
    • http://www.morphsolutions.com/photoliteplus/app/opennewpostdata.php - submit to this URL if you want the image to be opened as a new image
  • When the image is uploaded it will be sent as a post variable named MORPH_IMG_DATA
  • MORPH_IMG_DATA is base 64 encoded
    example:
    using php to get the actual image data
    <?php
    $real_data = base64_decode($_POST["MORPH_IMG_DATA"]);
    ?>
  • when uploading an image the format of the image can be determined using the post variable named MORPH_IMG_FORMAT
    possible values
    • MRP
    • PNG
    • JPG
  • you can treat a mrp image as if it were an ordinary png image
    example:
    using php
    <?php
    $img_obj = imagecreatefromstring($mrp_real_data);
    ?>
  • do not put any HTML tag with an id of "morph_photolite_plus_link" if you are putting a link to Morph PhotoLite Plus in that same page

Valid HTML 4.01 Transitional powered by php