How to convert jpg to pat for patterns?

I just downloaded some patterns but they are all jpg and I need to convert them to pat. can anyone help? I have pse 10

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.

Similar Messages

  • How to convert JPG files to PDF

    Suggestions on how to convert JPG files to PDF using Adobe?

    You would either need the PDF Pack service, or Adobe Acrobat or Photoshop.

  • How to Convert spool which is for smartform output  to PDF?

    how to Convert spool which is for smartform output  to PDF?
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF' is not working for smartform output,
    if i use this there will be error spool not contain list output?
    than whats the function module or way to convert spool contain smartform output to pdg?
    regards,

    <b>Procedure</b>
         When we activate the Smartform the system generates a Function Module. The function module name we can get from Smartfrom screen from menubar
    “Environment => Function Module_Name” . In a report we can get this Function module name by calling a Function Module standard SSF_FUNCTION_MODULE_NAME. This function module  at runtime calls the FM generated by smartform, which in turn is then used to pass data from the report to Smartform. In the report given below the FM generated is “ /1BCDWB/SF00000152 ”. In this FM we can see CONTROL_PARAMETERS in import tab. This is of type SSFCTRLOP. We need to set the GETOTF of this to be ‘X’. Setting this field will activate the OTF field in smartform.
    In export tab of the FM generated by smartform we can see a parameter JOB_OUTPUT_INFO which is of type SSFCRESCL. The SSFCRESCL is a structure of having one of fields as OTFDATA. OTFDATA in turn is a table of type ITCOO. ITCOO has two fields TDPRINTCOM and TDPRINTPAR. TDPRINTCOM  represents command line of OTF format data and TDPRINTPAR contains command parameters of OTF format data.
    In every Smartform output in OTF format, TDPRINTCOM begins and ends with ‘//’. ‘EP’ represents the end-of-page value for TDPRINTCOM field.
    In addition we need to set few fields at the place where we call this FM(generated by smartform) in our program. While calling this FM we should set control_parameters, output_options, user_settings and job_putput_info fields as shown in program.
    Once these settings are done we can call Function Module CONVERT_OTF to convert the OTF data of smartfrom output to PDF data format. Once these are done we can call method “cl_gui_fronted_services=>file_save_dialog” to specify the directory path where we want to save the output PDF file. After this we can call Function Module GUI_DOWNLOAD to download the PDF file on our local system.
    <b>Here is a sample code of program to perform the function.</b>
    SAMPLE CODE
    [code]*&---------------------------------------------------------------------*
    *& Report  ZAMIT_SMART_FORM_PDF                                        *
    REPORT  ZAMIT_SMART_FORM_PDF                    .
    data: carr_id type sbook-carrid,
          cparam type ssfctrlop,
          outop type ssfcompop,
          fm_name type rs38l_fnam.
    DATA: tab_otf_data TYPE ssfcrescl,
          pdf_tab LIKE tline OCCURS 0 WITH HEADER LINE,
          tab_otf_final TYPE itcoo OCCURS 0 WITH HEADER LINE,
          file_size TYPE i,
          bin_filesize TYPE i,
          FILE_NAME type string,
          File_path type string,
          FULL_PATH type string.
    parameter:      p_custid type scustom-id default 1.
    select-options: s_carrid for carr_id     default 'LH' to 'LH'.
    parameter:      p_form   type tdsfname   default 'ZAMIT_SMART_FORM'.
    data: customer    type scustom,
          bookings    type ty_bookings,
          connections type ty_connections.
    start-of-selection.
    ***************** suppressing the dialog box for print preview****************************
    outop-tddest = 'LP01'.
    cparam-no_dialog = 'X'.
    cparam-preview = SPACE.
    cparam-getotf = 'X'.
      select single * from scustom into customer where id = p_custid.
      check sy-subrc = 0.
      select * from sbook   into table bookings
               where customid = p_custid
               and   carrid in s_carrid
               order by primary key.
      select * from spfli into table connections
               for all entries in bookings
               where carrid = bookings-carrid
               and   connid = bookings-connid
               order by primary key.
      call function 'SSF_FUNCTION_MODULE_NAME'
           exporting  formname           = p_form
    *                 variant            = ' '
    *                 direct_call        = ' '
           importing  fm_name            = fm_name
           exceptions no_form            = 1
                      no_function_module = 2
                      others             = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        exit.
      endif.
    * calling the generated function module
      call function fm_name
           exporting
    *                 archive_index        =
    *                 archive_parameters   =
                     control_parameters   = cparam
    *                 mail_appl_obj        =
    *                 mail_recipient       =
    *                 mail_sender          =
                     output_options       =  outop
                     user_settings        = SPACE
                     bookings             = bookings
                      customer             = customer
                      connections          = connections
          importing
    *                 document_output_info =
                     job_output_info      = tab_otf_data
    *                 job_output_options   =
           exceptions formatting_error     = 1
                      internal_error       = 2
                      send_error           = 3
                      user_canceled        = 4
                      others               = 5.
      if sy-subrc <> 0.
    *   error handling
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      tab_otf_final[] = tab_otf_data-otfdata[].
      CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       format                      = 'PDF'
       max_linewidth               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    IMPORTING
       bin_filesize                = bin_filesize
    *   BIN_FILE                    =
      TABLES
        otf                         = tab_otf_final
        lines                       = pdf_tab
    EXCEPTIONS
       err_max_linewidth           = 1
       err_format                  = 2
       err_conv_not_possible       = 3
       err_bad_otf                 = 4
       OTHERS                      = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD cl_gui_frontend_services=>file_save_dialog
    *  EXPORTING
    *    WINDOW_TITLE         =
    *    DEFAULT_EXTENSION    =
    *    DEFAULT_FILE_NAME    =
    *    FILE_FILTER          =
    *    INITIAL_DIRECTORY    =
    *    WITH_ENCODING        =
    *    PROMPT_ON_OVERWRITE  = 'X'
      CHANGING
        filename             = FILE_NAME
        path                 = FILE_PATH
        fullpath             = FULL_PATH
    *    USER_ACTION          =
    *    FILE_ENCODING        =
    *  EXCEPTIONS
    *    CNTL_ERROR           = 1
    *    ERROR_NO_GUI         = 2
    *    NOT_SUPPORTED_BY_GUI = 3
    *    others               = 4
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *************downloading the converted PDF data to your local PC********
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       bin_filesize                    = bin_filesize
       filename                        = FULL_PATH
       filetype                        = 'BIN'
    *   APPEND                          = ' '
    *   WRITE_FIELD_SEPARATOR           = ' '
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    IMPORTING
       filelength                      = file_size
      TABLES
        data_tab                        = pdf_tab
    *   FIELDNAMES                      =
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22
    IF sy-subrc <> 0.
    ENDIF.
    [/code]
    Thanks and Regards,
    Pavankumar

  • How to convert jpg to wbmp?

    Please!!!
    I need someone to teach(or tell) me how to convert jpg to wbmp!
    Any help will be great!
    I tried to find on web, but nothing...
    Thanks!
    Thales

    I've never used wbmp format before, but here is a demo that I got to work:
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class WBMPTest {
        public static void main(String[] args) throws IOException {
            URL url = new URL("http://today.java.net/jag/Image24-large.jpeg");
            BufferedImage source = ImageIO.read(url);
            BufferedImage bandw = convert(source, BufferedImage.TYPE_BYTE_BINARY);
            File file = new File("temp.wbmp");
            writeWBMP(bandw, file);
            //writeWBMP(source, file);//Only integral single-band bilevel image is supported
            BufferedImage fromFile = ImageIO.read(file);
            if (fromFile == null){
                System.err.println("read fails");
                System.exit(-1);
            JPanel cp = new JPanel(new GridLayout(0,1));
            addToPanel(cp, source, "original");
            addToPanel(cp, bandw, "black and white");
            addToPanel(cp, fromFile, "temp.wbmp");
            JFrame f = new JFrame("WBMPTest");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(cp));
            f.setSize(850, 600);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        public static BufferedImage convert(BufferedImage source, int type) {
            int w = source.getWidth(), h = source.getHeight();
            BufferedImage image = new BufferedImage(w, h, type);
            Graphics2D g = image.createGraphics();
            g.drawRenderedImage(source, null);
            g.dispose();
            return image;
        static void writeWBMP(BufferedImage image, File file) throws IOException {
            Iterator writers = ImageIO.getImageWritersBySuffix("wbmp");
            if (!writers.hasNext()) {
                System.err.println("no wbmp writers");
                System.exit(-1);
            ImageWriter writer = (ImageWriter) writers.next();
            writer.setOutput(ImageIO.createImageOutputStream(file));
            writer.write(image);
        static void addToPanel(JPanel cp, BufferedImage image, String title) {
            JLabel label = new JLabel(new ImageIcon(image));
            JPanel labelPanel = new JPanel(new GridLayout(1,1));
            labelPanel.setBorder(BorderFactory.createTitledBorder(title));
            labelPanel.add(label);
            cp.add(labelPanel);
    }The image sample format that succeeds is black-and-white (not greyscale -- each pixel is
    either black or white, not a shade of grey). When I write to switch the image that was written
    out to the colored version, I got the the commented error:
    Only integral single-band bilevel image is supported
    I don't know what color models WBMP supports, but that's not much to sing about!
    You should find out if this limitation is in the wbmp image writer or in the wbmp format itself.

  • 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.

  • How to convert jpeg to pdf for free?

    How to convert jpeg file to pdf file for free?

    You can also Download Acrobat XI Trial from the below link and Install it and use it for 30 days ....
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=acrobat_pro&loc=us

  • How to convert mp3 CD audiobook for ipod?

    I use Audiobook Builder to convert Auciobook CDs to an ipod-compatible bookmarkable format, and the program handles all of the steps transparently.  in iTune 10, how can I make this same conversion from an mp3 audiobook CD into iTunes?  I tried following the instructions for this from an earlier post on this discussion group, but have run into a problem.  When I select all of the MPEG audiofiles from the mp3 CD and instruct iTunes via the Advanced Menu to "Create AAC Version", iTunes says that it is converting the files track by track.  BUT, when it is done, I still have only MPEG audio files showing, no AAC converted files.  Thanks for any suggesions.

    Thank you for your posting, which is very helpful, however it will be better if you can post on the Video forum as well
    http://discussions.apple.com/forum.jspa?forumID=807
    By the way, I must say that it is a very good post

  • How to convert mp4 videos (HD) for use on the new ipad in imovie without a mac.

    Hi,
    Please help. I have many videos taken with my sony cybershot camera (Mpv4 (HD)). I have the new ipad and have downloaded imovie. I have converted the videos so they can be viewed on the ipad but imovie will not recognize them. I have a Pc (not a Mac) and have watched many youtube tutorials on how to convert my videos for use on the new ipad and imovie but so far no success.

    If you are on the PC there are a LOT of video converters you can use. One of them is Freemake: http://www.freemake.com/
    It's free, no ads or banners, clean interface, simple to use, and you can convert to various formats with ease.

  • How to convert existing Flex project for iPhone?

    Hi guys, I have a serious problem here with creating iPhone apps in Flash. I have created an app for the iPhone completely using Flex components long before CS5 came out. I've been looking for tutorials but with no luck. My issue is that I am not very sure how to convert the app to be used on iPhone.
    As I've read the forums, some of you suggested compiling using command line. I guess that would be awesome. However, would it work if I'm using Flex framework? I've already tried to import my .SWF in Flash using loader.load() and add the mx.* component using addChild(VideoExample) I need just some solution that would save me days of searching and rewriting code, but any solution will be good. I have started a similar thread in Flash but if I get any answers here I will delete it.
    Please respond, help would be very much appreciated!
    Here's my mxml wrapper, from which I start the main application:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="EntryPoint.main()">
    </mx:Application>
    Then I have a class which creates the main container:
    package {
    import mx.core.*;
    public class EntryPoint {
        public static function main():void {
            var client:VideoExample = new VideoExample();
            var mxmlApp:Application = Application(Application.application);
            mxmlApp.addChild(client);
    Here is the main class VideoExample:
    package {
    import mx.controls.*;
    import mx.containers.*;
    public class VideoExample extends Canvas {
        public function VideoExample() {
            super();
            init();
            private function init():void {
            loadImage();
            loadText();
                    loadDisplay();
                    startConnection();

    I'm so sorry, I'm not really familiar with the codes.

  • How to convert these java codes (for a feedback) to javabean?

    Can anyone please help me to convert these java codes (for feedback) to javabean using the MVC Model-View-Controller pattern design?
    <%
    //instantiate variables
    Connection con = null;
    Statement stmt = null;
    Statement stmt2 = null;
    ResultSet rs = null;
    String queryString;
    int newInBoxMsg = 0;
    int newSentMsg = 0;
    int newSavedMsg = 0;
    int newTrashCanMsg = 0;
    String currentUserID = 1+"";
    String adminID = 1+""; //change this ID to your adminID in the db
    try
    //Load the JDBC driver
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    //Get the connection getConnection("access driver", "userID", "password")
    con = DriverManager.getConnection("jdbc:odbc:FREN_DB","","");
    stmt = con.createStatement();
    //sql statements: create, update, query
    Calendar cl = Calendar.getInstance();
    %>
    <%
    if(request.getMethod()=="POST"){
                   int y = stmt.executeUpdate("INSERT into Feedback(`whom`, `msg`, `date`)"
                   +" values ('"+currentUserID+"', '"+request.getParameter("date")+"', '"
                   request.getParameter("msg")"')");
                   int x = stmt.executeUpdate("INSERT into MailBox(`whom`, `who`, `mailheader`, `mailbody`, `date`)"
                   +" values ('"+adminID+"', '"+currentUserID+"', 'Feedback', 'We have received your feedback and we will respond to you as soon as possible', '"+request.getParameter("date")+"')");
                   out.println("Feedback Sent!");
    else {
    %>
    <form name="compose" method="POST" action="Feedback.jsp">
    <input name="date" type="hidden" value="<% out.println(cl.get(cl.DAY_OF_MONTH)+"/"+cl.get(cl.MONTH)+"/"+cl.get(cl.YEAR)); %>" maxlength="20">
    <p>Your Feedback</p>
    <p>
    <textarea name="msg" cols="50" rows="10"></textarea>
    </p>
    <p>
    <input type="submit" name="Submit" value="Submit">
    </p>
    </form>
    <%
    }catch(Exception e) {
    System.out.println(e);
    %>

    Okay, first suggestion is to never create database connections in JSP/Servlet. SInce you mentioned MVC, JSP is the View, and a servlet can be the controller to process requests and redirect accordingly.
    This piece of code should be in a class invoked from the model layer (business logic components) preferably with some abstraction. Maybe you should search around for DAO pattern. That might give you an idea.

  • How to convert movies to itunes for my itouch4g

    pls help i dnt know how to convert my movies so that i can pu it to my itouch4g

    Download the app vlc media player from the app store. Its free. All you have to do is drag and drop it into the app via itunes and itll convert it for you. Then just go into the app on the ipod and watch.

  • How to convert MP4 to MP3 for export

    I want to convert an MP4 file in my iTunes library to MP3 for export via email. I know how to convert a CD on import by the preferences settings. And I know I can burn an MP3 CD. I just want to take a simgle MP4 file in my library, and convert it to MP3 in order to share with someone who can't read MP4.

    Ah so that's how it works.
    I understand now. Thanks.
    ~iBook G4 1.07GHz (Kaiya), with extra 256MB RAM ~and a red Apple logo~(Mac OS X 10.3.9)~ LaCie 160GB external hard drive~ ~3G 15GB iPod (Nakai)~ ~GiveStarsto users who earn them.~

  • HELP! Convert JPG to CMYK for print on Epson Stylus Pro 4880 problems

    Hello all!
    I need to print a JPG file to an Epson Stylus Pro 4880 printer and keep the original colors. The JPG file is of a company logo containging text/graphic. I use CS5 to convert the file to CMYK and save it as an Adobe PDF. When I print it everything looks good but there is a reddish outline around everything. Anyone have an idea how I can get rid of the outline? I am using the US Coated (SWOP) v2 for the CMYK scheme.
    Help! I need to print out some logo tags for the customer.
    Thanks in advance, Your assistance will be greatly appreciated.

    wish I could help but I am Mac and Essentials is not in my work flow!

  • How to convert video and dvd for iPod

    1. Download, install and run PQ DVD to iPod Video Converter. It can convert from DVD, Tivo, DivX, MPEG, WMV, AVI, RealMedia and many more to iPod Video.
    (PQ DVD to iPod Video Converter Download)
    2. Click "Open ..." button and choose a video file or DVD disc to open. Wait for the movie to start playing in the preview window.
    3. Based on the aspect ration of the video source PQ DVD to iPod Video Converter will choose the best resolution for the output iPod video. Nevertheless you can select a resolution of your choice to stretch/squash the picture. Alternatively, you can choose a Crop Mode to cut unimportant parts of the video (like top/bottom black bars or subtitles).
    You can also adjust the desired quality to reduce the output size of the movie.
    In the preview window you will see what the resulting movie will look like.
    When you have set the desired settings simple click on the "Record it" button to convert the video/DVD.
    Depending on the settings a 60 minutes video is converted on average for 15 minutes.
    4. When the process finishes you can test the recorded video file on your PC using QuickTime to see if it works well.
    Then launch iTunes, add the recorded file into the library and update iPod (under iTunes' File menu). And have a nice time!
    Additional Settings
    1. Video Settings
    Video Frame Rate
    Known as Frame Per Second (FPS). It refers to the number of pictures displayed in 1 second in order to form continuous motions. The default frame rate is 15 fps. You may choose 24fps to get more continuos motions.
    When selecting higher fps, increase the movie quality and size a little. This is because more frames need some amount of additional motion data to be stored.
    Brightness Level
    Increase the level to make video appear brighter on your iPod screen. The default is level 0 (No brightness change from the original video).
    2. Audio Options
    Audio Quality
    There are 6 audio quality modes to choose: 32kbps Mono, 48kbps Mono, 48Kbps Stereo, 64Kbps Stereo, 96Kbps Stereo, 128Kbps Stereo.
    Audio Bitrate (in Kbits per second)
    Audio bitrate refers to how many data storage is allocated to store audio signals. The higher audio
    bitrate, the better audio quality.
    Audio Volume
    You can change output audio volume in "Output Settings" dialog. The default volume level is 5 (original volume).
    Stereo to Mono
    When the output audio is set to Mono, you can choose which stereo channel (of input source) to be copied into the Mono channel (output). It is useful for some video sources (e.g. VCD) which use the left, right channels for different languages or for karaoke.
    3. DVD subtitle(subpicture), language
    It is recommended to use the native DVD menu in the preview panel to set subtitle(subpicture) and language. (Click "DVD menu" button on the right to show native DVD menu in the preview panel) You may also change the subtitle(subpicture), language in the program's Options menu, but there are some DVDs that require the change must be made in the native DVD menu instead of the program's menu.
    Windows XP
      Windows 2000  
      Windows ME  

    Thank you for your posting, which is very helpful, however it will be better if you can post on the Video forum as well
    http://discussions.apple.com/forum.jspa?forumID=807
    By the way, I must say that it is a very good post

  • How to convert a DVD disc for use in Final Cut Express 3.5

    I have a DVD disc of a conference which I would like to edit in FCE 3.5.
    I would like to be able to import it into my FCE project, ad use it without having to the render it in FCE.
    Is it possible to rip or import the disc (with Handbrake?) and then export the resulting file so it can be used in FCE. I am especially keen that when the file is imported, it doesn't have to then be rendered. I have had a number of problems with QuickTime files being imported to FCE where they then need to be rendered in the timeline before I can use them.
    If anyone can suggest the following I would be very appreciative:
    1/ how to import the DVD disc- Handbrake?- what settings are best to use? MPEG4, H.264...
    2/ once imported to my Mac Pro, how do I convert it for easy use in FCE.
    Just to show you that I did try this before posting to this forum, I tried the following:
    1/ imported as a h.264 file with Handbrake (2hr video created a 2GB file)
    2/ opened this file in an app called "MPEG Streamclip" and exported the file as a QuickTime file, and set as "Apple DV".
    3/ BUT... the resulting file reached 17GB and then when imported to FCE, it couldn't be played in the timeline until I rendered it first- I didn't start this as it would have taken hours and hours!!
    Any help or tips would be great
    Thanks,
    Simon

    DVDs are in a socalled delivery format (mpeg2), which isn't meant and made for any processing as editing...
    in recommended order, choose one of the following tools/workarounds:
    DVDxDV (free trial, 25$, Pro: 90$)
    Apple mpeg2 plugin (19$) + Streamclip (free)
    VisualHub (23.32$)
    Drop2DV (free)
    Cinematize >60$
    Mpeg2Works >25$ + Apple plug-in
    Toast 6/7/8 allows converting to dv/insert dvd, hit apple-k
    connect a miniDV Camcorder with analogue input to a DVD-player and transfer disk to tape/use as converter
    http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    http://danslagle.com/mac/iMovie/tips_tricks/6018.shtml
    http://karsten.schluter.googlepages.com/convertdvdstodvs
    (advice is for imports to iM... )
    none of these methods or tools override copy protection/DRM mechanisms.. advice on 'ripping' is a violation of the ToU of this board ..
    +be nice to copy rights ...+

Maybe you are looking for

  • BB App World Error

    BB App World Version 3.1.0.58 updated and is not working. Error Message seeking identity installation keeps failing to install. How do I solve this problem?

  • Illustrator CS4 crash. FM Core?

    My Illustrator CS4 unexpectedly quit and when I restarted it, a dialog box appeared reading "FM Core has been stopped. Please start it from the system preferences pane and then relaunch Adobe Illustrator CS4". I have no clue what this means and could

  • [Feature request] Project files

    Probably not a new one, but it really bugs me every single time (like one minute ago): We use CVS. When I open the project then it would be nice if not only new files found in the project's source path were added to the project, but if also non-exist

  • Indexes  concept

    hi,  i am new for this module can anyone explain me . what are indexes?. regards, ibrahim.

  • How can I restore accidentally-deleted add-ons?

    A year ago, I wasn't fully awake and I accidentally deleted some critical add-ons that my Firefox needs to become stable. Is there a way I can restore them?