Search found 7 matches

by sadasar
2016-08-31T06:01:28-07:00
Forum: Users
Topic: How to install ImageMagick on windows for Visual Studio 2015
Replies: 2
Views: 3193

How to install ImageMagick on windows for Visual Studio 2015

Hello, I dowloaded and successfully installed the binary files. But I cannot include the header Magick++.h in my VC++ project. I added in the property page C/C++ ---> General ---> Additional Include directories C:\Program Files\ImageMagick-7.0.2-Q16\include and also in Linker ---> Additional Dependa...
by sadasar
2016-08-31T05:18:41-07:00
Forum: Developers
Topic: How can I convert bmp to linear jpeg
Replies: 8
Views: 13790

Re: How can I convert bmp to linear jpeg

Great thanks
by sadasar
2016-08-31T05:04:17-07:00
Forum: Developers
Topic: How can I convert bmp to linear jpeg
Replies: 8
Views: 13790

Re: How can I convert bmp to linear jpeg

So I apply the quality and gamma function to the bmp image and then transform it to jpg?
by sadasar
2016-08-31T03:35:42-07:00
Forum: Developers
Topic: How can I convert bmp to linear jpeg
Replies: 8
Views: 13790

Re: How can I convert bmp to linear jpeg

Yes your right the -quality is what I'm looking for maybe -gamma also but I could not find any function that takes as parameters the quality, the gamma and the other parameters and transforms the image from bmp to jpg using this parameters. Everything around 10Mb(the original is 80Mb) is fine for me.
by sadasar
2016-08-31T01:55:05-07:00
Forum: Developers
Topic: How can I convert bmp to linear jpeg
Replies: 8
Views: 13790

Re: How can I convert bmp to linear jpeg

Can I do that in C++ ? I have a lot of bmp images that are 80MB each one. So it takes a lot of memory, that is way I want to convert it to JPEG. When I use the CImage functions the new jpeg image is only 3MB I lose a lot of information. So that is why I want to be able to change the parameters of th...
by sadasar
2016-08-31T01:20:58-07:00
Forum: Developers
Topic: How can I convert bmp to linear jpeg
Replies: 8
Views: 13790

How can I convert bmp to linear jpeg

Hello,

I want to convert a bmp image to jpeg. But I want to be able to change the parameters of the jpeg image that is created. I want to use linear gamma, because i want to get linear jpeg in the end. Is there a function that does this?

Thanks