-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
514 lines (417 loc) · 81.2 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
What is iPdfWriter?
====================
iPdfWriter is a lightweight implementation that allows modifying a pdf document totally or partially by replacing tags.
Changes in this version (v1.0.8)
================================
· Changed
-------
- I M P O R T A N T !!!
Now the minimum version of the full framework goes from 4.6.1 to 4.6.2
The Microsoft.Windows.Compatibility nuget package has been updated to fix security issue CVE-2023-29331 (.NET Denial of Service Vulnerability)
- Library versions for this version
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iPdfWriter 1.0.0.7 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.6 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.4 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Abstractions 1.0.0.0 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Common 1.0.0.5 Common Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Linux.Devices.Graphics.Font 1.0.0.1 Linux Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.MacOS.Devices.Graphics.Font 1.0.0.1 MacOS Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Windows.Devices.Graphics.Font 1.0.0.1 Windows Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Shared 1.0.0.4 Generic Shared Interop Definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Windows.Devices 1.0.0.1 Win32 Generic Interop Calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.3 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.3 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.4 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.4 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.4 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.2 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Hardware.Abstractions.Devices.Graphics.Font 1.0.0.1 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.3 Windows registry acces |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.6 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.7
======
- I M P O R T A N T !!!
Version with bugs, version has been unlisted from nuget
v1.0.6
======
· Added
-----
Now uses iPdfWriter.Abstractions.
· Changed
-------
- I M P O R T A N T !!!
Changed the iTin.Utilities.Pdf.Writer namespace to iPdfWriter
- Rename test folder for samples folder
- Library versions for this version
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iPdfWriter 1.0.0.6 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.6 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.3 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Abstractions 1.0.0.0 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Common 1.0.0.5 Common Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Linux.Devices.Graphics.Font 1.0.0.1 Linux Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.MacOS.Devices.Graphics.Font 1.0.0.1 MacOS Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Windows.Devices.Graphics.Font 1.0.0.1 Windows Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Shared 1.0.0.4 Generic Shared Interop Definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Windows.Devices 1.0.0.1 Win32 Generic Interop Calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.3 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.3 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.3 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.3 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.3 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.2 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Hardware.Abstractions.Devices.Graphics.Font 1.0.0.1 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.3 Windows registry acces |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.5 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
· Remove
------
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Abstractions.Writer 1.0.0.0 Generic Common Writer's Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.5
======
· Added
-----
- Add support for asynchronous calls in solution projects.
- Added support for using Span<T> for supported platforms.
- Test projects to show asynchronous usage.
- The functionality of being able to create an instance of the PdfInput class from HTML code has been added.
For more information, please see sample25.cs
- A functionality has been added that allows to add or modify the metadata information of a pdf file.
For more information, please see please see sample26.cs
- A functionality has been added that allows to add a password to pdf file.
For more information, please see please see sample27.cs
- A functionality has been added that allows to insert an image into a pdf file
For more information, please see please see sample28.cs
· Changed
-------
- Library versions for this version
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.6 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.3 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Abstractions 1.0.0.0 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Common 1.0.0.5 Common Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Linux.Devices.Graphics.Font 1.0.0.1 Linux Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.MacOS.Devices.Graphics.Font 1.0.0.1 MacOS Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Windows.Devices.Graphics.Font 1.0.0.1 Windows Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Shared 1.0.0.4 Generic Shared Interop Definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Windows.Devices 1.0.0.1 Win32 Generic Interop Calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.3 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.3 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.3 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.3 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.3 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.2 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Hardware.Abstractions.Devices.Graphics.Font 1.0.0.1 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.3 Windows registry acces |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Abstractions.Writer 1.0.0.0 Generic Common Writer's Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.5 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.4 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.4
======
· Added
-----
- Add TextLines method to PdfInput class for get the lines of text for an PdfInput, optionally you can set both the start and end pages and a value indicating whether blank lines are included in the result
or uses a predicate for filtering.
· Changed
-------
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.4 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.2 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Common 1.0.0.3 Common Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Linux.Devices.Graphics.Font 1.0.0.0 Linux Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.MacOS.Devices.Graphics.Font 1.0.0.0 MacOS Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Windows.Devices.Graphics.Font 1.0.0.0 Windows Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.1 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.1 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Shared 1.0.0.2 Generic Shared Interop Definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Windows.Devices 1.0.0.0 Win32 Generic Interop Calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.2 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.2 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.2 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.1 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Hardware.Abstractions.Devices.Graphics.Font 1.0.0.0 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.2 Windows registry acces |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.4 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.3 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.3
======
· Fixes
-----
- Fixes an error that occurred when trying to load a style from file and this file does not have any extension.
· Added
-----
- Add support for netstandard2.1
- Add SplitEnumerator ref struct.
- Add support for the use of the ~ character in the iTin.Core.IO library
- ByteReader class rewritten to work with Span in net core projects.
- Add sample project for net60
- Added the ability to create a table from a typed enumerable and from a datatable
To do this, two new methods have been added to the PdfTable static class.
There are two overloads for each method, one to render the table applying **ccs** styles, this functionality is implemented and the other rendering the table natively,
it is currently under development
•—————————————————————————————————————————————————————————————————————————————————————————•
| Method Description |
•—————————————————————————————————————————————————————————————————————————————————————————•
| PdfTable.CreateFromEnumerable(..) please see [sample16.cs], [sample17.cs] |
•—————————————————————————————————————————————————————————————————————————————————————————•
| PdfTable.CreateFromDataTable(..) please see [sample18.cs], [sample19.cs] |
•—————————————————————————————————————————————————————————————————————————————————————————•
- Unify calls to handle font from file, currently this functionality is only available for Windows systems,
The logic of each platform is in its own assembly iTin.Core.Hardware.*Target-System*.Devices.Graphics.Font.
Where:
------
Target-System, it can be Linux, Windows or MacOS and the platform independent logic is found in the iTin.Hardware.Abstractions.Devices.Graphics.Font assembly,
so that a call is made independent of the target platform and this assembly has the responsibility of managing the final call to the platform destination.
- Add ExtractPages method to PdfInput class for extract pages from an input.
- Add NumberOfPages method to PdfInput class, for get number of pages of an input.
· Changed
-------
- The way to render the replacements has been rewritten to achieve higher processing speeds, now we should notice an improvement in general times when processing a file.
- Renamed TextOffet, ImageOffset and TableOffset properties for Offset property.
- Change license type to GNU
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.4 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.2 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Common 1.0.0.3 Common Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Linux.Devices.Graphics.Font 1.0.0.0 Linux Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.MacOS.Devices.Graphics.Font 1.0.0.0 MacOS Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Hardware.Windows.Devices.Graphics.Font 1.0.0.0 Windows Hardware Infrastructure |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.1 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.1 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Shared 1.0.0.2 Generic Shared Interop Definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Interop.Windows.Devices 1.0.0.0 Win32 Generic Interop Calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.2 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.2 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.2 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.1 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Hardware.Abstractions.Devices.Graphics.Font 1.0.0.0 Generic Common Hardware Abstractions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.2 Windows registry acces |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.3 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.2 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.2
======
· Critical
--------
- Important!!!
Fixes an error caused in the previous version, the nuget packages were not updated correctly when creating the version
I'm sorry for the inconveniences..
· Fixes
-----
- Upgrade Newtonsoft.Json nuget package to version 13.0.1 (without critical errors)
- Fix an error that occurs when trying to create an html table with html5 tags (not supported)
- Library versions for this version
· Changed
-------
- Change license type to GNU
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.3 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.1 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.1 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.1 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.1 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.1 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.1 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.0 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.1 Common classes for model definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.2 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.1 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.1
======
· Added
-----
- Library documentation.
- tools folder in solution root. Contains a script for update help md files.
· Changed
-------
- Changed IResultGeneric interface. Changed Value property name by Result (for code clarify).
· This change may have implications in your final code, it is resolved by changing Value to Result
- Update result classes for support more scenaries.
- Library versions for this version
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.3 Base library containing various extensions, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.1 Drawing objects, extension, helpers, common constants |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.1 Common I/O calls |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.1 Compression library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.1 Data models base |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.1 Base charting models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.1 Base styling models |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.0 Logging library |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.1 Common classes for model definitions |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.1 Pdf design elements |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.1 Pdf writer |
•———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
v1.0.0
======
· Added
-----
- Library versions for this version
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| Library Version Description |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core 2.0.0.0 Base library containing various extensions, helpers, common constants |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Drawing 1.0.0.0 Drawing objects, extension, helpers, common constants |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO 1.0.0.0 Common I/O calls |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.IO.Compression 1.0.0.0 Compression library |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models 1.0.0.0 Data models base |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Charting 1.0.0.0 Base charting models |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Core.Models.Design.Styling 1.0.0.0 Base styling models |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Logging 1.0.0.0 Logging library |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Registry.Windows 1.0.0.0 Common classes for model definitions |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Design 1.0.0.0 Pdf design elements |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
| iTin.Utilities.Pdf.Writer 1.0.0.0 Pdf writer |
•—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————•
Install via NuGet
=================
PM> Install-Package iPdfWriter
For more information, please see https://www.nuget.org/packages/iPdfWriter/
Documentation
=============
- For Writer code documentation, please see next link https://github.com/iAJTin/iPdfWriter/blob/master/documentation/iTin.Utilities.Pdf.Writer.md
Usage
=====
Examples
--------
Coming soon!!!