Search found 7 matches
- 2019-05-09T03:19:26-07:00
- Forum: Magick.NET
- Topic: Help with merging TIFF files #2
- Replies: 4
- Views: 114295
Re: Help with merging TIFF files #2
Thank you, it did work.
- 2019-05-03T09:47:27-07:00
- Forum: Magick.NET
- Topic: Help with merging TIFF files #2
- Replies: 4
- Views: 114295
Re: Help with merging TIFF files #2
Indeed, it was it.
But theres another thing... The files are not merging even if I use the Combine() method.
So, how can I merge them like, if I have 10 TIFFs, make it 1 TIFF with 10 pages?
But theres another thing... The files are not merging even if I use the Combine() method.
So, how can I merge them like, if I have 10 TIFFs, make it 1 TIFF with 10 pages?
- 2019-05-02T05:51:20-07:00
- Forum: Magick.NET
- Topic: Help with merging TIFF files #2
- Replies: 4
- Views: 114295
Help with merging TIFF files #2
I need help merging TIFF files (again).
I want to use Magick.NET because I want the compression type to be JPEG and the System.Drawing.Imaging doesn't have that type.
The problem when it executes the line images.Write(outFile);
I get the error:
System.ObjectDisposedException: Cannot access a ...
I want to use Magick.NET because I want the compression type to be JPEG and the System.Drawing.Imaging doesn't have that type.
The problem when it executes the line images.Write(outFile);
I get the error:
System.ObjectDisposedException: Cannot access a ...
- 2019-03-25T02:04:30-07:00
- Forum: Magick.NET
- Topic: Merging TIFF files in multi page with C#
- Replies: 6
- Views: 128244
Re: Merging TIFF files in multi page with C#
Thank you dlemstra.
I already figure it out with another library but I think that would work either.
Thanks for your time and answers!
I already figure it out with another library but I think that would work either.
Thanks for your time and answers!
- 2019-03-21T04:35:00-07:00
- Forum: Magick.NET
- Topic: Merging TIFF files in multi page with C#
- Replies: 6
- Views: 128244
Re: Merging TIFF files in multi page with C#
@dlemstra how should I do that?
I cannot do it this way:
using (IMagickImage result = images.Write())
{
// Save the result
result.Write(output + "\\FicheiroMultiPage.tif");
}
Because no overload takes 0 arguments, and I cannot use images.Write(output + "\\FicheiroMultiPage.tif") , because ...
I cannot do it this way:
using (IMagickImage result = images.Write())
{
// Save the result
result.Write(output + "\\FicheiroMultiPage.tif");
}
Because no overload takes 0 arguments, and I cannot use images.Write(output + "\\FicheiroMultiPage.tif") , because ...
- 2019-03-21T02:29:29-07:00
- Forum: Magick.NET
- Topic: Merging TIFF files in multi page with C#
- Replies: 6
- Views: 128244
Re: Merging TIFF files in multi page with C#
@fmw42 but when I merge TIFF files, the output it's one image above another and not multiple pages.
I convert PDF in TIFF and the merge the TIFFs.
There is the link to the result: https://ibb.co/PmrFdRP
The code is this one:
public void MergeTIFF(string output)
{
string[] ficheiros ...
I convert PDF in TIFF and the merge the TIFFs.
There is the link to the result: https://ibb.co/PmrFdRP
The code is this one:
public void MergeTIFF(string output)
{
string[] ficheiros ...
- 2019-03-20T09:51:18-07:00
- Forum: Magick.NET
- Topic: Merging TIFF files in multi page with C#
- Replies: 6
- Views: 128244
Merging TIFF files in multi page with C#
Hi there! My name is Sofia and I'm trying to merge various TIFF files into a multi page one.
What I want to do is convert PDF to TIFF and then, these TIFF files, merge them.
I already can convert PDF to TIFF with this code (using ImageMagick):
public void PDFToTIFF(string output ...
What I want to do is convert PDF to TIFF and then, these TIFF files, merge them.
I already can convert PDF to TIFF with this code (using ImageMagick):
public void PDFToTIFF(string output ...