Search found 36 matches

by jauson
2018-09-22T23:18:00-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Neither +profile nor -strip can fix the output that doesn't use either.
by jauson
2018-09-20T18:53:32-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

That does produce the expected result. I noticed the 2nd save gets a little lighter, bigger in size. # increase in size convert -verbose -density 288 -colorspace sRGB crosses.pdf -alpha remove +profile '*' out-2-x.pdf # lighter increase in size convert -verbose -density 288 -colorspace sRGB out-2-x....
by jauson
2018-09-19T21:57:45-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

GS 9.24 and Version: ImageMagick 6.9.10-11 Q16 x64 2018-08-29 Windows 8.1
by jauson
2018-09-19T10:12:48-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Crosses.pdf includes a profile that is incompatible with the PDF output type. The input is sRGB and the output is gray alpha. You have two choices, strip the profile or force sRGB output with +profile sRGB or -type sRGB. Place either just before the output image filename on the command-line. Why do...
by jauson
2018-09-15T21:27:21-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Like this?

Code: Select all

convert -verbose -density 288 -colorspace sRGB crosses.pdf  -alpha remove +profile sRGB out-2-x.pdf
convert -verbose -density 288 -colorspace sRGB out-2-x.pdf  -alpha remove +profile sRGB out-2-x-2nd-save.pdf

It's still producing the same results.
by jauson
2018-09-13T14:44:39-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

convert -verbose -density 288 -colorspace sRGB crosses.pdf -alpha remove out-2-x.pdf convert -verbose -density 288 -colorspace sRGB out-2-x.pdf -alpha remove out-2-x-2nd-save.pdf Another sample of a bad results, can't modify a pdf more then once. I tried to clean it and recreate the pdf with `mutoo...
by jauson
2018-09-13T12:49:31-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Seems to be a problem how it's saving multi-paged pdfs?

Code: Select all

convert -verbose -density 288 crosses.pdf -colorspace sRGB -alpha remove out-2-x.pdf
convert -verbose  out-2-x.pdf x.png
by jauson
2018-09-13T10:30:11-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

When I do this command on on multi-page crosses pdf: convert -verbose crosses.pdf crosses.png I get 2 images, with regular sized crosses, https://imgur.com/4BoShyL Then rotating the same crosses, and running this: convert -verbose -density 288 crosses.pdf -colorspace sRGB +repage -virtual-pixel Whit...
by jauson
2018-09-12T16:09:29-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

It created 3 files, 2 files with 3 little crosses and an empty x.png. https://i.imgur.com/JGhgvhC.png convert -verbose rotate-pdf-1-5deg-out-x.pdf x.png magick-10756ZjGD0ApxU51H1 PNG 500x500 500x500+0+0 8-bit sRGB 24162B 0.000u 0:00.002 magick-10756ZjGD0ApxU51H2 PNG 500x500 500x500+0+0 8-bit sRGB 24...
by jauson
2018-09-12T16:03:54-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

I just tried this on a fresh Windows 10 machine with GS 9.24 and Version: ImageMagick 6.9.10-11 Q16 x64 2018-08-29 http://www.imagemagick.org

Still getting same results. https://imgur.com/a/SrTkjQl
by jauson
2018-09-12T12:16:47-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

I updated the dropbox with the results im seeing. file rotate-pdf-1-5deg-out-rev-x.pdf
by jauson
2018-09-12T12:07:50-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

gswin64c.exe --version
9.21


Even updating to 9.24, still same output.
by jauson
2018-09-12T11:30:10-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Still seeing issue with multi-paged pdf. The output is proper, it rotates each page, but the second rotate creates 3 little images per page, or single page. convert -density 288 crosses.pdf -colorspace sRGB +repage -virtual-pixel White -distort SRT '5' -alpha remove rotate-pdf-1-5deg-out.pdf convert...
by jauson
2018-09-12T11:12:38-07:00
Forum: Users
Topic: How to rotate pdf and undo rotating? Gives unexpected results.
Replies: 24
Views: 19748

Re: How to rotate pdf and undo rotating? Gives unexpected results.

Upgraded to Version: ImageMagick 6.9.10-11 Q16 x64, getting expected results.