Is this possible....embed Photoshop function in a web site

I have pic files taken with a green screen backgrounds.  I can super-impose these pictures onto different backgrounds from within Photoshop - fairly easily.
I would like to be able to "front-end" these functions in a web site, WITHOUT the user having to know how to use Photoshop.  Can this be done - perhaps with some scripting functions?  If not - are there plug-ins, third-party, etc. available that would let me accomplish the same?
Thanks
Jack

Hi Jack,
With a bit of hacking you could get a web server with Photoshop installed to produce what you are looking for. I wouldn't recommend this option  though as it would probably be slow and possibly somewhat unstable and rather complicated to set-up. I would suggest you look in to a server side image processor if you have PHP try these options:
PHP GD
http://uk3.php.net/manual/en/book.image.php
Image Magick
http://www.imagemagick.org/script/index.php
They will be much faster and simpler to set-up and maintain - but should reproduce all the functionality you need.

Similar Messages

  • I hear i-web will end next year. Does this mean I shouldn't design new web site using i-web

    I have just learnt how to use i-web and I am designing web sites for 4 business. Should I think twice about this? I am concern that I will have to do it all again next year.
    Mashable reported today that when i-cloud comes into play next year, i-web will no longer be supported.
    Can any one enlighten me further
    jfrombideford

    Unfortunately, Apple isn't a trustworthy Software Developer anymore. There is no continuity in their applications development. Innovation is one great thing - Reliability is also vital for a relationship (Apple <-> Customer) I'm sad to see that they are not as innovative and not as reliable as they used to be.
    I guess these great applications like iWeb have been programmed by just one or two developers and since the went on never ending holidays with the profit of their shares - no one is able to continue the work due to chaotic organisation (like in the early days).
    I'm really sad to say that, but you rather choose a web design tool from a professional software company like Adobe or one of the other nice applications like RapidWeaver, Sandvox, Freeway Pro....
    Sad story, really!

  • I need to batch process images to 800x800px without cropping off any part of the images.  Is this possible in photoshop?

    I have tried processing these through Bridge and image processor, but can only limit either of the height or width to the 800px size.  I need the final images to be 800x800px, and don't mind if they have a white border to achieve this.

    thanks for that I've cracked it

  • Contrast stretch -- is this possible in PhotoShop?

    I have an image (A.jpg).
    The image shows some horizontal stripes (in darker shades) when stretched.
    I want to fix the horizontal stripes without chaning other pixel values. A simple copy/paste of neighboring pixels would be good enough.
    Here's my problem. If I stretch the image, I can see the stripes and edit pixels, but I loose all the original pixel values. Without stretching, I cannot see the stripes.
    Is it possible to edit original pixel values with a 'visually' stretched display?
    I will appreciate any help, suggestion or comments.
    Thanks!

    Thank you very much! That's exactly what I was looking for.
    Best,

  • How do i get the option for Bypassing when i get a "this connection is not trusted"? This is my company SSO sign on web site

    the only 2 options i have are:
    Get me out of here and Technical Details.
    The documentation shows a third option to bypass, but this is not available to me.
    I am trying to get an SSO passed into a website that uses my corporate SSO in our SaaS subscription. It works fine on IE10 and was working fine on Firefox until recently.

    Note that the forum software detect your computer as Windows NT 4.0
    Check that you do not run Firefox in compatibility mode or with a reduced screen resolution.<br />
    Make sure that you do not run Firefox in compatibility mode.<br />
    You can open the Properties of the Firefox desktop shortcut via the right-click context menu and check the "Compatibility" tab.<br />
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    What does it say under the technical details?
    If "I Understand the Risks" is missing then this page may be opened in an (i)frame and in that case try the right-click context menu and use "This Frame: Open Frame in New Tab".

  • Is it possible to recover an apple i web site

    Is it possible to recover an iweb site that has disappeared in conversion to i cloud?

    You need to open your site in iWeb and use one of these methods to republish it...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    ... to a new hosting service...
    http://www.iwebformusicians.com/iWeb/Website-Hosting.html

  • HT5622 I have changed my e mail address and whilst this has been changed in the Apple web site I do not know how to change it on my i Pod, I tunes and I Cloud.

    I have changed my e mail adress and notified my Apple id but I do not know how to remove the old one and add the new one to my I Pod touch / I tunes and I Cloud.

    Go to Settings>iTunes and App Stores and sign out and sign back
    Same for:
    - Settings>iCloud
    - Settings>Game Center
    - SettingsFaceTime
    - Settings>Messages>Send and Receive

  • I Need to Return Two values or more from Function, Is this possible?

    Below is the offending query, I am trying to pass v_bu and v_po to this function, and after validations then return v_count and v_action is this possible in a function? I am having problem returning two values.
    see below code
    function po_edi_func(v_bu purchase_order.business_unit_id%type,
         v_po purchase_order.purchase_order_number%type)
         return number as pragma autonomous_transaction;
         v_count               number;
         v_ctdel               number;
         v_action          varchar2(1);
    begin
    select count(*)
    into v_count
    from sewn.purchase_order
    where business_unit_id=v_bu
    and purchase_order_number =v_po;
    if v_count > 0 then
         select count(*)
         into v_ctdel
         from sewn.purchase_order
         where business_unit_id=v_bu
    and purchase_order_number =v_po
         and purc_orde_status = 1;
         if v_count <> v_ctdel then -- ALl PO's Cancelled--
         v_action := 'U'; -- - NOT ALL PO DELETED --
         else
         v_action := 'D'; -- DELETED ALL PO--
         end if;
    else
         v_action := 'I';-- New PO INSERT--
    end if;
    commit;
    return v_count;
    end;

    Paul,
    This is becoming a nightmare to me, can you look at the below and tell me where I am having a problem
    This is the Function below
    CREATE OR REPLACE function po_edi_func(v_bu sewn.purchase_order.business_unit_id%type,
         v_po sewn.purchase_order.purchase_order_number%type,v_action_out OUT VARCHAR2)
         return number as pragma autonomous_transaction;
         v_count               number;
         v_ctdel               number;
         v_action          varchar2(1);
    begin
    select count(*)
    into v_count
    from sewn.purchase_order
    where business_unit_id=v_bu
    and purchase_order_number =v_po;
    if v_count > 0 then
         select count(*)
         into v_ctdel
         from sewn.purchase_order
         where business_unit_id=v_bu
    and purchase_order_number =v_po
         and purc_orde_status = 1;
         if v_count <> v_ctdel then -- ALl PO's Cancelled--
         v_action := 'U'; -- - NOT ALL PO DELETED --
         else
         v_action := 'D'; -- DELETED ALL PO--
         end if;
    else
         v_action := 'I';-- New PO INSERT--
    end if;
    commit;
    v_action_out := (lpad(v_count,8,'0')||lpad(v_action,1,' '));
    return v_action_out;
    end;
    and this is how I am calling it from my trigger which has to pass the v_bu and v_po values to be used in extracting data and returning the records
    see below
    if po_edi_func(v_bu,v_po) <> '' then;
    v_count:= (substr(v_action,1,8));
    v_action := substr(v_actione,9,1);
    else
    v_count:=0;
    v_action := 'I';
    end if;
    I need the extracted values of v_count and v_action for my app to reset some values

  • I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    HTML files from an existing site cannot be reused in Muse as Muse works only with files having extension as .muse.
    However, you use apps like Dreamweaver to edit your existing HTML files.

  • I have PSE13 on my system.  It was functioning properly and now I get these messages when I go to print:  "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You need to c

    I have PSE13 on my system, Windows 8.1, 64-bit.  It was functioning properly after installation and now I get these messages when I go to print:  "The saved printer information is not compatible with this version of Photoshop Elements, or the saved printer is no longer available.  You need to check your printer settings before printing."  and then this statement:  "Default printer could not be opened."  I have reloaded drivers for both printers and made any upgrades possible.  It was working fine before and now all of a sudden, nothing.  Would prefer to have old PSE v.12 back, it worked with no problems.

    See this thread
    My Photoshop Elements 13 doesn't recognize my Canon PRO-10 printer. I've tried EVERYTHING. Reinstalled all my software, didn't fix anything. Can anyone help?

  • I'd like to use Organiser part of Element 9 with my new Photoshop CC to manage my photographs, is this possible ?

    I'd like to use Organiser part of Element 9 with my new Photoshop CC to manage my photographs, is this possible ?. Photoshop CC seems to offer only the photo editing functions, with organiser I  can sort, tag and organise all of the photographs.

    Most subscribers will use Lightroom for organizing their photos. Lightroom will automatically recognize an installed copy of Photoshop CC. But you could use Organizer. Simply select a thumbnail  and then from the Organizer menu bar click:
    Edit >> Edit with Photoshop or use Ctrl+H

  • How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic? Is this possible?

    How can i set songs within a playlist, or an entire playlist, so that they are not included when using the shuffle function on IPOD Classic?
    Is this possible?

    You can set any song to Skip when shuffling.
    In your iTunes Library, highlight the song and right-click/Get Info. On the Options tab is the Skip when shuffling box. Select that and then Sync the iPod with your Library.

  • I have been sent a .pages document and would like to extract the photos included in the document as jpegs (need to edit on photoshop and put back in), is this possible? can't figure out how to do it.

    I have been sent a .pages document and would like to extract the photos included in the document as jpegs (need to edit on photoshop and put back in), is this possible? can't figure out how to do it.

    I'm going to answer my own question:
    Easy steps
    Locate the document in the Finder.
    Control/Right-Click on its icon.
    Select Show Package Contents
    All images and embedded objects appear in ‘Data’ folder
    From this blog
    http://vernonchan.com/2013/10/how-to-extract-images-from-apple-pages-5-0-documen t/

  • I do not manage to find the function to change a letter into exposing. I have MUSE DC 2014.2 and the menu does not display this possibility. I tried to import it IN design but that does not function either?

    I do not manage to find the function to change a letter into exposing. I have MUSE DC 2014.2 and the menu does not display this possibility. I tried to import it IN design but that does not function either?

    I'm not clear on exactly what it is you're asking, but if you're referring to changing opacity, you can change the opacity setting for the States of a menu item via the States panel and Control Strip.

  • I bought Photoshop CS5 Windows platform. I now own a Mac and want to install it to my new computer. Is this possible?

    I bought Adobe Photoshop CS5 Extended Student and Teacher Edition (Windows,English) a few years ago. I now own a Mac and would like to download and install my photoshop. Is this possible?

    A windows license is only good for the Windows platform.  CS5 does not qualify for a platform swap.  You might be able to install it on a Mac if you get a Windows emulator for it.

Maybe you are looking for

  • Re-install Flash CS6 ?

    Hi I have a problem when I launch Flash Cs6. It doen't run, and I have an error message which says the "PFF.dll" file is missing. I have tried to make an update of the app, but the problem is the same. I would like ton uninstall Flash Cs6 and reinsta

  • Need to change the way Function module exit is called.

    Dear Abaper,                   I want to know wheather is it possible to change the way a function module exit is called.In transaction IK11 i am using enhancement imrc0001 this function module is called only when clicking the save button. My require

  • Graph XY Offset

    Hi, I am working on an press force monitoring application. Right not I am plotting diplacement vs. force. I am looking to create an upper and lower limit for this plot that can be x and y axis adjustable. It sounds easy enough but I'm racking my brai

  • Hi .. I am trying to install a printer ( Xerox C525A ) on an existing netwo

    The netwotk is intact and I am simply replacing an older HP 2300 with the newer Xerox...C525A The problem is that I cannot see the printer over the network Are there any tricks I am missing here? Help most appreciated G5 dual core 2Ghz   Mac OS X (10

  • Can I use iWeb 06 with Mobile Me?

    Hello, I was just wondering if I could still use iWeb 06 with Mobile Me, or do I have to upgrade to iWeb 08? Any answers would be greatly appreciated! Thanks, Matthew