NuGet package: https://www.nuget.org/packages/PrintHTML.Core
Basic usage:
PrinterService _printerService = new PrinterService();
AsyncPrintTask.Exec(
true,
() => _printerService.DoPrint(
"content", // Content to print
"PrinterName", // Printer name
"charactersPerLine(int) 58MM=32, 80MM=42" // Characters per line
)
);
[EN]
PrintHTML is a user-friendly WPF application that allows you to send HTML content directly to Windows printers. This application enables you to preview HTML content before printing and automatically detects all printers installed on the system.
- Direct HTML content printing
- Print preview functionality
- Automatic printer detection
- User-friendly interface
- Error handling and notifications
- Framework: .NET (WPF)
- Language: C#
- Interface: XAML
- Architecture: Service-based architecture
- Launch the application
- System printers will be automatically listed
- Paste your HTML content into the text box
- Optionally click "Preview" to check the output
- Select a printer and click "Print"
- Windows operating system
- .NET Framework
- At least one system printer
Special format tags you can use in the application:
<L>
: Aligns text to the left<C>
: Centers the text<R>
: Aligns text to the right<T>
: Makes text bold<EB>
: Bold text start<DB>
: Bold text end<F>=
: Fills the line with the specified character (example:<F>=
fills the entire line with = character)<J>
: Creates a table. Columns are separated by | character (example:<J>Product | Price | Stock
)
Example usage:
<div style="text-align: center; color: red;">HEADER</div>
<F>=
<T>Bold Header
<L>Left aligned text
<C>Centered text
<R>Right aligned text
<J>Product | Price
<J>Pencil | $10
[TR]
PrintHTML, HTML içeriğini doğrudan Windows yazıcılarına göndermenizi sağlayan kullanıcı dostu bir WPF uygulamasıdır. Bu uygulama, HTML içeriğini yazdırmadan önce önizleme yapmanıza olanak tanır ve sistem üzerinde kurulu olan tüm yazıcıları otomatik olarak algılar.
- HTML içeriğini doğrudan yazdırma
- Yazdırma öncesi önizleme
- Sistem yazıcılarını otomatik algılama
- Kullanıcı dostu arayüz
- Hata yönetimi ve bildirimler
- Framework: .NET (WPF)
- Dil: C#
- Arayüz: XAML
- Mimari: Service-based architecture
- Uygulamayı başlatın
- Sistem yazıcıları otomatik olarak listelenecektir
- Yazdırmak istediğiniz HTML içeriğini metin kutusuna yapıştırın
- İsterseniz "Önizle" butonuna tıklayarak çıktıyı kontrol edin
- Yazıcı seçin ve "Yazdır" butonuna tıklayın
- Windows işletim sistemi
- .NET Framework
- En az bir sistem yazıcısı
Uygulama içerisinde kullanabileceğiniz özel format etiketleri:
<L>
: Metni sola hizalar<C>
: Metni ortalar<R>
: Metni sağa hizalar<T>
: Metni kalın yapar<EB>
: Kalın yazı başlangıcı<DB>
: Kalın yazı bitişi<F>=
: Belirtilen karakterle satırı doldurur (örnek:<F>=
tüm satırı = karakteri ile doldurur)<J>
: Tablo oluşturur. Sütunlar | karakteri ile ayrılır (örnek:<J>Ürün | Fiyat | Stok
)
Örnek kullanım:
<div style="text-align: center; color: red;">BAŞLIK</div>
<F>=
<T>Kalın Başlık
<L>Sola dayalı metin
<C>Ortalanmış metin
<R>Sağa dayalı metin
<J>Ürün | Fiyat
<J>Kalem | 10 TL