Search found 5 matches
- 2014-09-26T00:29:35-07:00
- Forum: Bugs
- Topic: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
- Replies: 8
- Views: 8670
Re: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
Can you explain me how I can loop through the .JPM pages and get their width and height?
- 2014-09-19T08:09:45-07:00
- Forum: Bugs
- Topic: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
- Replies: 8
- Views: 8670
Re: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
The format will be available in the next release (IM 6.8.9-8), you could do the following for now:
convert j2k:c:\yourfolder\image.jpm image.png
or in Magick.NET:
using (MagickImage image = new MagickImage("j2k:c:\yourfolder\image.jpm"))
{
image.Write("image.png");
}
I tried the ...
convert j2k:c:\yourfolder\image.jpm image.png
or in Magick.NET:
using (MagickImage image = new MagickImage("j2k:c:\yourfolder\image.jpm"))
{
image.Write("image.png");
}
I tried the ...
- 2014-09-18T04:27:20-07:00
- Forum: Bugs
- Topic: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
- Replies: 8
- Views: 8670
Re: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
Can you remove the 'DirectoryName = ' part and try again?
Didn't work :/ . And I don't know why there was the "DirectoryName = " at the beginning.
It don't works with the ImageMagick.NET and with the console.
C:\Users\hueser>cd C:\tmp
C:\tmp>identify.exe "C:\tmp\JPGATTREXC-2\JPGATTREXC-2\bin ...
Didn't work :/ . And I don't know why there was the "DirectoryName = " at the beginning.
It don't works with the ImageMagick.NET and with the console.
C:\Users\hueser>cd C:\tmp
C:\tmp>identify.exe "C:\tmp\JPGATTREXC-2\JPGATTREXC-2\bin ...
- 2014-09-18T01:24:41-07:00
- Forum: Bugs
- Topic: Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
- Replies: 8
- Views: 8670
Identify .JPM-File | Missing "IM_MOD_RL_JPM_.dll"
Hello community,
I have a problem with identify a .JPM file. A .JPM file is a JPEG-2000 Part 5 multipage file.
If I try to identify it I get the error:
C:\Users\hueser>cd c:\tmp
C:\tmp>identify.exe DirectoryName = "C:\tmp\JPGATTREXC-2\JPGATTREXC-2\bin\Debug\testFiles\JPG2000\image.jpm"
identify ...
I have a problem with identify a .JPM file. A .JPM file is a JPEG-2000 Part 5 multipage file.
If I try to identify it I get the error:
C:\Users\hueser>cd c:\tmp
C:\tmp>identify.exe DirectoryName = "C:\tmp\JPGATTREXC-2\JPGATTREXC-2\bin\Debug\testFiles\JPG2000\image.jpm"
identify ...
- 2014-09-18T00:01:58-07:00
- Forum: Magick.NET
- Topic: .JPM error | IM_MOD_RL_JPM_.dll missing
- Replies: 0
- Views: 10114
.JPM error | IM_MOD_RL_JPM_.dll missing
Hello community,
I have a problem with reading inforamtions from a .JPM file. A .JPM file is a JPEG-2000 Part 5 multipage file.
If I try to use my .NET in c# to read the length or something I get errors.
The error says that a "IM_MOD_RL_JPM_.dll is mising".
Here the Error:
C:\Users\hueser>cd c ...
I have a problem with reading inforamtions from a .JPM file. A .JPM file is a JPEG-2000 Part 5 multipage file.
If I try to use my .NET in c# to read the length or something I get errors.
The error says that a "IM_MOD_RL_JPM_.dll is mising".
Here the Error:
C:\Users\hueser>cd c ...