<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : Firebase Storage&#039;a resim yükleme</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : Firebase Storage&#039;a resim yükleme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 15 Jul 2026 04:53:39 +0000</pubDate>
  <lastBuildDate>Mon, 13 Jul 2026 10:08:02 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>1440</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=1614</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[Firebase Storage&#039;a resim yükleme : te&#351;ekk&#252;r ederim.https://static...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3731#3731</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=475">GurkanCelen</a><br /><strong>Konu:</strong> 1614<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Temmuz&nbsp;2026 Saat 10:08<br /><br />teşekkür ederim.<a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Mon, 13 Jul 2026 10:08:02 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3731#3731</guid>
  </item> 
  <item>
   <title><![CDATA[Firebase Storage&#039;a resim yükleme : var MyForm: TclForm; ImgChooserBtn:...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3730#3730</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=473">ErenTotan</a><br /><strong>Konu:</strong> 1614<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Temmuz&nbsp;2026 Saat 10:04<br /><br /><div>var</div><div>&nbsp; MyForm: TclForm;</div><div>&nbsp; ImgChooserBtn: TclButton;</div><div>&nbsp; UploadBtn: TclButton;</div><div>&nbsp; UserImg: TClProImage;</div><div><br></div><div>// Galeriden/Kameradan Resim Seçme</div><div>void OnImgChooserClick;</div><div>begin</div><div>&nbsp; Clomosy.ImageChooser(MyForm, UserImg);</div><div>end;</div><div><br></div><div>// Resmi Sunucuya Gönderme</div><div>void OnUploadClick;</div><div>var</div><div>&nbsp; LBase64Data, LJsonBody: String;</div><div>&nbsp; RestObj: TclRest;</div><div>begin</div><div>&nbsp; // Resim seçilmiş mi kontrol et</div><div>&nbsp; if UserImg.clProSettings.PictureSource = '' then</div><div>&nbsp; begin</div><div>&nbsp; &nbsp; ShowMessage('Lütfen önce bir resim seçin.');</div><div>&nbsp; &nbsp; Exit;</div><div>&nbsp; end;</div><div><br></div><div>&nbsp; // 1. Resmi Base64 string formatına dönüştür</div><div>&nbsp; LBase64Data := Clomosy.FileToBase64(UserImg.clProSettings.PictureSource);</div><div>&nbsp;&nbsp;</div><div>&nbsp; // 2. JSON gövdesini oluştur</div><div>&nbsp; LJsonBody := '{"image_name":"user_profile.jpg", "image_data":"' + LBase64Data + '"}';</div><div>&nbsp;&nbsp;</div><div>&nbsp; // 3. Aracı API'ye POST isteği gönder</div><div>&nbsp; RestObj := TclRest.Create;</div><div>&nbsp; try</div><div>&nbsp; &nbsp; RestObj.BaseURL := '<a href="https://sizin-api-adresiniz.com/upload-image" target="_blank" rel="nofollow">https://sizin-api-adresiniz.com/upload-image</a>'; // Kendi API adresiniz</div><div>&nbsp; &nbsp; RestObj.Method := rmPOST;</div><div>&nbsp; &nbsp; RestObj.Accept := 'application/json';</div><div>&nbsp; &nbsp; RestObj.AddBody(LJsonBody, 'application/json');</div><div>&nbsp; &nbsp; RestObj.Execute;</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; // Sunucudan dönen yanıtı (Örn: Firebase Download URL) göster</div><div>&nbsp; &nbsp; ShowMessage('Sunucu Yanıtı: ' + RestObj.Response);</div><div>&nbsp; finally</div><div>&nbsp; &nbsp; RestObj.Free;</div><div>&nbsp; end;</div><div>end;</div><div><br></div><div>begin</div><div>&nbsp; MyForm := TclForm.Create(Self);</div><div>&nbsp;&nbsp;</div><div>&nbsp; UserImg := MyForm.AddNewProImage(MyForm, 'UserImg');</div><div>&nbsp; UserImg.Align := alTop;</div><div>&nbsp; UserImg.Height := 200;</div><div>&nbsp;&nbsp;</div><div>&nbsp; ImgChooserBtn := MyForm.AddNewButton(MyForm, 'ImgChooserBtn', 'Resim Seç');</div><div>&nbsp; ImgChooserBtn.Align := alTop;</div><div>&nbsp; MyForm.AddNewEvent(ImgChooserBtn, tbeOnClick, 'OnImgChooserClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; UploadBtn := MyForm.AddNewButton(MyForm, 'UploadBtn', 'Yükle');</div><div>&nbsp; UploadBtn.Align := alTop;</div><div>&nbsp; MyForm.AddNewEvent(UploadBtn, tbeOnClick, 'OnUploadClick');</div><div>&nbsp;&nbsp;</div><div>&nbsp; MyForm.Run;</div><div>end;</div><div>Node.js veya PHP ile yazılmış basit bir endpoint oluşturulup, Clomosy'den resmi Base64 olarak bu API'ye gönderip, API üzerinden Firebase Storage yüklemesini tamamlayarak dönen resmi indirme URL'sini Clomosy'ye teslim etmek gerekiyor.&nbsp;</div><a href="https://static.cloudflareinsights.com/beac&#111;n.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" target="_blank" rel="nofollow">https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496"</a> integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon="{&quot;version&quot;:&quot;2024.11.0&quot;,&quot;token&quot;:&quot;439455f3e46c40b98dbd42a2f1a954d8&quot;,&quot;r&quot;:1,&quot;server_timing&quot;:{&quot;name&quot;:{&quot;cfCacheStatus&quot;:true,&quot;cfEdge&quot;:true,&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfOrigin&quot;:true,&quot;cfSpeedBrain&quot;:true},&quot;location_startswith&quot;:null}}" crossorigin="anonymous">]]>
   </description>
   <pubDate>Mon, 13 Jul 2026 10:04:35 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3730#3730</guid>
  </item> 
  <item>
   <title><![CDATA[Firebase Storage&#039;a resim yükleme : Merhaba, Clomosy ile yapt&#305;&#287;&#305;m...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3729#3729</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=475">GurkanCelen</a><br /><strong>Konu:</strong> 1614<br /><strong>Gönderim Zamanı:</strong> 13&nbsp;Temmuz&nbsp;2026 Saat 09:53<br /><br />Merhaba, Clomosy ile yaptığım projede Firebase kullanıyorum. Kullanıcının galeriden seçtiği resmi Firebase Storage'a yüklemek istiyorum ama nasıl yapacağımı bilemedim. TclRest ile denedim olmadı. Clomosy'de Firebase Storage'a veya herhangi bir yere resim yüklemenin doğru yöntemi nedir?]]>
   </description>
   <pubDate>Mon, 13 Jul 2026 09:53:20 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=1614&amp;PID=3729#3729</guid>
  </item> 
 </channel>
</rss>