<?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: Deal with metadata for pictures in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539937#M148293</link>
    <description>&lt;P&gt;Glad to see it's working now, thank you for your feedback!&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Shicong&lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2025 04:14:50 GMT</pubDate>
    <dc:creator>Shicong_Hong</dc:creator>
    <dc:date>2025-12-29T04:14:50Z</dc:date>
    <item>
      <title>Deal with metadata for pictures in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2537852#M148217</link>
      <description>&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;I am trying to find the best way to access metadata of pictures.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The process looks like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Job generates a preset from an original file &amp;gt; job loads the preset in a S3 Bucket &amp;gt; metadata about the preset is written in a database.&lt;BR /&gt;&lt;BR /&gt;How can I access to the width and height of the new .jpg and write them as a tag in the S3Bucket? And if it's in a tag in the S3 Bucket, how can I get this information back in other Talend jobs?&lt;BR /&gt;&lt;BR /&gt;Many thanks for your help.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2025 16:35:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2537852#M148217</guid>
      <dc:creator>HungryOctopus</dc:creator>
      <dc:date>2025-12-02T16:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Deal with metadata for pictures in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2538207#M148238</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/288876"&gt;@HungryOctopus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to get the&lt;SPAN&gt;&amp;nbsp;width and height of a .jpg, you can do it on a tJava component. eg:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;BufferedImage bimg = ImageIO.read(new File("C:\\Users\jeremy\\Downloads\\JPEG_example_flower.jpg"));
int width          = bimg.getWidth();
int height         = bimg.getHeight();
System.out.println(width);
System.out.println(height);

bimg.flush();&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;Add the following imports in the Advanced settings panel:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;&lt;/LI-CODE&gt;
&lt;P&gt;if you want to add tag to S3 object before send it to the bucket, you can&amp;nbsp;use the s3Put component (it have an option to specify tags). &lt;STRONG&gt;Note that&lt;/STRONG&gt; this option is available from version R2024-01 onwards.&lt;/P&gt;
&lt;P&gt;If you want to retrieve tags, please refer to the following scenario :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/talend/en-US/components/8.0/amazon-s3/ts3put-ts3get-ts3connection-tagging-s3-objects-standard-component-this" target="_self"&gt;Tagging S3 objects | Qlik Help Center&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Shicong&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 01:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2538207#M148238</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2025-12-05T01:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Deal with metadata for pictures in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539813#M148290</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/257838"&gt;@Shicong_Hong&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I had to postpone that topic but today I looked into it and it works fine as you described.&lt;BR /&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 12:17:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539813#M148290</guid>
      <dc:creator>HungryOctopus</dc:creator>
      <dc:date>2025-12-23T12:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Deal with metadata for pictures in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539852#M148291</link>
      <description>&lt;P&gt;Thank you for the information.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 09:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539852#M148291</guid>
      <dc:creator>Graceleah4181</dc:creator>
      <dc:date>2025-12-24T09:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Deal with metadata for pictures in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539937#M148293</link>
      <description>&lt;P&gt;Glad to see it's working now, thank you for your feedback!&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Shicong&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 04:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Deal-with-metadata-for-pictures-in-Talend/m-p/2539937#M148293</guid>
      <dc:creator>Shicong_Hong</dc:creator>
      <dc:date>2025-12-29T04:14:50Z</dc:date>
    </item>
  </channel>
</rss>

