Can I turn a bmp,  gif, jpeg, or png file into a hyperlink?

Hello,
I created an image on Photoshop Adobe, and what I'd like to do with this turn into a hyperlink that I can upload to a website.  I was able to turn the pdf file with the same image into a hyperlink, but the website I'm trying to upload it to only accepts bmp, gif, jpg or png files.  That's why I'm asking if there is a way to make an image file using what I've specified into a hyperlink.  Thank you for any insight to my question.  -KD

Nancy O. wrote:
An image is just an image.  You need HTML or JavaScript code to make it into a hyperlink. 
     <a href="http://example.com"><img src="your_image.jpg"></a>
Unless the site you're uploading to is willing to wrap your image inside HTML code like the example above or JavaScript there is no way to make the image file link to anything on its own.
Nancy O.
But how is it that a pdf file is able to contain a hyperlink within the image and it takes me to my website?  Where on the image.gif, etc., do I attach the code you've posted?  The website I'm wanting to upload the image to, only allows the files with extensions I've already indicated in my op.   Thanx for your reply and help.   -KD

Similar Messages

  • Can I turn my soon to be old Apple TV into a wireless hard drive???

    Can I turn my soon to be old Apple TV into a wireless hard drive???

    Exactly. That's my question? There's a 40gb hard drive about to be tossed if I were to purchase the new Apple TV. I assume there are features the new one will have that old does not...?
    Either way still a good question because there is a 40gb hard drive that has just been sitting there unused. It would nice if it could be used as a data storage device.
    Currently I just stream content thru the Apple TV or rent movies directly from the ATV (not at the computer and then wait for them to transfer to the hard drive)

  • Can I turn my soon to be old Apple TV into a wireless hard drive like TC???

    Can I turn my soon to be old Apple TV into a wireless hard drive like the TC???

    Exactly. That's my question? There's a 40gb hard drive about to be tossed if I were to purchase the new Apple TV. I assume there are features the new one will have that old does not...?
    Either way still a good question because there is a 40gb hard drive that has just been sitting there unused. It would nice if it could be used as a data storage device.
    Currently I just stream content thru the Apple TV or rent movies directly from the ATV (not at the computer and then wait for them to transfer to the hard drive)

  • We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again. this is the message its shows when i upload proper format. i do not whom i should ..........

    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.
    We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.We're sorry, but this file is not a valid filetype. GIF, JPEG and PDF files are accepted. Please try again.

    I got uploaded after many ways. Just logged in windows PC and opened Internet explorer and uploaded it worked.

  • Hey, its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    its impossible to move jpeg or png files from my pc (w7) to my iphone (4g, latest firmware), tried everything, even 5,99 € app and 20 hrs of googling, pls help

    20 hours of googling?  It's in the user guide on p.117 and 53..
    http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf
    and here... http://support.apple.com/kb/HT1296

  • How to save content of JPanel into jpeg or png file

    I have to independent classes: Class A and Class B. Each class constructs its own graphical objects:
    Class A {
    //do something
    public void paintComponent(Graphics g)
    int x = 0;
    int y = 0;
    int w = getSize().width;
    int h = getSize().height;
    bi = new BufferedImage(
    w,h,100,BufferedImage.TYPE_INT_RGB);
    g2d = bi.createGraphics();
    // draw lines
    g2d.drawImage(bi,0,0,ww,hh, this);
    Class B {
    int x = 0;
    int y = 0;
    int w = getSize().width;
    int h = getSize().height;
    bi = new BufferedImage(
    w,h,100,BufferedImage.TYPE_INT_RGB);
    g2d = bi.createGraphics();
    // draw lines
    g2d.drawImage(bi,0,0,ww,hh, this);
    Two buffered images get properly displayed within JPanel component. However, I need to save two those results into one file. If I add saving file routine into every class, at best I can only get them to be in two different files.
    Please let me know if anyone can help me with this problem.
    Thanks,
    Jack

    You didn't mention what should be the format of file that the combines the images. Here are two options:
    1. Create another BufferedImage, and draw the BufferedImages from class A and B over this BufferedImage and save it as JPEG or PNG.
    In each of the class, you can add a method like getBufferedImage(), which would return the local BufferedImage. A third class, say class C, needs to call this method in each of the classes, and then draw the BufferedImages returned by these methods over another BufferedImage. Save this BufferedImage as a JPEG or PNG.
    A disadvantage of this approach is that you can't easily retrieve the individual images from the resulting file.
    2. Create a single zip file by adding the individual JPEG/ PNG images created from the BufferedImage in class A and B.
    Here is an example that creates single zip file of JPEG images from an array of BufferedImageObjects:
    public static void zip(String outfile, BufferedImage bufimage[]){
         if(bufimage == null) return;
         try{
             File of = outfile.endsWith(".zip")? new File(outfile): new File(outfile+".zip");
             FileOutputStream fos = new FileOutputStream(of);
             ZipOutputStream zos = new ZipOutputStream(fos);
             for(int i=0;i<bufimage.length;i++){
                 try{
                    ByteArrayOutputStream boutstream = new ByteArrayOutputStream();
                    JPEGImageEncoder enc = JPEGCodec.createJPEGEncoder(boutstream);
                    enc.encode(bufimage);
    ZipEntry entry = new ZipEntry("bufimage"+(new Integer(i)).toString()+".jpg");
    entry.setMethod(ZipEntry.DEFLATED);
    zos.putNextEntry(entry);
    byte[] fileBuf = boutstream.toByteArray();
    zos.write(fileBuf,0,fileBuf.length);
    zos.closeEntry();
    } catch (Exception e){ e.printStackTrace();}
    zos.flush();
    zos.close();
    }catch(Exception e) {e.printStackTrace();}
    The above method uses the JPEG codec and the zip package, both of which available in J2SE. In other words, you need to import com.sun.image.codec.jpeg and java.util.zip packages.
    With this approach, you can easily retrieve the individual JPEGs using the java.util.zip package.

  • How do I Batch Convert JPEG to PNG files?

    Any idea how I would convert a large number of jpeg's to png files in Photoshop CC?

    You could do it like this: http://www.santoshgs.com/blog/189/how-to-batch-convert-png-to-jpeg-using-photoshop-cs2/
    But can I be honest? I'd do that with a more efficient and far faster conversion utility like IrfanView. Photoshop is incredibly slow for this type of work. For example, I did a quick test to demonstrate the difference in performance:
    folder with 10 images in jpg format, 5600px by 5600px. Simple jpg to png batch.
    Photoshop: over six minutes.
    IrfanView: one minute and 40 seconds.
    That's a rather big difference - and with large numbers of images I just do not have the time to wait for Photoshop to finish the job. It's too slow.
    Another issue is that during the conversion process Photoshop cannot be used - while with a simple conversion utility you can leave it running in the background, and continue to use PS for other work if required. This matters if you have hundreds of images to convert.
    Btw, Irfanview (windows only) is free to download @ http://www.irfanview.com/
    The batch processing you can find under File-->Batch Conversion <b>
    ImageMagick is also free and open source. It is a command line tool, and easy to use for conversions.Will also work on a mac. But it is much slower than IrfanView, a tad faster than PS.
    http://www.imagemagick.org/script/convert.php
    http://www.ofzenandcomputing.com/batch-convert-image-formats-imagemagick/

  • Saving jpeg and png files large file size

    Ive recently purchased web premium 5.5 and Im trying to save files in jpeg and png format in Photoshop and Im getting unexpectedly large file sizes, for example I save a simple logo image 246x48 which consists of only 3 basic colours and when I save it as a jpeg quality 11 it reports the file size in the finder as 61.6k, I save it as a png file and its 60.2k also I cropped the image to 190x48 and saved it as a png and the file size is actually larger at 61.9k saving as a jpeg at quality 7 the files size is a still relatively large 54k.
    I have a similar png non indexed colour logo on my mac I saved in CS3 on a pc which is actually larger at 260x148 and it's only 17k and that logo is actually more complex with a gloss effect over part of it. Whats going on and how do I fix it, It's making Photoshop useless especially when saving for the web
    Thanks

    Thanks I had considered that but all my old files are reporting the correct files sizes I have been experimenting and fireworks saves the file at png 24 at 2.6k and jpegs at 5.1k, but I don't really want to have to save the files twice once cut from the comp in photoshop and again in fireworks juggling between the two applications is a bit inconvenient even with just one file but especially when you have potentially hundreds of files to save.
    Ive also turned off icon and windows thumbnail in photoshop preferences and although this has decreased the file size they are still quite large at 27k and save for the web is better at 4k for the png and 16k for the jpeg. Is there anyway to get Fireworks file saving performance in Photoshop ? it seems strange that the compression in Photoshop would be second rate in comparison to fireworks given they are both developed by Adobe and Photoshop is Adobes primary image editing software.

  • Can no longer open a folder while dragging a file into it...

    Suddenly I am unable to drag a file into a folder, hold it over that folder and have the folder open so I can then navigate within that folder before dropping the file (does that make sense?)...it has been working just fine for some time and now it won't work. Only thing I've done recently is repair disk permissions (which CheckUp seemed to find a lot in need of repair, oddly enough).
    Any help is much appreciated, I use this feature frequently.

    HI,
    I'm not sure what CheckUp is. Only use your Disk Utility application (Applications/Utilities) to repair disk permissions on a Mac.
    *"Suddenly I am unable to drag a file into a folder"*
    Time to check the hard disk. Grab your install disk.
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger and later) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    Check your available disk space also.
    Right or control click the MacintoshHD icon on your Desktop, then click: Get Info. In the Get Info window, click the discovery triangle so it's facing down. You will see; Capacity and Available Make sure you have 10% available disk space, 15% is better. Not enough available drive space can cause issues like you are experiencing.
    Carolyn

  • Is there anyone that can guide me or help me converting Micrografx Designer files into a format I can import and edit in Adobe Illustrator?

    I have a number of "old" (2009) drawings in Micrografx Designer format, where I would like to modify some of these in the Adobe Illustrator package I got now. Anybody out there that has some good ideas or that may be able to help me?
    I did contact Corel, who purchased Micrografx a couple of years ago, and they cannot help (maybe because I am an Apple osx user).
    Hope to hear from anyone.

    CorelDraw, both CorelDraw proper and CorelDesigner purport to open them. I believe you will loose any dimension lines. Could be wrong, but I only looked at a single thread in the Corel forums.
    You could download a trial--Windows only I am afraid--and give it a try.
    I have CorelDraw installed here if you would like me to see how the faithfully the process really works getting the DRW files into CD and then into Illy. If you would like me to try, either upload one to dropbox.com and post the link here if it isn't sensitive info, or feel free to send me a PM with your email address and I'll send you an email you can respond to and attach a file.
    Take care, Mike

  • When creating a DVD face in Photoshop 13 my save options are limited to .PSE and .PDF.  Why can I not save as a jpeg or other file format?  This was never an issues in Elements 10 (my previous version).

    I just recently purchased Elements 13. I am in the process of creating a DVD face for a video. The design is complete and I would like to be able to save it as a JPEG so I can use it in another program that prints my DVD's. The problem is that it only allows me to save the file as at PSE or a PDF. No other options are available. Why is this?  I upgraded from Elements 10. In Elements 10 I have never had a problem saving this type of project as a JPEG.  Any help would be greatly appreciated.  Thanks!

    ANSWER FOUND!
    Once I finished composing my question I went back and spent some time to figure out the problem. Rather than choosing the "save as" option, which doesn't work, or attempting to choose "export" (grayed out), the correct option is to choose "export creation", which is near the very bottom of the initial drop down options. That works!  I still think it would make sense to have it as an option in the "save as" area.

  • I can't see the iViews or jpegs which I added into the Web Page with WPC

    Hello,
    I'm using Netweaver 2004's.
    I created a Web Page in the Web Page Composer and in the Site Navigation a Navigation Node to this Web Page.
    Then I added a jpg and an iView to this webpage.But I can't see this iView or this jpeg if i open the Web Page.
    I'm superadministrator and i have the rights to watch this page
    But if i click "Edit Page" i can see everything.
    What can be wrong ?

    Tobias -
    I think Ursula is on the right track here.
    I was having the same issue (not seeing iviews in the page - even in edit mode).
    I think the solution (somehow) is configuring the initial permissions in the Security Zones.
    The only problem is that the documentation is incorrect. The correction is in an SAP Note.
    Below is the configuration (correction is bolded!):
    Documentation says:
    Defining Permissions for Security Zones
    1. Navigate to Security Zones &#8594; com.sap.nw.wpc &#8594; <b>wpc (not pagebuilder!).</b> (The documenation says com.sap.nw.pagebuilder. This is incorrect!)
    2. Define permissions for Web site owners and, if necessary, for authors.
    a. From the context menu of the medium_safety folder, choose Open Permissions.
    b. Give the wpc_editor_role role - or a user group - the permission End User.
    You can leave the default entry for the Administrator column as None.
    c. Choose Reset Child Permissions.
    d. Choose Save.
    3. Define permissions for users.
    a. From the context menu of the no_safety folder, choose Open Permissions.
    b. Give the everyone group - or another user group - the permission End User.
    You can leave the default entry for the Administrator column as None.
    c. Choose Reset Child Permissions.
    d. Choose Save.
    I made this change, and now I can see iviews in the page.  I won't swear this is the solution, but that is the only change I have made lately.
    Hope this helps.
    BTW - this <u><b><i>corrected</i></b></u> setting of the security zones corrected other problems I was having. Before I did this, a user with the WPC role - but not super admin - could not edit pages from the published page (the Edit Page link at the top of the page in runtime). Now the user can.

  • Enabling 'File Sharing' on my Mac allows my Macintosh HD and Boot Camp to be visible and writeable on my home network. How can I turn this off, so that only folders/files I share are visible?

    So I've been trying recently to get my MacBook Pro connected to my home network. There are two other desktop computers in the household, and I'd like to be able to connect to their shared folders, as well as allow them to access shared items on my MacBook Pro. I think I've read all the documentation regarding this issue on the Apple Support site. I do have administrator privileges on my Windows 7 computer.
    Issues connecting from PC to Mac
    A couple of days ago, I enabled SMB File Sharing on my MacBook Pro, and in addition to the already shared Public folder, I added another that resides within Movies. Then I went to my Windows 7 PC, and under Network, my MacBook Pro appeared. I double-clicked on it (I cannot remember if I was asked to enter my Mac user credentials; I think I was), and I saw the two shared folders: Public, and the Movies folder.
    However, today I went back to my Windows 7 PC, accessed my MacBook Pro, entered username and password, and in addition to the two shared folders, both my Macintosh HD and Boot Camp HD appeared as shared folders, both fully writable. However, under File Sharing on my MacBook Pro, only the two shared folders (Public and Movies) appear in the Shared Folders list.
    How can I prevent my Mac from sharing my entire partitions? How can I configure it so thatonly the folders I select to share are actually broadcasted across my home network? Also, it would be ideal if I can access these shared folders from my Windows 7 PC without having to enter my Mac user credentials.
    Issues connecting from Mac to PC
    I have a user account on my Windows 7 PC with the same name as my Mac, but with no password. When I try to connect to my PC from my Mac, the enter credentials dialogue pops up and asks me to either log-in as a Guest, or enter my User credentials.
    The Guest account is disabled on Windows 7, and I assume that's I'm not able to log in as Guest (if it is possible to connect as a Guest without having to enable the Guest account on Windows 7, please let me know). Leaving the password field blank on the enter credentials dialogue tells me that it's incorrect (even though I don't have a password on my Windows 7 account).
    Is it possible to access shared files and folders on my Windows 7 PC from my Mac without having to create a password protected account? If not, is it possible to create a password for the sake of accessing shared files, while not requiring it to log in to the account? I'm sorry, I know this last bit more falls under the category of Windows Help.

    Sharing files from a Mac to a PC is a different animal.  I've never done it myself so you may want to repost a separate question on this topic.
    From what I understand, in order to access files from a Mac on a PC, you must log in using your Mac username and password (no anonymous file sharing).  Since this is not very desirable from a security standpoint, Apple recommends creating a separate user account on the Mac that is dedicated to file sharing.  Give that account access only to the files/folders you want to share.  You can then give that user account name and password to your Windows users.

  • How can I turn off the native support for .ogg files in Firefox 6?

    Duplicate of [/questions/877892]
    I want to install an external application to play this kind of file but I don't see any clear way to do it. Firefox does not ask me how I want to treat the .ogg file so I have no way to install a helper until I have turned off the native support.

    did you check the suggestions mentioned in the article i posted in my previous post ??

  • HT2506 How can I turn off editing feature for all pdf files?

    The editing feature is annoying because when I read pdfs, I select randomly with mouse on the file, which creates "editing behavior". What' s more annoying is it saves to the pdf file directly without asking me, which causes sync services like dropbox to sync the file, generating unnecessary traffic and disk usage.  I never need to edit pdf files. Please give me an option to disable the feature permanently.
    See this link for other people getting annoyed:
    http://apple.stackexchange.com/questions/145009/how-to-disable-pdf-editing-in-pr eview-app

    ok after another hour of playing around i might have half solved this...I turned match off via my account within the store which didn't seem to work properly, but then found another option to "turn off" via the store dropdown in the menu bar which does seem to have worked on my mac (but not yet on my iphone so still need to figure this out). Now I have turned it off on my mac it seems to offer me the option to buy it again - but as i've already paid for the year I don't know if there is the option to turn on again if I choose to later?

Maybe you are looking for