Protect Image from image capture software

Is there anyway to prevent people from using capturing
software to capture images.

Hawkie1234 wrote:
> Is there anyway to prevent people from using capturing
software to capture images.
if user can see it, it can be captured. Any tools for
preventing capturing
can be easily worked around.
Regards
Urami
Happy New Year guys - all the best there is in the 2006 :)
<urami>
http://www.Flashfugitive.com
</urami>
<web junk free>
http://www.firefox.com
</web junk free>

Similar Messages

  • Copy or extract an image from image fill

    It's pretty frustrating that Numbers puts images into Image Fill, so you can't easily copy/paste an image in a cell.
    But it's extra frustrating that I can't seem to find a way to copy or otherwise extract an image that is an image fill in a cell.
    That means that the only way to extract the image to use in something else is to expand it as big as possible and then do a screen capture (command-shift-control-4) of that image. A total inefficient hack, sadly.
    Suggestions are very welcome.
    Note: comments like "Numbers isn't a database" and "an image is not a formula" are not only unhelpful, but don't actually answer the questions. We're required to use it.

    Start Numbers.
    Open the worksheet with the image fill.
    Select the (Numbers) cell with the image you want to copy.
    Open Inspector from the Numbers toolbar.
    Click on either Table Inspector tab or the Fill Inspector tab. For this specific task, there is no difference.
    Click on the thumbnail image displayed. The outline should turn blue.
    Command key + C (or from the menubar, Edit, Copy) to copy the image to the clipboard.
    Now open Preview. If Preview is not already open, clicking on any image listed in Finder (.jpg, .png) will open it.
    Now in the Preview menubar, select File, New from Clipboard.
    When you click Save, you can save the image in your choice of graphic formats from the dropdown menu.
    Message was edited by: kostby

  • Saving an image from Image Field

    Hello all!
    I am working on a form for someone with a certain request.
    I am wondering if images from the Image Field can be saved? I tried right clicking on the image but no menu pops up so I am looking for other options. Are there any ways to work around this?
    Thanks in advance!

    Hi radzmar,
    Thanks for the reply. If any scripting was involved, would it be pretty lengthy/complex?
    Thanks again! Any information helps

  • Unable to save images from image preview or photoshop to network drive

    Hello,
    I have an issue when viewing an image file from image preview or photoshop and saving it to a mapped network drive. When trying to save it to the drive, I am met with the error "You don't have sufficient access privileges". However, I am able to save the image to my desktop THEN place it in my mapped network drive.
    This has left me pretty puzzled. Has anyone else run into this issue? It was working fine a couple of months ago, and I thought it might correct itself. The issue remains at large. I am not sure why it would stop working, but still works if I click and drag files to it.

    Your assumption is correct.
    The workflow is:
    Select Image in Aperture for external editing.
    Send Image to external editor via one version of Aperture's "Edit with NameOfExternalEditor" command.
    Aperture creates a new Original based on the selected Image and opens specified external editor with the Original loaded.
    You make changes to this file in the external editor.
    You close this file and select "Save Changes" (or similar) when prompted.
    You return to Aperture and find an Image based on the newly-created Original selected.  This Image shows the changes you made in the external editor.  It is badged with Aperture "Edited externally" badge.
    Let's check a couple of things:
    - Are you showing all Images in the Aperture Browser?
    - Are there any externally-edited Images in the Project after you have completed editing in Photoshop?
    For the first, clear any filter you have set for the Browser by clicking the dark-on-light drop-down magnifying glass icon _in_ the Browser search field and selecting "Show All".
    For the second, filter for externally edited Images by clicking the dark-on-light magnifying glass icon _next to_ the Browser search field and setting a filter with the Rule "File Type" set to "is", "externally edited".
    Report back.

  • Cliping image from image strip in iphone game development

    Re: Hi,
    Thanks KilledTeam for Reply.
    I mean , I have 5 images  in a single frame. I need to animate one by one image(eg: 1->2->3->4->5 first time then 1->2->3->4->5 second time and so on..).how to animate all five images.
                                         or, Tell me any idea to crop 2nd image from 3 images(given in a single frame). all are .png format. 
    Thanks
    ravindra

    Re: Hi,
    Thanks KilledTeam for Reply.
    I mean , I have 5 images  in a single frame. I need to animate one by one image(eg: 1->2->3->4->5 first time then 1->2->3->4->5 second time and so on..).how to animate all five images.
                                         or, Tell me any idea to crop 2nd image from 3 images(given in a single frame). all are .png format. 
    Thanks
    ravindra

  • Display image from image path (ASP)

    Help needed please. Sorry if the topic has already been
    discussed. I did a search but it returned nothing.
    My problem.
    I can display images on my website by choosing the datasource
    and the image path from by database. No issues here. What I want is
    to be able to open up a larger image by clicking on this image.
    I created another page. On this page is an image placeholder.
    The source again is the datasource with the image path to a larger
    image. I used a behaviour to open this page however, it shows the
    same image (the 1st record in my recordset) whichever image you
    click on my origianl page.
    Can someone please tell me how to do it? It would be
    appreciated.

    I'm assuming that you are using a repeat region to display
    the original
    images.
    You will need to pass the Primary Key to the new page, and
    filter the
    recordset on the new page based on that Primary Key.
    For example, this would be the link to the new page:
    <a
    href="page2.asp?ID=<%=(rsImages.Fields.Item("ImageID").Value)%>"
    Then on the new page filter the recordset SQL based on the
    ImageID,
    something like this:
    <%
    Dim rsImage__MMColParam
    rsImage__MMColParam = "1"
    If (Request.QueryString("ID") <> "") Then
    rsImage__MMColParam = Request.QueryString("ID")
    End If
    %>
    <%
    Dim rsImage
    Dim rsImage_cmd
    Dim rsImage_numRows
    Set rsImage_cmd = Server.CreateObject ("ADODB.Command")
    rsImage_cmd.ActiveConnection = MM_connImage_STRING
    rsImage_cmd.CommandText = "SELECT * FROM tblImages WHERE
    ImageID = ?"
    rsImage_cmd.Prepared = true
    rsImage_cmd.Parameters.Append
    rsImage_cmd.CreateParameter("param1", 5,
    1, -1, rsImage__MMColParam) ' adDouble
    Set rsImage = rsImage_cmd.Execute
    rsImage_numRows = 0
    %>
    Ken Ford
    Adobe Community Expert - Dreamweaver
    Fordwebs, LLC
    http://www.fordwebs.com
    "leeweatherill" <[email protected]> wrote in
    message
    news:ft00gm$spm$[email protected]..
    > Help needed please. Sorry if the topic has already been
    discussed. I did a
    > search but it returned nothing.
    >
    > My problem.
    > I can display images on my website by choosing the
    datasource and the
    > image
    > path from by database. No issues here. What I want is to
    be able to open
    > up a
    > larger image by clicking on this image.
    >
    > I created another page. On this page is an image
    placeholder. The source
    > again
    > is the datasource with the image path to a larger image.
    I used a
    > behaviour to
    > open this page however, it shows the same image (the 1st
    record in my
    > recordset) whichever image you click on my origianl
    page.
    >
    > Can someone please tell me how to do it? It would be
    appreciated.
    >

  • Show image from image library in another list in standard view

    I have a few images in an image library. In an "Awards" list, I want to show the images in a column named "CatImage," based on the value of a column named "Category" in the same list.
    So, for instance, there is an item in the Awards list where the Category value is "Great Teamwork." For that item, I want to show the "teamwork.png" image file from the image library in the "CatImage" column.
    In the image library I have the following items:
    Name                       Path
    customerservice       /Image%20Library/customerservice.png
    hitthemark               /Image%20Library/hitthemark.png
    improvement           /Image%20Library/improvement.png
    results                     /Image%20Library/results.png
    teamwork                /Image%20Library/teamwork.png
    The "Awards" list has the following columns:
    Item    | Category              | Created By  | Modified      |  Status      | CatImage
    Item1  | Great Teamwork  | Dave            | 10/1/2014  | Approved   | <image>
    Is there a way to do this with some java code in a CEWP?
    Dave Englund

    you need to use lookup column .
    Try this 
    http://blogs.sharepoint911.com/blogs/jennifer/Lists/Posts/Post.aspx?ID=53

  • Problem with downloading images from image URL's _ Plzz help me urgent

    Hello,
    I have a set of URL's in a hashtable. Now using the the enumerator, for each URL, I am trying to download the Image. The example for the image URL is something like this:
    http://gallery.hd.org/_exhibits/flowers/_more2003/_more09/flower-Holland-Netherlands-RF.jpgI am using ImageIO.read(new URL("URL")) for downloading the image
    My problem is, if I get a URL which is broken link like the below exaple
    http://www.ossrc.org.in/images/cii-shiksha.jpgmy code is waiting for for the data to come in. The code is hanging there. My code does not terminates but hangs and does not proceed futhur. How to resolve this problem. Please tell me.
    Its very urgent plzzzzzzzzz.
    Thanks,
    chaitanya
    Message was edited by:
    RKC

    Oh, too bad, it's urgent. I must be too late.

  • Download image from image field

    Hi to all gurus,
    I have an interactive form with some image fields in which a user can upload images. My question is: another user can download these images previously uploaded? Is there a way to do this?
    Thanks in advance,
    Enrico

    You can also expand the image to its full size before downloading or saving it.<br />
    There is usually a link to do that.
    If the pref doesn't exist then create a new Boolean pref with the name browser.enable_automatic_image_resizing , but that pref should be there.
    *http://kb.mozillazine.org/about:config

  • Imported MJPEG from Game Capture Software Suddenly Out of Sync

    First, I should point out that I am  new to Adobe products. I'm entirely self-taught with Premiere, and I know there are a lot of things that I don't fully understand yet. However, my methods were working fine until a couple weeks ago. Furthermore, I searched through the forums and couldn't find any issues quite like mine. A few were similar, but none helped with my issue. I'm sorry if there is something really simple that I'm overlooking here, but I would greatly appreciate any help.
    For quite a few months I used PlayClaw 5 to capture video game content and then import it to Adobe Premiere Pro CS6 to edit it and piece together gaming compilations. It worked without a hitch until about two weeks ago when the audio in the imported file stopped syncing correctly with the video. I'm not doing anything different that I know of, although PlayClaw 5 did have a recent update. I'm not sure what information would be useful in a situation like this, but I can provide the following:
    My usual Premiere set-up:
    Capture format is HDV
    Then I usually set my sequence presets to HDV 1080p30
    From there, I have Premiere maximized and drag a video file from a folder to the project window. I wait until it indicates that the file has been imported completely, then I go about hacking the video and audio (which is usually mixed together from PlayClaw 5) and creating my own videos.
    You can see in this video, the sound is synced perfectly - but a couple weeks later, I made this video, and the audio is off by just a bit, but it's noticable. Now all my imported videos have out-of-sync audio.
    I can also provide the type of encoding that PlayClaw 5 uses for the videos:
    Video Compression: MJPEG (quality at 95 with the option of YUV411 compression, was on for the second video link)
    Capture frame rate: 29.970
    Compression threads: 2
    Smooth frame flow enabled
    draw cursor enabled
    Convert to sterio enabled
    Mix audio in one track enabled
    Container: AVI
    Unfortunately, it doesn't give any other information about the audio.
    Again, I'm sorry if this is just my lack of experience with video editing. Also, I apologize if this isn't a typical Premiere problem.
    Thank you in advance for your time.
    Edit:
    I realized that I never actually included a question...
    Is there something I'm doing wrong to cause the audio to go out of sync all of a sudden? And is there an easy fix for this issue?
    Message was edited by: philosearcher88

    What Motion JPEG codec do you have installed to edit MJPEG?
    MJPEG http://forums.adobe.com/thread/730396
    >PlayClaw 5 did have a recent update
    Read below and then analyze a clip from before and after the update and compare
    Codec & Format information, with 2 links inside to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download
    >set my sequence presets to HDV 1080p30
    BZZZ... wrong... click the NEW ITEM link on page #5 in The PPro/Encore tutorial list http://forums.adobe.com/message/2276578 to learn how to ensure a sequence that matches your video... and start at the top of page #3 for a great deal of Premiere Pro information

  • Retrive image from image data

    I am generating UI by mapping delphi form 2 java swing.
    In delphi.dfm file for a picture some picture data is comming like this..
    Picture.Data = {
    07544269746D61704E310000424D4E3100000000000036040000280000009900
    00004A0000000100080000000000182D00000000000000000000000100000001
    0000FFFFFF000808080010101000181818002121210029292900313131003939
    3900424242004A4A4A00525252005A5A5A00636363006B6B6B007B7B7B008484
    84008C8C8C00949494009C9C9C00ADADAD00C6C6C600CECECE00D6D6D600DEDE
    So suppose one picture is in the delphi form and i want to put that picture in my generated UI of java. how can i get the picture? is there any other way or i have to decode that picture.data and how? can any body help me?
    thanks,
    gantait

    Well, this sounds like an interesting problem.. so I'll pitch in... I'd say EXPIRIMENT!!!
    What?
    Well what I mean is...
    - Make a picture of size 3 wide by 2 high
    - use simple colors... 2 or 3 only
    - look at the Picture.data value
    - if you have a string with 3 sets of 2 characters then your format is probably RGB, if 4 sets of 2 chars then it could be ARGB.
    Example:
    P.d = {0000FF0000FF00FF00FF0000FF000000FF00}
    view as...
    P.d = {0000FF 0000FF 00FF00 <next line> FF0000 FF0000 00FF00}
    That has 6 pixel colors...
    If you know how many pixels you have (6) then you can split the array by an even increment... so 36 characters divided by 6 pixels. Now you have 6 characters per color. So color in this case represents an RGB value. R = red (first set of two) G = green (second set of two) B = blue (third set of two)
    So just expiriment and find out the format thats being saved, tell me how it works out :)

  • Iphoto 11 is not recognizing jpeg files downloaded from camera and card reader. Nor will it allow me to transfer from image capture

    iphoto 11 is not recognizing jpeg files from either the camera and card reader. Canon Eos rebel dig. Nor will it allow me to transfer images from image capture to iphoto. No problem downloading to image capture.

    Sounds like a damaged card.  Get your photos off the card with Image Capture and then reformat the card in the camera.  Take some pictures and see if the card is recognized by iPhoto and the card reader.
    OT

  • Unable retrieve image from database

    Hi,
    I'm using Mysql-database with blob column. I'm trying to show one image on the page. Now I only get red cross, not image.
    I followed advices by jprazak:http://swforum.sun.com/jive/thread.jspa?threadID=47085&tstart=0
    I changed code for my purpose.
    import java.io.IOException;
    import java.sql.Connection;
    import java.sql.ResultSet;
    import java.sql.Statement;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * DisplayPicture.java
    public class DisplayPicture extends HttpServlet {
    private final String dbUrl="jdbc:mysql://localhost/pictures";
    private final String dbUser="read";
    private final String dbPassword="public";
    /** Creates a new instance of DisplayPicture */
    public DisplayPicture() {
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    public void destroy() {
    protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String id = request.getParameter("imageid");
    String ct = request.getParameter("contenttype");
    if((ct==null)||(ct.equals(""))) {
    ct = "image/x-jpg";
    System.out.println(("Now displaying image with ID: "+id);
    try {
    ServletOutputStream out = response.getOutputStream();
    response.setContentType(ct);
    out.write(this.getImage(id));
    }catch(Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    processRequest(request, response);
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    processRequest(request, response);
    public String getServletInfo() {
    return "Displays a picture from the database identified by a parameter IMAGEID";;
    private byte[] getImage(String id) {
    Statement sta = null;
    Connection con = null;
    ResultSet rs = null;
    byte[] result = null;
    try {
    java.lang.Class.forName("org.gjt.mm.mysql.Driver");
    con = java.sql.DriverManager.getConnection(dbUrl,dbUser,dbPassword);
    sta = con.createStatement();
    rs = sta.executeQuery("SELECT IMAGE FROM IMAGES WHERE IMAGEID="+id);
    if(rs.next()) {
    result = rs.getBytes("IMAGE");
    }else {
    System.out.println("Could find image with the ID specified or there is a problem with the database connection"););
    rs.close();
    sta.close();
    con.close();
    }catch(Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    return result;
    Then I add to file web.xml
    <servlet>
    <servlet-name>DisplayPicture</servlet-name>
    <servlet-class>DisplayPicture</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>DisplayPicture</servlet-name>
    <url-pattern>/servlets/DisplayPicture</url-pattern>
    </servlet-mapping>
    And image-component to the page, url-value:
    http://localhost:18080/application_name/servlets/DisplayPicture?imageid=1
    I get no errors. What is wrong with this code?
    Thanks

    If I select DEMO_BLOB and BLOBCOL from servers window, I can see in properties window:
    SQL Type BLOB
    Type Name BLOB
    If I select IMAGE column from mysql-table and I can see in properties window this:
    SQL Type LONGVARBINARY
    Type Name longblob
    Could this SQL Type difference be the reason why I can't get images from mysql to the page?

  • Insert Image in SharePoint List & Display Image from SharePoint List using C# Pragmatically

    hi 
    i have a share point custom list with the following columns and its types.
    Title--------------->Single line of test 
    FirstName--------------->Single line of test
    LastName--------------->Single line of test
    Description--------------->multiple line of test
    Link--------------->Hyperlink or Picture
    Image--------------->Hyperlink or Picture
    I've to create a visual web part with the following input fields and which can insert following items in the above list columns
     Title                  asp textbox
    First Name         asp textbox
    Last Name        asp textbox
    Description        asp textbox
    Link                  asp textbox
    Image              file upload control
    Submit             asp button
    when i click browse button for image control in above web part it browses image .jpg,jpeg or .png file from my computer into image input field above and when i click submit button it must be submitted in the Image column in the above list.
    i want to know how can i do that in c# pragmatically. 
    i've another visual web part which should read the image from the list in Image column and display it in image control on the web part.
    like this
    <img id="imgdisplay" runat="server" src="" />
    how can i read image from image column through c# pragmatically.

    Hello,
    You can't directly add picture into "Hyperlink or Picture" column because this column takes URL value and image is binary etc. You can first upload that picture into picture library (create new picture or document library) then add that image link
    into that column.
    To add/edit "Hyperlink or Picture" column, SP provided special class called "SPFieldUrl". Wheer you need to pass URL and description as parameter.
    Refer this link for you ref:
    http://stackoverflow.com/questions/23829576/how-to-decide-sharepoint-url-field-is-set-as-hyperlink-or-picture
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Help needed for downloading the image from Inage URL

    Hello everyone,
    I need some help regarding setting a timeout for dowloading image from image URL
    Actually I have a hash table with set of image URL's...
    for example:
    http://z.about.com/d/politicalhumor/1/0/-/6/clinton_portrait.jpg
    which gives a image.
    for(Enumeration e = google_image_links.elements() ; e.hasMoreElements() ;) {
                                      //System.out.println("final");
                                       //System.out.println(e.nextElement());
                                       try{
                                            System.out.println("Images download started....");
                                            //System.out.println(e.nextElement());
              //imageio is the BufferedImagereader object     
                                               imageio = ImageIO.read(new URL((String) e.nextElement()));
                                            image_title = created_imagepath +"\\"+ array_words[i] + counter_image_download + "." + "jpg";
                                            img = ImageIO.write(imageio,"jpg", new File(image_title));     
                                            imageio.flush();
                                       }catch(Exception e1){
                                            System.out.print(e1);
                                       if(img){
                                            System.out.println("The image " + image_title + " has been saved to local disk succesfully.");
                                       counter_image_download++;
                                  }//end of for loopi am using the above code to download all the image from the Image URL's that r present in hashtable.
    The problem i have been encountered with is...
    Some URL's does not return any bytes, The code is not totally broken. In such cases, my code is hanging off at that particular URL and waiting to get some output data from the URL. The execution does not proceed furthur But if the URL is a totally broken link, the code is throwing an exception and I am able to handle it successfully.
    But in the case of partially broken links, I am not able to go furthur because the code keeps waiting to get some data.
    So for this reason I want to setup a timer and tell the code to wait for 5-10 min, in that time if it does not get any data, proceed furthur to download other links...
    Please tell me how can I do this.. or plzzz tell me an alternative...
    Please help me ans its a bit urgent plzzzz.
    Thank you,
    chaitanya

    Hello everyone,
    I need some help regarding setting a timeout for dowloading image from image URL
    Actually I have a hash table with set of image URL's...
    for example:
    http://z.about.com/d/politicalhumor/1/0/-/6/clinton_portrait.jpg
    which gives a image.
    for(Enumeration e = google_image_links.elements() ; e.hasMoreElements() ;) {
                                      //System.out.println("final");
                                       //System.out.println(e.nextElement());
                                       try{
                                            System.out.println("Images download started....");
                                            //System.out.println(e.nextElement());
              //imageio is the BufferedImagereader object     
                                               imageio = ImageIO.read(new URL((String) e.nextElement()));
                                            image_title = created_imagepath +"\\"+ array_words[i] + counter_image_download + "." + "jpg";
                                            img = ImageIO.write(imageio,"jpg", new File(image_title));     
                                            imageio.flush();
                                       }catch(Exception e1){
                                            System.out.print(e1);
                                       if(img){
                                            System.out.println("The image " + image_title + " has been saved to local disk succesfully.");
                                       counter_image_download++;
                                  }//end of for loopi am using the above code to download all the image from the Image URL's that r present in hashtable.
    The problem i have been encountered with is...
    Some URL's does not return any bytes, The code is not totally broken. In such cases, my code is hanging off at that particular URL and waiting to get some output data from the URL. The execution does not proceed furthur But if the URL is a totally broken link, the code is throwing an exception and I am able to handle it successfully.
    But in the case of partially broken links, I am not able to go furthur because the code keeps waiting to get some data.
    So for this reason I want to setup a timer and tell the code to wait for 5-10 min, in that time if it does not get any data, proceed furthur to download other links...
    Please tell me how can I do this.. or plzzz tell me an alternative...
    Please help me ans its a bit urgent plzzzz.
    Thank you,
    chaitanya

Maybe you are looking for