Can someone describe to me how to make a JPEG file into a live link?

A little more explanation.  I have a client who wants live links in her email signature.  I have individual Facebook, Twitter and Pinterest JPEG's that need to be placed into her Outlook Signature Editor.  When each icon is clicked in the signature, I need them to open to Facebook, Twitter and Pinterest.  Can anyone tell me how to do this in PhotoShop?

Thanks again John.  I figured it out for Mac Mail.  Maybe this will help someone else.  Place the icon in your Mac Mail signature editor,  select it,  Go to “Edit" > "Add Link” > (a space comes up for you to place your link.)  Place the appropriate link and hit “OK”.

Similar Messages

  • How to convert a jpeg file into a 1-bit bmp file (2 colors image)

    Hi. I�m having serious problems to convert a jpeg file into a 1-bit bmp file (2 colors image).
    I�m using FileSaver.saveAsBmp(String t) but what i get is a bmp image, but with 16M colors, but what i want is a 2 colors bmp file. A black and white image.
    Does anybody know how to do this? I�m really getting crazy with ths problem.
    Thanks in advance

    Hi opalo,
    this code may help you...
    import java.awt.*;
    import java.io.*;
    import java.awt.image.*;
    import javax.imageio.ImageIO;
    class Write1 extends Component {
    //--- Private constants
    private final static int BITMAPFILEHEADER_SIZE = 14;
    private final static int BITMAPINFOHEADER_SIZE = 40;
    //--- Private variable declaration
    //--- Bitmap file header
    private byte bitmapFileHeader [] = new byte [14];
    private byte bfType [] = {'B', 'M'};
    private int bfSize = 0;
    private int bfReserved1 = 0;
    private int bfReserved2 = 0;
    private int bfOffBits = BITMAPFILEHEADER_SIZE + BITMAPINFOHEADER_SIZE;
    //--- Bitmap info header
    private byte bitmapInfoHeader [] = new byte [40];
    private int biSize = BITMAPINFOHEADER_SIZE;
    private int biWidth = 50;
    private int biHeight = 70;
    private int biPlanes = 1;
    //private int biBitCount = 24;
    private int biBitCount = 1;
    private int biCompression = 0;
    private int biSizeImage = 0x030000;
    private int biXPelsPerMeter = 0x0;
    private int biYPelsPerMeter = 0x0;
    private int biClrUsed = 0;
    private int biClrImportant = 0;
    //--- Bitmap raw data
    private int bitmap [];
    //--- File section
    private FileOutputStream fo;
    //--- Default constructor
    public Write1() {
    public void saveBitmap (String parFilename, Image parImage, int
    parWidth, int parHeight) {
    try {
    fo = new FileOutputStream (parFilename);
    save (parImage, parWidth, parHeight);
    fo.close ();
    catch (Exception saveEx) {
    saveEx.printStackTrace ();
    * The saveMethod is the main method of the process. This method
    * will call the convertImage method to convert the memory image to
    * a byte array; method writeBitmapFileHeader creates and writes
    * the bitmap file header; writeBitmapInfoHeader creates the
    * information header; and writeBitmap writes the image.
    private void save (Image parImage, int parWidth, int parHeight) {
    try {
    convertImage (parImage, parWidth, parHeight);
    writeBitmapFileHeader ();
    writeBitmapInfoHeader ();
    writeBitmap ();
    catch (Exception saveEx) {
    saveEx.printStackTrace ();
    * convertImage converts the memory image to the bitmap format (BRG).
    * It also computes some information for the bitmap info header.
    private boolean convertImage (Image parImage, int parWidth, int parHeight) {
    int pad;
    bitmap = new int [parWidth * parHeight];
    PixelGrabber pg = new PixelGrabber (parImage, 0, 0, parWidth, parHeight,
    bitmap, 0, parWidth);
    try {
    pg.grabPixels ();
    catch (InterruptedException e) {
    e.printStackTrace ();
    return (false);
    pad = (4 - ((parWidth * 3) % 4)) * parHeight;
    biSizeImage = ((parWidth * parHeight) * 3) + pad;
    bfSize = biSizeImage + BITMAPFILEHEADER_SIZE +
    BITMAPINFOHEADER_SIZE;
    biWidth = parWidth;
    biHeight = parHeight;
    return (true);
    * writeBitmap converts the image returned from the pixel grabber to
    * the format required. Remember: scan lines are inverted in
    * a bitmap file!
    * Each scan line must be padded to an even 4-byte boundary.
    private void writeBitmap () {
    int size;
    int value;
    int j;
    int i;
    int rowCount;
    int rowIndex;
    int lastRowIndex;
    int pad;
    int padCount;
    byte rgb [] = new byte [3];
    size = (biWidth * biHeight) - 1;
    pad = 4 - ((biWidth * 3) % 4);
    if (pad == 4) // <==== Bug correction
    pad = 0; // <==== Bug correction
    rowCount = 1;
    padCount = 0;
    rowIndex = size - biWidth;
    lastRowIndex = rowIndex;
    try {
    for (j = 0; j < size; j++) {
    value = bitmap [rowIndex];
    rgb [0] = (byte) (value & 0xFF);
    rgb [1] = (byte) ((value >> 8) & 0xFF);
    rgb [2] = (byte) ((value >> 16) & 0xFF);
    fo.write (rgb);
    if (rowCount == biWidth) {
    padCount += pad;
    for (i = 1; i <= pad; i++) {
    fo.write (0x00);
    int b = 1200;
    fo.write(b);
    rowCount = 1;
    rowIndex = lastRowIndex - biWidth;
    lastRowIndex = rowIndex;
    else
    rowCount++;
    rowIndex++;
    //--- Update the size of the file
    bfSize += padCount - pad;
    biSizeImage += padCount - pad;
    catch (Exception wb) {
    wb.printStackTrace ();
    * writeBitmapFileHeader writes the bitmap file header to the file.
    private void writeBitmapFileHeader () {
    try {
    fo.write (bfType);
    fo.write (intToDWord (bfSize));
    fo.write (intToWord (bfReserved1));
    fo.write (intToWord (bfReserved2));
    fo.write (intToDWord (bfOffBits));
    catch (Exception wbfh) {
    wbfh.printStackTrace ();
    * writeBitmapInfoHeader writes the bitmap information header
    * to the file.
    private void writeBitmapInfoHeader () {
    try {
    fo.write (intToDWord (biSize));
    fo.write (intToDWord (biWidth));
    fo.write (intToDWord (biHeight));
    fo.write (intToWord (biPlanes));
    fo.write (intToWord (biBitCount));
    fo.write (intToDWord (biCompression));
    fo.write (intToDWord (biSizeImage));
    fo.write (intToDWord (biXPelsPerMeter));
    fo.write (intToDWord (biYPelsPerMeter));
    fo.write (intToDWord (biClrUsed));
    fo.write (intToDWord (biClrImportant));
    // DataOutputStream temp = new DataOutputStream(fo);
    // int m = 32;
    // temp.writeInt(m);
    catch (Exception wbih) {
    wbih.printStackTrace ();
    * intToWord converts an int to a word, where the return
    * value is stored in a 2-byte array.
    private byte [] intToWord (int parValue) {
    byte retValue [] = new byte [2];
    retValue [0] = (byte) (parValue & 0x00FF);
    retValue [1] = (byte) ((parValue >> 8) & 0x00FF);
    return (retValue);
    * intToDWord converts an int to a double word, where the return
    * value is stored in a 4-byte array.
    private byte [] intToDWord (int parValue) {
    byte retValue [] = new byte [4];
    retValue [0] = (byte) (parValue & 0x00FF);
    retValue [1] = (byte) ((parValue >> 8) & 0x000000FF);
    retValue [2] = (byte) ((parValue >> 16) & 0x000000FF);
    retValue [3] = (byte) ((parValue >> 24) & 0x000000FF);
    return (retValue);
    class Writebmp
         public static void main(String args[])
              //Image img = Toolkit.getDefaultToolkit().getImage("jatin.bmp");
              try
              File filename = new File("jatin_test.bmp");
              BufferedImage image = ImageIO.read(filename);
              Graphics graphics = image.getGraphics();
              graphics.drawString("&#2313;&#2332;&#2327;&#2352;",10,30);
              Write1 w = new Write1();
              Image img = Toolkit.getDefaultToolkit().getImage("jatin_test.bmp");
              w.saveBitmap("jatin_test.bmp",img,200,200);
              catch (IOException e)
    System.err.println ("Unable to write to file");
    System.exit(-1);
    }

  • How to combine my JPEG files into 1 file?

    I exported my PDF's into JPEG. Now I need to combine these into 1 to 3 files. How do I do this?
    Thank you!

    Hi Nancy, I would like to ask you if I'm using Illustrator CS6 instead of Photoshop? After I slice the vector file, I save as web devices > PNG file. But I realise that Ai and Psd do not work as the same, in Ai, it could not save as HTML. So what should I do after slicing images in Ai? :-D
    Another issue I'm facing is that do I have to create <div class> and <div box> to combine all the HTML files together into 1 and upload to blogspot? (1 long HTML that consists of HOME, ABOUT, CONTACT pages). Thank you

  • Can someone PLEASE show me how to Create a play list on a ZEN TOuch

    )ok from what i see so far i go on the player i select the track i want.
    2) Then i go too create play list and name the playlist
    3) But when i go to add other songs i witness 2 problems
    a) It saves all the songs for that artist
    b) it ask too override what was in the play list so i lose the songs i saved before?
    4) What is the whole point of the select as is button?
    Can someone please show me how to make a play list on the player not the media source....

    I don't mean to bump this after over a month, but I just found it with a search. I agree... playlist creation seems like it would be such a simple thing... and they make it so hard.
    Would added playlist function be able to be upgraded through firmware?
    It seems like along with the "Add to selected", there could be an "Add to playlist" thing you could click, then it would ask which plalist you would like to add it to. That way, even from the 'Now Playling' listing, you could add a song that's playing right now to any one of your playlists. Or you wouldn't have to interrupt what's playing to add a track in the library.
    The Zen software is pretty terrible too... you can't even easily arrange your playlist. You have to drag the tracks. I can't just click something like "Arrange playlist by artist" or anything. It's crazy.
    I love that you can do playlists... a lot of players don't even have this feature. But it seems like they could easily make it more... well... easy for us.
    For a software solution, I've found the Zen Winamp plugin to be by far the best thing for making playlists. It's great!
    - Darin

  • How to import a XML file into the document?

    Hai,
    i had created a table using xml file....
    Now i want to import that xml file tabel into the document...
    Can any one tell me how to import the xml file into the document?
    thanks
    senthil

    Hai...
    this is senthil...
    i'm beginner for creating adobe indesign plugins..
    i want to import a html file in the document...
    i want to create a table by using html tags and
    that table will be imported into the document..
    How shall i do it?
    can any one plzz explain me?

  • I can not sync my mailboxes with Icloud. I would like to see the same mails in all my apple devices. Can someone please tell me how? My calendar and contacts sync but my mailboxes dont...

    I would like to see the same mails in all my apple devices. Can someone please tell me how? My calendar and contacts sync but my mailboxes dont...

    I would like to see the same mails in all my apple devices.
    On iOS devices tap Settings > iCloud
    Make sure Mail is swtiched ON.
    Apple - iCloud - Learn how to set up iCloud on all your devices.

  • HT4623 I am having 4S. It is showing the IOS 6 update, but whenever I try to update it, it shows an error message saying " It cannot be downloaded at this time". Can someone please tell me how to update it?

    I am having 4S. It is showing the IOS 6 update, but whenever I try to update it, it shows an error message saying " It cannot be downloaded at this time". Can someone please tell me how to update it?

    Make sure you have the Latest version of iTunes on your computer.
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • Can someone tell me about how can I set it right

    i cant convert vids to mp4 can someone tell me like how can i set the videora pleaseee

    Hi Mark,
    Safari isn't intended to be an upload client for FTP'ing. For that you'll need a dedicated FTP client like CyberDuck.
    For some reason, on this computer, when I build an HTML file and save it, then open it using safari, I get the source code instead of the rendering of the source code.
    Which editor are you using to do this? I'm guessing TextEdit - if that's the case, use the Format menu -> Make Plain Text option to save the .html file. You'll then be able to save the file with whatever extension you prefer for JavaScript etc.
    want to switch back to the textedit application using COMMAND + tab the application doesn't open up. It remains minimized in the dock
    I know what you mean here and it is a bit frustrating. If you really want to stick with the keyboard you can do Ctrl+F2 then use the arrow keys to select the appropriate window from the Window menu. Normally I just keep the windows on screen and use Exposé to quickly retrieve the window.
    Hope some of that helps.

  • Can someone please tell me how to turn OFF Disk Mode on an Ipod Classic?

    Can someone please tell me how to turn OFF Disk Mode on an Ipod Classic

    Just Reset it like this
    Toggle the Hold switch, make sure you dont see the red mark when you do the  next step
    Reset the iPod -> Press Menu and Center button simultaneously for about 10 secs or till the Apple Logo comes ON
    Then release the buttons
    Select your preferred language.
    Here is the Apple support Article on the 5Rs
    http://www.apple.com/support/ipod/five_rs/classic/
    Good Luck!

  • Can someone describe the product history (SAP MDM) and evolution

    can someone describe the product history (SAP MDM) and evolution

    Hi SasikanthReddy M,
    can someone describe the product history (SAP MDM) and evolution
    This is what one of the blog says on this:
    MDM product was available for the last few years and its last version was MDM 3.0 this product was ABAP based tool with very strong capabilities in large scale data integration and consolidation between SAP systems, the problem with this tool was that it was too complicated for implementation and less strong in the client side.
    In order to make it better SAP had to decide whether to invest more development efforts or buy some other product that will be able to provide the missing capabilities, during the quest for this tool SAP found this Israeli company called A2I and their product called xCat. Even though the xCat product was intended for product catalog management SAP identified the grate potential in it both from conceptual and technical point of view and decided to buy it and make it SAPu2019s MDM product.
    At first this product was called MDME (MDM Extension) but now it was announced as the MDM official tool by SAP. The MDM5.5 tools is a very sophisticated tool from one hand providing great Data Modeling , data consolidation, fast data extraction , and search capabilities, and from the other hand it is very simple for installation and implementation (both from infrastructure point of view and end user experience). So now SAP has a very strong offering in the MDM world:
    Now the lastest version of MDm is MDM 5.5 SP06.
    Hope it helps.
    *Kindly reward points if helpful
    Thanks and Regards
    Nitin Jain

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • HT1688 Someone changed the settings on my iPhone so that I can no longer update my apps or download new apps. I don't have the icon on my phone anymore. Can someone please tell me how to get it back?

    Someone changed the settings on my iPhone so that I can no longer update or add apps. The icon no longer appears. Can someone please tell me how to add that back?

    I should have added that the iTunes app is not displayed on my phone in order for me to add the apps.

  • In the libary of iPhoto I do have double pictures only in the year 2006. Can someone please tell me how to remove the double pictures. I did rebuilt the libary but that solution did not help me any further.

    In the libary of iPhoto I do have double pictures only in the year 2006. Can someone please tell me how to remove the double pictures. I did rebuilt the libary but that solution did not help me any further.

    I think the warning is very clear.
    What warning? Where do you say that this plan you suggest will lose at least some, and possibly a whole lot of metadata, plus  the original files of edited photos. This is significant dataloss. And you should warn people that this is the case.
    While your metadata and originals may not be important to you, that is not necessarily the case for other users.
    Fourthly, and last, cleaning the iPhoto library should be done at least once per year
    This is nonsense. The iPhoto Library has no need of "cleaning" and certainly not in any way that trashes a whole lot of data.
    I'm very impressed that you assess the application based on the sound of the name. It's not a common way to review applications, but I'm sure it has some merit.
    FWIW it has been recommended on this - and other - sites for many years and has proven safe and effective.
    Regards
    TD

  • TS2446 I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated

    I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated?  TY

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your phone/iPad then try logging out of your account on the phone/iPad by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this.

    I have a lot of various book mark folders with websites contained within each folder. I am able to sort the websites within each folder alphabetically by name but I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this other than manually dragging them as this is extremely hard for me due to the fact that I am a quadriplegic with limited hand movement dexterity

    Bookmark folders that you created are in the Bookmarks Menu folder. "Sort" that folder.
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

Maybe you are looking for

  • How to reload class or redifince class in spring

    hi buddy. i have a problem when load beans in spring <bean id="load" class="com.example.Load" init-method="init"></bean> <bean id="work" class= "com.example.Work" depends-on="load"></bean>the Load#init will use ASM to write the byteCode to the Work.c

  • Windows 8 Freezes after last "Lenovo Settings Update" anytime the pointer goes to a corner

    After the most recent "Lenovo Settings Update", my Windows 8 freezes for a few minutes (minimum of two) anytime the pointer hits one of the hot corners.  The system also freezes for a couple of minutes or less when certain apps are started or the mou

  • Bi server is not running obiee 11.1.1.5.0

    Hi I installed Obiee11.1.1.5.0 it is working fine with sample rpd but i am uploading new rpd i am getting this below error This is what the log file shows. I have verified the password in the Admin tool. Is there anything else I need to change ? [201

  • Help with accessing hidden items in Apex collections using  4.0.2.00.06

    Hello experts, I have the following code in my on load before header process declare l_sent_rec individual_original_pkg.case_rec_typ; begin individual_original_pkg.case_header(p_sent_id=>:P1_SENT_ID,l_case_rec=>l_sent_rec); :P2_DISPOSITIONS          

  • SQL*Loader Named Pipe Load Thread goes to 0

    Hi, Running SQL*Loader 10.2.0.1.0 on XP pro against 10g EE 10.2.0.2.0 Production, RAC. Control file: OPTIONS ( MULTITHREADING=TRUE, DIRECT=TRUE, ROWS=5000000, COLUMNARRAYROWS = 200000 ) UNRECOVERABLE LOAD DATA --INFILE 'C:\Program Files\Delta Data So