Search found 1570 matches

by dlemstra
2018-09-17T13:26:02-07:00
Forum: Bugs
Topic: Group4 Compression
Replies: 3
Views: 9327

Re: Group4 Compression

There is a fix (https://github.com/ImageMagick/ImageMagick/issues/1297) and this will be available in the next release.
by dlemstra
2018-09-17T11:41:05-07:00
Forum: Bugs
Topic: Group4 Compression
Replies: 3
Views: 9327

Re: Group4 Compression

This is a duplicate of viewtopic.php?f=1&t=34680
by dlemstra
2018-09-15T09:13:42-07:00
Forum: Users
Topic: Merge/Convert multiple TIFF's into flate multichannel PSD
Replies: 12
Views: 8727

Re: Merge/Convert multiple TIFF's into flate multichannel PSD

Could either of you open an issue on Github so we will remember to add this feature? And please attach a sample file to the issue.
by dlemstra
2018-09-15T07:30:06-07:00
Forum: Users
Topic: Question for new "module" security policy
Replies: 12
Views: 9322

Re: Question for new "module" security policy

What happens when you try the following configuration:

Code: Select all

 <policy domain="module" rights="read | write" pattern="{GIF,JPEG,PNG,WEBP}" />
by dlemstra
2018-09-15T07:23:03-07:00
Forum: Users
Topic: JPEG-turbo and arithmetic coding
Replies: 1
Views: 3925

Re: JPEG-turbo and arithmetic coding

In the next release you will see that libjpeg-turbo is being used for the Windows binaries. And there was not yet support for creating an image with arithmetic coding so I added that feature for you. You can do this in the next release: magick convert logo: -define jpeg:arithmetic-coding=true logo.j...
by dlemstra
2018-09-15T05:53:32-07:00
Forum: Bugs
Topic: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed
Replies: 14
Views: 19300

Re: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed

I get the following:

Code: Select all

C:\Users\Dirk>cd C:\Windows\Temp

C:\Windows\Temp>echo "test test test" > test.txt

C:\Windows\Temp>type test.txt
Access is denied.
by dlemstra
2018-09-15T02:05:08-07:00
Forum: Bugs
Topic: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed
Replies: 14
Views: 19300

Re: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed

It is very important because we are not sure if you are allowed to write inside the c:\windows\temp directory. And can you create a file there? That does not work on my machine and that is probably why imagemagick fails to convert the pdf file when that folder is used as a temporary directory. The t...
by dlemstra
2018-09-14T13:21:23-07:00
Forum: Bugs
Topic: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed
Replies: 14
Views: 19300

Re: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed

C:\WINDOWS\TEMP != c:\TEMP ?
by dlemstra
2018-09-14T07:38:49-07:00
Forum: Bugs
Topic: delegates.xml on Windows wrong: "wdp" delegate
Replies: 1
Views: 6741

Re: delegates.xml on Windows wrong: "wdp" delegate

Thanks for the patch we have changed this in IM6 and in IM7.
by dlemstra
2018-09-14T07:16:48-07:00
Forum: Bugs
Topic: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed
Replies: 14
Views: 19300

Re: WIN10-64bit w/IM7.0.8-11Q16x64 & GS9.19: PDFDelegateFailed

Does the folder c:\windows\temp exist on your system? I suspect that you have an incorrect value set for %temp%.
by dlemstra
2018-09-12T21:49:21-07:00
Forum: Magick.NET
Topic: Multi Layer Tiff to PNG, getting crazy..
Replies: 2
Views: 9437

Re: Multi Layer Tiff to PNG, getting crazy..

The layers of a tiff image are stored inside the `tiff:37724` profile. You will need to remove that yourself before you save the image: MagickReadSettings settings = new MagickReadSettings(); settings.Density = new Density(600, 600, DensityUnit.PixelsPerInch); using (var image = new MagickImage(@&qu...
by dlemstra
2018-09-07T01:48:15-07:00
Forum: Users
Topic: TIFF compression not working?
Replies: 3
Views: 7250

Re: TIFF compression not working?

The fix for this will be available in the next release: https://github.com/ImageMagick/ImageMagick/issues/1297
by dlemstra
2018-09-02T04:39:09-07:00
Forum: Magick.NET
Topic: Best Way To Compress .PNG Image File?
Replies: 1
Views: 11250

Re: Best Way To Compress .PNG Image File?

Compress will give you a better result but you might loose information from the file. If you only use the images in a website you should probably use the Compress method. But if you want to preserve the information from the original image you should use LosslessCompress instead. And make sure you al...
by dlemstra
2018-08-26T03:28:00-07:00
Forum: Magick.NET
Topic: Dynamically Set FontPointSize for Text?
Replies: 10
Views: 17870

Re: Dynamically Set FontPointSize for Text?

Setting the Width makes sure that the text is scaled to fit inside the specified Width. You probably want to set both the Width and the Height in your case. This will make sure it fits inside that area. And with the `TextGravity` you can determine where the text is positioned. It looks like you want...