How to convert photo to cartoon

Wasn't sure where to post this but I am interested in converting a photo to a cartoon. I see multiple applications for windows but nothing for mac.
Thanks in advance.

As Larry said PSE can do a lot. It has about 75% of Photoshop's capabilities at about 20% of the cost (Amazon.com often has discounts on it). It's quite possible one of the filters could posterize or otherwise modify a photo (reduce it to fewer colors) making it somewhat what you want. Here are some of the things you can do with it: Selective colorization, Adding text and watermarking and Removing unwanted background.
The following may be of some interest to you:
Using Photoshop (or Photoshop Elements) as Your Editor of Choice in iPhoto.
1 - select Photoshop as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
NOTE: With Photoshop Elements 6 the Saving File preferences should be configured: "On First Save: Save Over Current File". Also I suggest the Maximize PSD File Compatabilty be set to Always.
If you want to use both iPhoto's editing mode and PS without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in main window". That will let you either edit in iPhoto (double click on the thumbnail) or in PS (Control-click on the thumbnail and seledt "Edit in external editor" in the Contextual menu). This way you get the best of both worlds
2 - double click on the thumbnail in iPhoto to open it in Photoshop. When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
3 - however, if you get the navigation window that indicates that PS wants to save it as a PS formatted file. You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
OT

Similar Messages

  • How to convert photo shop docs to .pdf

    I accidently used photo shop to opened a .pdf file and now all of my .pdf file have to be imported to photo shop to open and I am not able to get all the pages.  How am I able to correct this problem and use Adobe Acrobat to open the .pdf file?

    You need to re-stet the file association, which is done differently in Macintosh and in Windows.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Album: how to convert burst photos to normal ones?

    How to convert burst photos to normal ones?

    Got it.This is how you do it.You can only later select other picture if you want.You cannot save them all.After you take a picture,go to the album and tap on the icon for timeshift,it will take you back to select which one you like.
    All we have to decide is what to do with the time that is given to us - J.R.R. Tolkien

  • How to convert JPG image to BMP ? (Printing jpg images in smartforms from content server)

    Hi,
    We have employee photos(JPG Format) stored in Content server. And now we want to print the photos in smartforms. For this I had written the below code to read the photo from content server in binary format as below.
    REPORT ZTEST1.
    PARAMETERS P_PERNR TYPE PERNR_D.
    DATA: PS_CONNECT_INFO TYPE TOAV0,
          IT_BINARY TYPE TABLE OF SDOKCNTBIN.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = P_PERNR
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
    *   P_EXISTS                    =
       P_CONNECT_INFO              = PS_CONNECT_INFO
    * EXCEPTIONS
    * ERROR_CONNECTIONTABLE       = 1
    *   OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF PS_CONNECT_INFO IS NOT INITIAL.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
       STOR_CAT                    = SPACE
       CREP_ID                     = PS_CONNECT_INFO-ARCHIV_ID
          DOC_ID                      = PS_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                     =
    *   SIGNATURE                   = 'X'
    *   SECURITY                    = ' '
    *   NO_CACHE                    = ' '
    *   RAW_MODE                    = ' '
    * IMPORTING
    *   FROM_CACHE                  =
    *   CREA_TIME                   =
    *   CREA_DATE                   =
    *   CHNG_TIME                   =
    *   CHNG_DATE                   =
    *   STATUS                      =
    *   DOC_PROT                    =
    TABLES
    *   ACCESS_INFO                 =
    *   CONTENT_TXT                 =
       CONTENT_BIN                 = IT_BINARY
    * EXCEPTIONS
    * BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    * COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    * INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    * ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    * ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    ENDIF
    Now the issue is I want to convert that binary data to bitmap image and upload the same in to SE78. So that I can use that BMP image from SE78 in my smartforms.
    I had used the class CL_IGS_IMAGE_CONVERTER to covert the image into bmp but it is giving error that error in IMAGE DATA CORRUPT & Error Code 3. The conversion code used is as below.
    ******* CONVERT THE JPG IMAGE INTO BMP PHOTO. **********
      DATA: L_IGS_IMGCONV TYPE REF TO CL_IGS_IMAGE_CONVERTER,
    L_IMG_BLOB    TYPE W3MIMETABTYPE,
    L_IMG_SIZE    TYPE W3PARAM-CONT_LEN,
    L_IMG_TYPE    TYPE W3PARAM-CONT_TYPE,
             L_IMG_SUBTYPE TYPE W3PARAM-CONT_TYPE,
    L_IMG_URL     TYPE W3URL,
    L_ERR_CODE    TYPE I,
    L_ERR_TEXT    TYPE STRING,
             P_DEST TYPE CHAR32 VALUE 'IGS_RFC_DEST'.
      DATA: G_IMG_BLOB     TYPE W3MIMETABTYPE,
          G_IMG_TYPE     TYPE W3PARAM-CONT_TYPE,
          G_IMG_SIZE     TYPE W3PARAM-CONT_LEN.
      IF NOT IT_BINARY[] IS INITIAL.
        G_IMG_BLOB[] = IT_BINARY.
        CREATE OBJECT L_IGS_IMGCONV
          EXPORTING
            DESTINATION = P_DEST.
        CALL METHOD L_IGS_IMGCONV->SET_IMAGE
          EXPORTING
            BLOB      = G_IMG_BLOB
            BLOB_SIZE = G_IMG_SIZE.
        CASE PS_CONNECT_INFO-RESERVE.
          WHEN 'TIF'.
            G_IMG_TYPE = 'image/tiff'.
          WHEN 'JPG'.
            G_IMG_TYPE = 'image/jpeg'.
          WHEN 'PNG'.
            G_IMG_TYPE = 'image/png'.
          WHEN 'GIF'.
            G_IMG_TYPE = 'image/gif'.
          WHEN 'BMP'.
            G_IMG_TYPE = 'image/x-ms-bmp'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
    L_IGS_IMGCONV->INPUT  = G_IMG_TYPE.
        L_IGS_IMGCONV->OUTPUT = 'image/x-ms-bmp'.
    *    PERFORM GET_SIZE USING PICTURE_CONTAINER
    * L_IGS_IMGCONV->WIDTH
    * L_IGS_IMGCONV->HEIGHT.
        CALL METHOD L_IGS_IMGCONV->EXECUTE
          EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC IS INITIAL.
          CALL METHOD L_IGS_IMGCONV->GET_IMAGE
            IMPORTING
              BLOB      = L_IMG_BLOB
              BLOB_SIZE = L_IMG_SIZE
              BLOB_TYPE = L_IMG_TYPE.
          SPLIT L_IMG_TYPE AT '/' INTO L_IMG_TYPE L_IMG_SUBTYPE.
        ELSE.
          CALL METHOD L_IGS_IMGCONV->GET_ERROR
            IMPORTING
              NUMBER  = L_ERR_CODE
              MESSAGE = L_ERR_TEXT.
          BREAK-POINT.
        ENDIF.
      ENDIF.
    ENDIF.
    So could you please some one help me how to convert JPEG Photo to BMP programatically.
    Regards,
    Mayur.

    johnandersonpalmdesert wrote:
    My printer is requesting a vector file.
    Jpeg File format does not support vectors.  Photoshop has limited vector support and tools.  Photoshop can not save vector file formats like SVG.  What File type does your printer want?
    Adobe Illustrator is Adobe vector application.

  • Convert photo to line art?

    Dear Forum,
    I am trialing Elements and Illustrator but cannot find a solution in help or the forums, or any book at Borders, so I hope someone can help.  I am looking for a way to convert photos (JPEGS) of flowers to black line art......like a coloring book, not just black and white or grayscale or sylhouette. I will then print out the line art (1-2 pixel black line art) to clear acetate for use as a positive original for creating a silkscreen via photo emulsion exposure (and then silkscreen printing the line art to fabric for hand painting). I am doing this by hand now.....place a sheet of acetate over the photo and outlining "edges" by eye with a fine Sharpie, then using that as the positive original. See attached file for an example. The line art needs to be relatively detailed ( e.g. petals, stamen, leaves) but not absolutely perfect as I only need to print guide lines on fabric for subsequent hand painting. It seems easy to do by "eye", tracing edges of color or tone change, but I have not figured out how to make that happen in Elements or Illustrator. Of course I have only had the trial for a couple days, and have used live trace, posterization, etc, but have not been lucky. Please point me in the right direction. If I can make this happen with an Adobe product, then I will buy it.....I have hundreds of photos to convert. Thanks.....Bob

    If you use Threshold, you can add some gaussian blur to the image to make the edges smoother. You can also add a brightness/contrast adjustment layer between the blurred image and the threshold layer to fine tune the edges.
    If you have Windows, you might want to look at Medhi's Fine Threshold filter (freeware) found here:
    http://www.mehdiplugins.com/english/finethreshold.htm
    Edit: You could also use Find Edges on the image first; desaturate it; then use a threshold adjustment layer. Go back to the Find Edges layer and add gaussian blur to taste. To further fine tune, slip a brightness/contrast layer between the blurred image and the threshold to control line thickness/detail. (FWIW, I would make a copy of the Find Edges layer and blur the duplicate so if you change your mind you don't have to start the project from scratch.)

  • How to scan photos in jpg in windows 8 instead of pdf

    I had Windows Vista with photo gallery. Now i have Windows 8 with no photo gallery, but photos in a different format(they say photo gallery is not compatible with windows 8). I used to scan pictures and documents and they were saved in jpg. Now they are saved in pdf and cannot be saved to jpg. Also have cannon printer MG2220. I started to download something, then decided to delete it when it said it wanted to change the hard drive somehow...
    Any ideas how to convert the pdfs to jpgs or to reset the thing somehow? Stuff I have read on here is for Windows 7 or XP with photo gallery (which I don't have..or at least I don't think that is the name of it..). donna

    Hello,
    Thank you for posting in the HP Support Forum.
    What you request is actually possible no matter what Windows OS you use (re. new and supported Windows versions).
    Please, check this HP article and HP videos how to perform this task in Windows 8 (choose How to scan without HP software)
    http://support.hp.com/us-en/document/c03511921
    Supported file types
    .bmp - Bitmap Image File
    .jpg - JPG Image File
    .tif - Tagged Image File
    .png - Portable Network Graphics File
    Please, report back if this was helpful for you. Do not hesitate to post again !
    Best wishes,
    IT_WinSec
    Hewlett-Packard employee | HP Enterprise Services
    Although I work for HP, I express my personal opinion.
    Visit www.hp.com/makeitmatter
    --Say "Thanks" by clicking the Kudos Thumb Up in the post that you find useful.
    --Please mark the post that solves your problem as "Accepted Solution"

  • How to convert chinese letlers received from a device to understandable information?

    Hello,
    I would like to read from a sound level meter, I'm using VISA functions, but when I run the VI at first the information received is in chinese and I didn't find how to convert it so as to be able to read an understandable data.
    What can I do to read properly the data sent by the sound level meter?
    Here is a photo of the problem and the VI I conceived.
    Thank you in advance for your help.
    Pièces jointes :
    communication série RS232 avec le sonomètre.vi ‏33 KB

    Hello Yasmine,
    Thank you for posting.
    Can you post a photo of the issue. Have you tried to change the language of your instrument ?
    Regards,
    Isabelle G.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Été de LabVIEW 2014
    12 présentations en ligne, du 30 juin au 18 juillet

  • How to convert mime file to JPG

    Can anyone tell me how to convert mime-attachments to JPG files?
    Photos that I take on my cell phone and that I send to my e-mail address show as photos when I receive them but the file is converted from a JPG file (in the phone) to a mime-attachment when it arrives in Mail. If I forward the e-mail from my Mac to another e-mail address, the recipients can't open the attachment so they can't see the photo. I can't convert the file to JPG again because no programs I have seem to recognize the mime-attachment file and none will open it.
    Help! Thanks.

    I think I answered my own question. After checking out several sites with various information about MIME attachments, I added .jpg to the file and it opened. Soon I should find out if the newly renamed file can be read in the e-mails I send.

  • How to convert RAW files to JPEG?

    I have a bunch of raw files and I am not sure how to convert them to JPEG.  I sure would appreciate some help with this.  Thank you

    As you are posting on the Canon forum, I will assume you are using a Canon camera.  Your camera came with the software you need.  It's called Digital Photo Professional.  It will also have the user manual for the software.

  • How to convert RAW images to JPG in Imagebrowser EX 1.4.0.5

    I installed ImagBrowser EX so I can view my raw images.  It works fine for viewing but I can't find how to convert them to raw images.  The manual and help file says to go to Edit > Process RAW Images but when I go to the edit menu, there is no such option.  There is only Correct red-eye, auto correct, adjust color and brightness, increase sharpness, crop imae, insert text, edit movies and extract multiple images from movie
    Help?

    You need to install Canon Digital Photo Professional from the camera-supplied CD.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • Converting photos in raw converter

    How come some photos will convert into raw converter and others won't
    canon 3

    See that faq:
    http://forums.adobe.com/thread/1030798?tstart=0

  • How to transfer photos and videos from my PC to my iPhone4

    how to transfer photos and videos from my PC to my iPhone4

    Via iTunes syncing, use Handbrake to convert.

  • How to convert Comparable to Generics

    Hi,
    There is a universal comperator.
    It is used e.g. in a generic solution for sorting a JTableField.
    If the first argument implements the Comparable interface
    that implementation should be used.
    If not the string representaion of the two arguments should be compared.
    new Comparator() {
    public compare( Object o1, Object o2 ) {
    if( o1 implements Comparable ) {
    return ((Comparable) o1).compareTo( o2 );
    return o1.toString().compareTo( o2.toString() );
    public boolean equals( Object o ) {
    return this == o;
    If I compile it with Java 5 there are warnings (unchecked/unsafe calls).
    I don't know how to convert that code to use Generics,
    so that there are no compiler warnings.
    Because that comparator should compare all kinds of objects,
    the code must be similiar to:
    new Comparator<Object>() {
    public compare( Object o1, Object o2 ) {
    if( o1 implements Comparable<Type of o2> ) {
    return ((Comparable<Type of o2>) o1).compareTo( (<Type of o2>) o2 );
    return o1.toString().compareTo( o2.toString() );
    public boolean equals( Object o ) {
    return this == o;
    I know, the compiler does not accept this code.
    What is the right syntax?
    Jens

    As of August 2012, visitors to MobileMe.com are no longer given the option to convert their accounts to iCloud or to retrieve old photos and files, with Apple now simply pointing users to iCloud.
    http://www.macrumors.com/2012/08/01/apple-officially-ends-mobileme-transition-an d-shuts-down-iwork-com/
    And this discussion from February 2012:
    https://discussions.apple.com/message/17687380#17687380
    ENTERING iCLOUD MAIL SERVER SETTINGS IN SNOW LEOPARD OR LEOPARD
    http://www.wilmut.webspace.virginmedia.com/notes/icloudmail.html

  • How to convert wbz to jpg

    Hi-Does anyone know how to convert wbz webshots photos to jpg or something iPhoto can view?
    Thanks

    http://holocore.com/?Webshots
    Google is your friend
    Regards
    TD

  • How to name photos

    Hello
    I'm unsure how to name photos in Lightroom (ie: the best general way, and also for search engine optimisation). I currently name as follows:
    name_date_location_photo number.dng, so for example:
    roykaye_141112_landscape_photo-1.dng
    So there are various questions here:
    Should I capitalise the first letters of my first and last names, and should there be a space between first and last names (and should this be an underscore or just a space)
    Should I use underscores or hyphens or just spaces
    Do I need an underscore (or hyphen/space) between location name words
    I've read that I should not use underscores anymore? - I've searched on google but can't find a definitive answer (if there is one?)
    I've just set up a website, so am unsure when exporting a jpg for use on the site whether it matters if I use use the same name with jpg suffix or if I should use a different renaming
    system for my website
    I'd appreciate any advice
    Thank you
    Roy Kaye

    I dunno how much search engines parse filenames versus reading metadata.
    But since you asked:
    * I prefer mixed case, without spaces, e.g. RoyKaye. That way, nobody has to try and figure out whether they're from R.O. Yakaye, or R. OyKaye, or Royka Ye .. - I realize lower case is in fashion, no-doubt due to the many iPhone-like devices that make it an extra bother to use mixed case, but that doesn't make it good.
    Spaces are good for readability, but wreak havoc when you are using command-line tools, or in URLs..
    The other word of advice: make all filenames unique, so you could export your whole catalog into a single folder and never have a naming conflict. Not that you would, but if you send an email to someone they can give you the filename back which will allow you to unambiguously locate..
    FWIW - my naming convention:
    {date}{photog-id}{time}{camera-id}{orig.image-num}.{ext}
    for example:
    20141031RC070102NB1234.NEF
    is the filename for shot:
    * taken 2014-10-31
    * by me (RC)
    * at 7:01:02 am
    * with my 2nd Nikon (NB)
    * original image number 1234 (original filename _DSC1234.NEF).
    * NEF (file format)
    Pros:
    * If all photos exported to same folder, without renaming, there would be no naming conflict, and alphabetic order would be just the order I want (even if shoot includes photos from another photographer, or a second camera..).
    * filename is informative, but not dependent on anything that could ever change.
    * I can trace filename back to original on card, in case I need to do card recovery.
    * Filename components are uniform in length, which means things line up when viewed in a list.
    * No spaces, and alpha-numeric only, means filename is always the same even in a URL, and never needs escaping or quote-wrapping..
    Cons:
    * Long (I considered variations with delimiters, but opted for short(er) n' smushed..).
    * Difficult to read, and I may be the only one who knows what all the components represent (e.g. 'NB').
    PS - I usually don't rename upon export, other than maybe adding a suffix, e.g. "shrunken-for-email", but you can also have 2 or more different filenaming conventions:
    1. Source filenames (which may have no objective other than uniqueness, and yeah: I know - some people don't even care if they're unique, but I do).
    2. Exported filenames (which can include all info required to uniquely identify the photo - in case of feedback in the future.., plus more user friendly stuff, like genre, photographer's name, shoot-affiliation, etc.
    PPS - I use the convention: upper case extension for out-of-camera originals (which would include DNG if I converted out-of-camera-originals), and lower case for derivatives.
    Cheers,
    Rob

Maybe you are looking for

  • Cannot type in invitees in ical event.

    Hello, I am facing a problem in adding invitees when creating an ical event I cannot type an address that is not stored in my address book. Is there any way to help please? Thank you

  • Microsoft word - themes

    working with the word trying some projects, when open toolbox, and Document theme there is only one....Is there some way that I can save more to be able to choose when I am working? Also I found some folder Media, there is many of templates, but when

  • How to Prepare for Leopard?

    I finally got Leopard. What should I do to prepare for installing it on my iMac G5? I have 37 gigabytes of space left on my hard drive and one gigabyte of RAM. I understand that the Classic support is no longer available in Leopard. How can I identif

  • Exposure Changing During Upload?

    First, I'm new to Aperture and so this may be how it was designed. Every time I upload RAW images to Aperture 3.2, it darkens them during the processing that occurs directly after the import is finished. I can actually see all the pictures darkening

  • Silly Question needs answering asap!!!

    How do i make bootable back up of my Mac HD, i want install 10.4.6 but been hearing of so much problems i wanna make back up first. Also once i've made this back up how do i get it to run as main Mac HD if i have problems with original HD, would be m