Search found 25563 matches

by fmw42
2019-08-28T22:57:21-07:00
Forum: Users
Topic: Deskewing and Cropping Scans using ImageMagick
Replies: 3
Views: 11642

Re: Deskewing and Cropping Scans using ImageMagick

The problem with your trim is that your light gray background has dark spots in it. It is not a nearly solid color. Look carefully at your image at full resolution. Also you have used white for your deskew background, which is not close enough to your light gray color. So change your background colo...
by fmw42
2019-08-28T16:23:45-07:00
Forum: Users
Topic: Watermarking a TIFF only happens on the thumbnail
Replies: 5
Views: 9858

Re: Watermarking a TIFF only happens on the thumbnail

Yes, PS is Photoshop. They do some strange things with layers. And the watermark, may not be contained in the layer data but could be in one of the proprietary profiles in the Tiff file. Furthermore, I have no idea how the file was created, so cannot say where or why the watermark does not show. If ...
by fmw42
2019-08-28T16:20:54-07:00
Forum: Users
Topic: Don't use linear light when enlarging with Lanczos et al
Replies: 27
Views: 61511

Re: Don't use linear light when enlarging with Lanczos et al

Using linear colors was studied by Nicolas Robidoux. He suggested that in his opinion, one got less distracting artifacts with certain resampling filters. But someone who wants a sharper image and is willing to take the other artifacts, might like it better with non-linear colors or with other resam...
by fmw42
2019-08-28T16:15:48-07:00
Forum: Consulting
Topic: Paid Consulting. Multiple color models and replication
Replies: 2
Views: 66804

Re: Multiple color models and replication

Please modify your post to confirm it is Paid consulting; otherwise, let us know and we will move it to the Users forum. Please clarify what you mean by "plot it to a PDF". Do you just mean convert it to a PDF -- that is imbed the raster image into a vector PDF shell? If so, why would the ...
by fmw42
2019-08-28T12:39:40-07:00
Forum: Users
Topic: Watermarking a TIFF only happens on the thumbnail
Replies: 5
Views: 9858

Re: Watermarking a TIFF only happens on the thumbnail

With ImageMagick 7, use magick not convert. I do not understand the issue. Your input tif already has the watermark on it. Your incoming.tif file has several layers and you are only processing the first one. Photoshop does its own thing with multi-layer images. I have no idea how your input TIFF was...
by fmw42
2019-08-28T08:36:47-07:00
Forum: Users
Topic: rize and add radial-gradient background
Replies: 7
Views: 11631

Re: rize and add radial-gradient background

try

radial-gradient:LightGray-white

the first argument in your command, whichwas white, will replace black, so you would be getting a white and light gray gradient. It is still radial, but may not look very much so.
by fmw42
2019-08-27T22:00:10-07:00
Forum: Kudos and Rants
Topic: what is happening to my account
Replies: 1
Views: 66701

Re: what is happening to my account

It is possible that the server crashed and lost your account. Note that accounts are deleted if they contain SPAM. I do not have control to retrieve any accounts. But I do not see your username listed as being deleted recently.
by fmw42
2019-08-27T14:34:56-07:00
Forum: Users
Topic: Change DPI while keeping resolution
Replies: 32
Views: 67534

Re: Change DPI while keeping resolution

Pixel size should not be affected by either -units or -density. So I do not understand your comment about it resizing the image. Units and -alpha should also be set after reading in the raster input. So your command should be convert input.exr -alpha off -units PixelPerInch -density 180 -depth 32 ou...
by fmw42
2019-08-27T09:33:30-07:00
Forum: Users
Topic: rize and add radial-gradient background
Replies: 7
Views: 11631

Re: rize and add radial-gradient background

I am not sure if I understand, but here is what I think you might want. If I assume you want the output to be 200x118. Then I resize your image to 84x84. Pad to 200x84. Then create the linear gradient mirror effect with a 200x34 bottom part. Append the two. Then composite that over a radial gradient...
by fmw42
2019-08-27T09:01:21-07:00
Forum: Users
Topic: rize and add radial-gradient background
Replies: 7
Views: 11631

Re: rize and add radial-gradient background

Your command as written does not produce your output given the input you provided. So I am not sure what you are trying to do with that command. You have not provided the version of ImageMagick, only the version of your OS Ubuntu. If you do not want any space between two images, just use -append. Th...
by fmw42
2019-08-26T23:26:05-07:00
Forum: Bugs
Topic: Bug: convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernel/1395
Replies: 9
Views: 104766

Re: Bug: convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernel/1395

I am not an expert on this, but see https://imagemagick.org/script/architecture.php Note, that under Windows, you might have an issue with TDR (Timeout Detection and Recovery of GPUs). Its purpose is to detect runaway tasks hanging the GPU by using an execution time threshold. For some older low-end...
by fmw42
2019-08-26T21:51:02-07:00
Forum: Users
Topic: A PostgreSQL database
Replies: 1
Views: 6984

Re: A PostgreSQL database

ImageMagick does not interface with database software. It can do the conversion, but you have to do the file system operations to your database.
by fmw42
2019-08-26T21:34:14-07:00
Forum: Users
Topic: How to read the dpi resolution of an image
Replies: 6
Views: 21409

Re: How to read the dpi resolution of an image

I do not see anything about density in the EXR documentation at https://www.openexr.com/documentation/R ... eFiles.pdf
by fmw42
2019-08-26T21:20:54-07:00
Forum: Users
Topic: Change DPI while keeping resolution
Replies: 32
Views: 67534

Re: Change DPI while keeping resolution

I tried setting the density and units with ImageMagick. But neither it nor exiftool report either of them. convert doll_small.exr -units pixelsperinch -density 72 x.exr identify -verbose x.exr Image: x.exr Format: EXR (High Dynamic-range (HDR)) Class: DirectClass Geometry: 500x489+0+0 Units: Undefin...
by fmw42
2019-08-26T21:14:42-07:00
Forum: Users
Topic: Change DPI while keeping resolution
Replies: 32
Views: 67534

Re: Change DPI while keeping resolution

But your command is incorrect syntax for ImageMagick. You need to specify the density after reading a raster image. If it does not set the density for EXR output, then you will have to request an enhancement. How are you determining that the output density is incorrect -- what tool? Have you tried E...