Search found 64 matches

by graemeNPS
2010-04-21T14:38:16-07:00
Forum: Developers
Topic: generated temp files are not deleted
Replies: 7
Views: 48372

Re: generated temp files are not deleted

Hi, this command works, passed as array argv(as shown in earlier post), so that I know where the temp files are: [convert] [-define] [registry:temporary-path=C:\DOCUME~1\someuser\LOCALS~1\Temp\NPS_IM_0] [-auto-orient] [-size] [21260x12553] [C:\Documents and Settings\someuser\My Documents\somepath\IG...
by graemeNPS
2010-04-20T14:16:20-07:00
Forum: Developers
Topic: generated temp files are not deleted
Replies: 7
Views: 48372

Re: generated temp files are not deleted

Are you suggesting I amend our convert command for each call to IM (assuming /someWindowsTempPath/randomChars/ exists) to include a -define registry:temporary-path option? "convert -define registry:temporary-path=/someWindowTemppath/randomChars/ ..." or is there another way of setting MAGI...
by graemeNPS
2010-04-08T13:36:10-07:00
Forum: Developers
Topic: generated temp files are not deleted
Replies: 7
Views: 48372

generated temp files are not deleted

We use imagemagick to extract a jpg preview and jpg thumbnail from a wide variety of image file types, using a standard convert command to perform the initial extraction from (eg) a TIF file to a jpg preview, and then a resize on the jpg to get a thumbnail. We have a dll that statically links IM cod...
by graemeNPS
2010-02-09T14:57:17-07:00
Forum: Developers
Topic: app crashes if delegate.xml file not present
Replies: 1
Views: 4296

app crashes if delegate.xml file not present

We use imagemagick to extract a jpg preview and jpg thumbnail from a wide variety of image file types, using a standard convert command to perform the initial extraction from (eg) a PSD file to a jpg preview, and then a resize on the jpg to get a thumbnail. We have a dll that statically links IM cod...
by graemeNPS
2010-01-14T15:32:32-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

Re: PSD to JPG conversion takes extremely long time

Try using the following credentials:

ftp.northplains.com
User name: publicforum
Password: 543publicforum123
by graemeNPS
2010-01-14T10:12:11-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

Re: PSD to JPG conversion takes extremely long time

There is a sample image Sample_PSD_CMYK.psd in a zip at our public ftp site: ftp://publicforum:543publicforum123@northplains.com/Sample_PSD_CMYK.zip The sample image behaves like our client's files; it takes IM a long time to process. The zip also contains convertcommand.txt, which has some notes re...
by graemeNPS
2010-01-13T13:11:30-07:00
Forum: Developers
Topic: PSD file fails to open
Replies: 1
Views: 4769

PSD file fails to open

When I tried to open a client's PSD file with imdisplay.exe (by drag and drop in Windows), this message was displayed in four languages, centered in the image area: "This layered Photoshop file was not saved with a composite image." The image did not appear. GIMP 2.6.8 opened the file succ...
by graemeNPS
2010-01-13T08:46:34-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

Re: PSD to JPG conversion takes extremely long time

From our dll that implements imagemagick, I tried to call convert.exe directly: int r = system((char*)cmd.c_str()); where cmd.c_str() is like: [convert.exe "\\somevalidpath\bigimage.psd[0]" -resize 512x512 "\\somevalidtemppath\7944viewx.jpg"] to see if we could call convert.exe d...
by graemeNPS
2010-01-11T14:09:42-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

Re: PSD to JPG conversion takes extremely long time

I updated imdisplay.exe and other IM components using this installer: ImageMagick-6.5.8-10-Q8-windows-static.exe With this installed, when I run this command in a cmd prompt window in the image directory: convert bigimage.psd[0] bigimage.jpg the process finished in about 2 minutes. If I run this: co...
by graemeNPS
2010-01-11T09:36:17-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

Re: PSD to JPG conversion takes extremely long time

Thanks, but we already have image.psd[0] in our conversion string:
(from the original post) "convert -auto-orient -size 8858x11457 \\validpath\somecustomerfilename.psd[0]"

The ImageMagick libraries we statically link to are built in 8-bit mode from ImageMagick-6.5.5-8.zip sources.
by graemeNPS
2010-01-08T13:24:31-07:00
Forum: Developers
Topic: PSD to JPG conversion takes extremely long time
Replies: 16
Views: 36138

PSD to JPG conversion takes extremely long time

We use imagemagick to extract a jpg preview and jpg thumbnail from a wide variety of image file types, using a standard convert command to perform the initial extraction from (eg) a PSD file to a jpg preview, and then a resize on the jpg to get a thumbnail. We have a dll that statically links IM cod...
by graemeNPS
2009-08-14T12:16:31-07:00
Forum: Bugs
Topic: cannot extract a jpeg from some 16 bit psd files
Replies: 4
Views: 10940

Re: cannot extract a jpeg from some 16 bit psd files

For (eg) the fish.psd file from photoshop samples files directory, if I use this command line: >display fish.psd I get a Windows message box: display: unable to open X server @ display.c/DisplayImageCommand/420[No such file or directory] The following works OK, so my installation is OK: >convert fis...
by graemeNPS
2009-08-14T11:37:06-07:00
Forum: Bugs
Topic: cannot extract a jpeg from some 16 bit psd files
Replies: 4
Views: 10940

Re: cannot extract a jpeg from some 16 bit psd files

I initially tested with an IMDisplay Q16 version, but got the same results. I switched to IMDisplay (6.5.4.Q8) to see if it would make a difference. Today I have noticed that if I resave the file as a copy, it also works correctly in ImageMagick, both in our code and in IMDisplay. I am using Adobe P...
by graemeNPS
2009-08-13T13:08:59-07:00
Forum: Bugs
Topic: cannot extract a jpeg from some 16 bit psd files
Replies: 4
Views: 10940

cannot extract a jpeg from some 16 bit psd files

Our client has some 16bit PSD files that cannot be converted correctly by ImageMagick 6.4.6 SDK or displayed correctly by IMDisplay (6.5.4.Q8). The resulting images have incorrect colors, and chunks appears in the wrong places. However, other 16bit PSDs can be converted/displayed correctly. We have ...
by graemeNPS
2009-07-30T07:01:05-07:00
Forum: Bugs
Topic: crash if invalid modifed time in image file, IM 6.4.6
Replies: 4
Views: 9731

Re: crash if invalid modifed time in image file, IM 6.4.6

Using the ImageMagick-6.5.4-7-windows.zip, there was a build error when I built the windows project (VisualStaticMT.dsw == static MT libs): [mybuildpath]\ImageMagick-6.5.4\coders\mpc.c(575) : error C2143: syntax error : missing ')' before '{' The good news is, after fixing that minor error, the patc...