<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [resolved] change picture size in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314194#M84985</link>
    <description>Hi 
&lt;BR /&gt;If the component need input links, you can use a tFixedFlowInput component to generate a row with fixed value. For example: 
&lt;BR /&gt;tFileList--iterate---tFileProperties---main--tJavaRow--runIf_1--tFixedFlowInput--main--&amp;gt;JavaPictureResize 
&lt;BR /&gt; --runIf_2---continue the process 
&lt;BR /&gt;I did not test this component yet, I only give you the hints and the job design, so I hope you will success in using it and share the experience with us or you know other way to re-size the picture. 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
    <pubDate>Thu, 10 Nov 2011 01:27:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-11-10T01:27:29Z</dc:date>
    <item>
      <title>[resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314191#M84982</link>
      <description>I've got a scenario like this:
&lt;BR /&gt;First scan a list of files specifically all pictures(files with .jpg or jpeg) inside one folder;
&lt;BR /&gt;then get the size of of the picture;
&lt;BR /&gt;if the size is greater than a certain size make it smaller; if it's already smaller than that size just continue the process;
&lt;BR /&gt;I'd like to ask if there's a way to re-size the picture. How to design this process? Could anyone give me some idea? 
&lt;BR /&gt;Thanks!</description>
      <pubDate>Sat, 16 Nov 2024 12:34:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314191#M84982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314192#M84983</link>
      <description>Hi
&lt;BR /&gt;I see there is a component called JavaPictureResize on Talend exchange shared by kchalane, it could be used to re-size the pictures, I did not test this component yet, hope that it is the suitable component you are looking for. 
&lt;BR /&gt;The job design looks like:
&lt;BR /&gt;tFileList--iterate---tFileProperties---main--tJavaRow--runIf_1---JavaPictureResize 
&lt;BR /&gt; --runIf_2---continue the process
&lt;BR /&gt;on tJavaRow:
&lt;BR /&gt;if(input_row.size&amp;gt;a certain size){
&lt;BR /&gt;globalMap.put("isgreater",true);
&lt;BR /&gt;}else{
&lt;BR /&gt;globalMap.put("isgreater",false);
&lt;BR /&gt;}
&lt;BR /&gt;set the condition of runif_1 as:
&lt;BR /&gt;(Boolean)globalMap.get("isgreater")
&lt;BR /&gt;set the condition of runIf_2 as:
&lt;BR /&gt;!(Boolean)globalMap.get("isgreater")
&lt;BR /&gt;
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 09 Nov 2011 01:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314192#M84983</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-09T01:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314193#M84984</link>
      <description>Really appreciate your quick response. I download and installed that component. 
&lt;BR /&gt;Unfortunately, it's not allowed to connect tJavaRow to tJavapicturesize component using Runif, only row(main). 
&lt;BR /&gt;Then I tried to wrap that component into another subjob (using tRunJob). But tJavapicturesize needs input links. Is there another way to work it out? 
&lt;BR /&gt;Also that customized component is developed on tJavaRow. It seems that most code are still customized, including the parameter for the pics dimension. I really have trouble using it. I'm not good at coding thing. Any suggestion about this component? 
&lt;BR /&gt;Thanks!</description>
      <pubDate>Thu, 10 Nov 2011 00:20:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314193#M84984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T00:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314194#M84985</link>
      <description>Hi 
&lt;BR /&gt;If the component need input links, you can use a tFixedFlowInput component to generate a row with fixed value. For example: 
&lt;BR /&gt;tFileList--iterate---tFileProperties---main--tJavaRow--runIf_1--tFixedFlowInput--main--&amp;gt;JavaPictureResize 
&lt;BR /&gt; --runIf_2---continue the process 
&lt;BR /&gt;I did not test this component yet, I only give you the hints and the job design, so I hope you will success in using it and share the experience with us or you know other way to re-size the picture. 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA9p.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138034i5F552429DA646D6F/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA9p.png" alt="0683p000009MA9p.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 10 Nov 2011 01:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314194#M84985</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T01:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314195#M84986</link>
      <description>Hi,
&lt;BR /&gt;There is also ImageMagick that you can use with commandline, maybe it can help you.</description>
      <pubDate>Thu, 10 Nov 2011 09:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314195#M84986</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T09:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314196#M84987</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi,&lt;BR /&gt;There is also ImageMagick that you can use with commandline, maybe it can help you.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Good, if ImageMagick can be used with commandline way, we can use tSystem component to call ImageMagick command in Talend job. 
&lt;BR /&gt;elvalin1559, please try ImageMagick? 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 10 Nov 2011 09:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314196#M84987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T09:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314197#M84988</link>
      <description>I'll give it a try.  Thanks!</description>
      <pubDate>Thu, 10 Nov 2011 21:52:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314197#M84988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T21:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314198#M84989</link>
      <description>Yes you have to install it, just go on the website and depending on your OS choose the right installer. Then for your job:&lt;BR /&gt;    &lt;BR /&gt;tFileList------tSystem&lt;BR /&gt;of cours you put the right directory inyour tFileList, and then for you tSystem:&lt;BR /&gt;"cd the_path_where_you_have_installed_imagemagick(for me C:\ImageMagick-6.7.3-Q16)"                 //carefull with "\", depending on the OS where the job is running&lt;BR /&gt;"convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64\! "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\exact_"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION"))&lt;BR /&gt;It should create the converted images with the prefix "exact" in your folder. Let me now if it works. ps:I didn't check the convert method of imagmagick, i've used yours</description>
      <pubDate>Thu, 10 Nov 2011 22:42:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314198#M84989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-10T22:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314199#M84990</link>
      <description>Thank you so much for your quick reply. I was just preparing to repost with my job design and ask some more question. But you've already replied so I just got that installed and tried your post. 
&lt;BR /&gt;Do I have to put something between the two command? 
&lt;BR /&gt;"cd C:\Program Files\ImageMagick-6.7.3-Q16" 
&lt;BR /&gt;"convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64\! "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\exact_"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION")) 
&lt;BR /&gt;when I was using it, got this error message 
&lt;BR /&gt;Error: Unresolved compilation problem: 
&lt;BR /&gt; Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\ ) 
&lt;BR /&gt;then I put \n between them but still not correct. What might be the problem? 
&lt;BR /&gt;When I tried the "cd C:\Program Files\ImageMagick-6.7.3-Q16" in the cmd, it was working. I think it might be the two commands issue. 
&lt;BR /&gt;Thanks!</description>
      <pubDate>Fri, 11 Nov 2011 00:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314199#M84990</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T00:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314200#M84991</link>
      <description>Hi 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Do I have to put something between the two command?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Check the option 'Use home directory' and browse the directory C:\Program Files\ImageMagick-6.7.3-Q16. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Fri, 11 Nov 2011 00:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314200#M84991</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T00:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314201#M84992</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Yes you have to install it, just go on the website and depending on your OS choose the right installer. Then for your job:&lt;BR /&gt; &lt;BR /&gt;tFileList------tSystem&lt;BR /&gt;of cours you put the right directory inyour tFileList, and then for you tSystem:&lt;BR /&gt;"cd the_path_where_you_have_installed_imagemagick(for me C:\ImageMagick-6.7.3-Q16)" //carefull with "\", depending on the OS where the job is running&lt;BR /&gt;"convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64\! "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\exact_"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION"))&lt;BR /&gt;It should create the converted images with the prefix "exact" in your folder. Let me now if it works. ps:I didn't check the convert method of imagmagick, i've used yours&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Perhaps there's something wrong with the command "convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64\! "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\exact_"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION")) 
&lt;BR /&gt;The job can be executed but with following error message.
&lt;BR /&gt; connecting to socket on port 3477
&lt;BR /&gt; connected
&lt;BR /&gt;Invalid Parameter - -resize
&lt;BR /&gt; disconnected
&lt;BR /&gt;
&lt;BR /&gt;I wonder if some of the quotes are necessary or right. THANKS!!!</description>
      <pubDate>Fri, 11 Nov 2011 00:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314201#M84992</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T00:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314202#M84993</link>
      <description>Remove the "\" before the "!".</description>
      <pubDate>Fri, 11 Nov 2011 11:09:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314202#M84993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T11:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314203#M84994</link>
      <description>It's still not right. This even returned more error and couldn't be executed at all. 
&lt;BR /&gt;I forgot to mention I've already changed the expression as follows. And that "Invalid" message was coming from this expression, not the one you corrected. 
&lt;BR /&gt;"convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64 "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION")) 
&lt;BR /&gt; 
&lt;BR /&gt;Do you have any clue? I've been keeping trying. 
&lt;BR /&gt;Thanks.</description>
      <pubDate>Fri, 11 Nov 2011 16:17:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314203#M84994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T16:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314204#M84995</link>
      <description>What do you exactly put in your tSystem?</description>
      <pubDate>Fri, 11 Nov 2011 17:30:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314204#M84995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T17:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314205#M84996</link>
      <description>shown in pic and the expression is 
&lt;BR /&gt;
&lt;BR /&gt;"convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64 "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION"))</description>
      <pubDate>Fri, 11 Nov 2011 18:05:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314205#M84996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T18:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314206#M84997</link>
      <description>try&lt;BR /&gt; "convert "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64 "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION"))</description>
      <pubDate>Fri, 11 Nov 2011 18:16:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314206#M84997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T18:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314207#M84998</link>
      <description>Really sorry to bother again...It's weird. Still not working. Got the error message as the first pic. I've tried many different ones. 
&lt;BR /&gt;Another pic is the one I also tried. I made the file the same name. Then still got "Invalid Parameter - -resize". Is there anything wrong with the ImageMagick command? 
&lt;BR /&gt;Thanks!</description>
      <pubDate>Fri, 11 Nov 2011 20:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314207#M84998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T20:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314208#M84999</link>
      <description>do you get smthing when you put "convert help" in the tsystem?</description>
      <pubDate>Fri, 11 Nov 2011 21:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314208#M84999</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T21:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314209#M85000</link>
      <description>Do you mean to put only "convert help" in the command line?  I tried and got "Invalid drive specification."  So does this mean that I didn't make the ImageMagick working right?  I have to make some changes to home directory?&lt;BR /&gt;Also I tried to changed the "to console" to normal in the standard output as shown in the picture.  Then it executed without any error.  The problem is that I didn't see any change to my file.&lt;BR /&gt;I put the command like "convert"+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH"))+" -resize 64x64 "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH")).  I think it will rename as the same name (cover the original one).  But nothing has changed.&lt;BR /&gt;Thank you!!!</description>
      <pubDate>Fri, 11 Nov 2011 21:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314209#M85000</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-11T21:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] change picture size</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314210#M85001</link>
      <description>I finally find the solution (took a long time, ImageMagick is quite strange). It seems that in order to use ImageMagick you have to use the .exe and not use it like a .bat file. So the solution: 
&lt;BR /&gt;In your home directory: "C:\\Program Files\\ImageMagick-6.7.3-Q16" 
&lt;BR /&gt;in your tsystem, copy EXACTLY this: 
&lt;BR /&gt;"C:\\Program Files\\ImageMagick-6.7.3-Q16\\convert.exe "+((String)globalMap.get("tFileList_1_CURRENT_FILEPATH")) +" -resize 64x64 "+((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY"))+"\\exact_"+((String)globalMap.get("tFileList_1_CURRENT_FILE"))+"."+((String)globalMap.get("tFileList_1_CURRENT_FILEEXTENSION")) 
&lt;BR /&gt;The copy of your images will be generated in the same folder of the previous images, if you want to generate them in an other folder, replace ((String)globalMap.get("tFileList_1_CURRENT_FILEDIRECTORY")) by an other directory path 
&lt;BR /&gt;The copy fo your images will have the prefix exact, of course it's up to you to change it. 
&lt;BR /&gt;Please tell me if you have achieved it. I've made the job, it works fine. 
&lt;BR /&gt; 
&lt;BR /&gt;PS: don't forget that you have to put "\\" instead of "\" when you directly write a path</description>
      <pubDate>Sat, 12 Nov 2011 00:23:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-change-picture-size/m-p/2314210#M85001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-11-12T00:23:50Z</dc:date>
    </item>
  </channel>
</rss>

