İçeriğe atla

PDF boyut küçültme

Duyurular

Önerilen Başlıklar

  • 1000 Üye Kutlaması 🎉🎉🎉

    Duyurular
    1
    2
    3 Oy
    1 İleti
    49 Bakış
    forum.ieu.appF
    [image: 1747999752328-chatgpt-image-23-may-2025-14_28_49.png]
  • 2024-2025 Öğretim Yılı Bahar Dönemi Final Sınav Programı

    Duyurular
    1
    0 Oy
    1 İleti
    98 Bakış
    kadirK
    File.pdf
  • 10 Kişilik Kahve Çekilişi

    Duyurular
    1
    0 Oy
    1 İleti
    67 Bakış
    forum.ieu.appF
    Kuzgun Plak Cafe için 10 kişilik KAHVE Çekilişimiz başlamıştır. Katılmak için oy veriniz Yalnızca 120 TL ve altındaki kahveler için geçerlidir. 📍 https://maps.app.goo.gl/fsjt759sGGHrknrGA
  • Introduction to IBM Z with Joris Mertens

    Duyurular
    1
    1
    1 Oy
    1 İleti
    40 Bakış
    IBMZ IUEI
    [image: 1747314274008-1_20250515_051226_0000.png] We are excited to announce an exclusive event featuring IBM Z expert Joris MERTENS, who will be presenting an "Introduction to Z" session at Izmir University of Economics 🎓. This event is designed for students and professionals interested in learning about enterprise computing fundamentals and the critical role that IBM Z mainframes play in today's business world 💼. During this comprehensive session, attendees will gain insights into the architecture, capabilities, and real-world applications of IBM Z systems 🖥️. Whether you're new to enterprise computing or looking to deepen your understanding of mainframe technology, this event offers valuable knowledge from one of the field's leading experts 📚. Further Details - https://www.ibmziue.com/field1.html
  • Yeni PDF görüntüleme kodu

    Duyurular
    2
    1 Oy
    2 İleti
    60 Bakış
    kadirK
    $(document).ready(function () { function processPDFs() { console.log("📄 PDF önizleme işleniyor..."); $('a[href$=".pdf"]').each(function () { let link = $(this).attr('href'); if (!$(this).next('.pdf-container').length) { if (isMobileDevice() || isSafari()) { // 📱 iPhone, iPad veya Safari kullanılıyorsa, doğrudan link göster $(this).attr('target', '_blank'); // Yeni sekmede açılmasını sağla $(this).show(); // PDF linkini gizleme } else { // 💻 **Masaüstünde PDF'yi iframe içinde aç** $(this).hide(); // PDF linkini gizle let container = $('<div class="pdf-container" style="width:100%; max-width:900px; height:700px; margin-top:10px; border: 1px solid #ccc;"></div>'); let iframe = $('<iframe style="width:100%; height:100%;" frameborder="0"></iframe>'); // Eğer PDF dışarıdan yüklenmişse, Mozilla PDF.js kullan if (link.startsWith("http")) { let viewerURL = https://mozilla.github.io/pdf.js/web/viewer.html?file=${encodeURIComponent(link)}&toolbar=0&disableDownload=true&disablePrint=true; iframe.attr('src', viewerURL); } else { // Eğer dosya yerel bir NodeBB yüklemesiyse, direkt olarak iframe içinde aç let siteURL = window.location.origin; iframe.attr('src', ${siteURL}${link}); } container.append(iframe); $(this).after(container); } } }); } function isMobileDevice() { return /Mobi|Android|iPhone|iPad|iPod/i.test(navigator.userAgent); } function isSafari() { return /^((?!chrome|android).)*safari/i.test(navigator.userAgent); } processPDFs(); $(window).on('action:ajaxify.end', function () { processPDFs(); }); console.log("✅ iPad ve Safari için link gösterilecek, diğer tarayıcılarda iframe açılacak."); }); buda eskisi