Search found 19 matches
- 2011-11-21T10:58:16-07:00
- Forum: Magick++
- Topic: reading .pict file fails
- Replies: 0
- Views: 7178
reading .pict file fails
Hello, I have an application that can read and write a number of image formats using Magick++ API. However, the following piece of code fails to read input.pict which comes with ImageMagick installation (..\PerlMagick\t\input.pict) try { QString s = QDir::toNativeSeparators(fileName.toUtf8()); std ...
- 2011-08-15T02:17:27-07:00
- Forum: Developers
- Topic: About windows 7 support
- Replies: 0
- Views: 3180
About windows 7 support
Hello, I have been developing over ImageMagick (using Magick++ API) for over a year, on Win XP. I am planning to port the same version (6.6.0-7) to Win 7. I cant reach the documentation of version 6.6.0-7 to check its full Win 7 compatibility. Would anyone give any information about Win 7 support of ...
- 2010-06-16T06:30:02-07:00
- Forum: Users
- Topic: Confused about missing delegates and static MT libraries
- Replies: 9
- Views: 22429
Re: Confused about missing delegates and static MT libraries
Thank you.
I have just installed it but it does not include a Magick++_demos directory inside..
I have just installed it but it does not include a Magick++_demos directory inside..
- 2010-06-16T01:08:36-07:00
- Forum: Users
- Topic: Confused about missing delegates and static MT libraries
- Replies: 9
- Views: 22429
Re: Confused about missing delegates and static MT libraries
Hello, I have been suffering from the same problem. First I build the libraries exactly as it is told in http://www.imagemagick.org/script/install-source.php#windows under the heading Install from Windows Source Then, I link all the produced libraries into my application but I get many linkage ...
- 2010-06-04T04:52:32-07:00
- Forum: Users
- Topic: can't load magick dlls from the same path of the executable
- Replies: 0
- Views: 4498
can't load magick dlls from the same path of the executable
Hi, I am using magick++ API for my project. I am developing an image processing app on Win XP. I want all the related dlls to be loaded from the same folder of the app exe. But each time I load a png for instance, visual studio loads the dll from the installation path of the magick: "C:\Program ...
- 2010-04-05T22:55:59-07:00
- Forum: Users
- Topic: Magick++ how to extract alpha channel
- Replies: 0
- Views: 3043
Magick++ how to extract alpha channel
Hi, how can I extract the alpha channel of the image, using Magick++ ?
I will then, modify the color of the extracted alpha channel and set it back to the original image.
Thanks.
I will then, modify the color of the extracted alpha channel and set it back to the original image.
Thanks.
- 2010-04-03T14:04:10-07:00
- Forum: Users
- Topic: [Magick++] pixelColor() transparency problem
- Replies: 4
- Views: 10434
Re: [Magick++] pixelColor() transparency problem
Have you found the answer?
maybe could help..
maybe
Code: Select all
void matte(const bool matteFlag_)
- 2010-04-03T13:47:46-07:00
- Forum: Developers
- Topic: how to change the transparency(opacity) of an image
- Replies: 6
- Views: 20825
Re: how to change the transparency(opacity) of an image
Thanks..
anybody to offer a solution using magick++ ?
Best.
anybody to offer a solution using magick++ ?
Best.
- 2010-04-02T12:48:05-07:00
- Forum: Developers
- Topic: how to change the transparency(opacity) of an image
- Replies: 6
- Views: 20825
Re: how to change the transparency(opacity) of an image
I want to set the channel to same value.
Thanks.
Thanks.
- 2010-04-02T11:07:20-07:00
- Forum: Developers
- Topic: how to change the transparency(opacity) of an image
- Replies: 6
- Views: 20825
Re: how to change the transparency(opacity) of an image
I am developing an image processing tool that allows users to read/manipulate different image formats and set/change the attributes of them. I am using magick++ api, so command line processing is not the way I need. Basically, I want to enable the user to change the transparency of a png file. I ...
- 2010-04-02T00:37:53-07:00
- Forum: Developers
- Topic: how to change the transparency(opacity) of an image
- Replies: 6
- Views: 20825
how to change the transparency(opacity) of an image
Hello, I have a png image and I want to change its alpha channel transparency. There are some functions such as opacity(), backgroundColor(), transparent(), etc. Suppose that I m receiving the transparency threshold(0-255) from the user in runtime. Which one to use and how? should I write the image ...
- 2010-03-22T06:12:34-07:00
- Forum: Users
- Topic: how to statically link magick++ on windows
- Replies: 1
- Views: 5211
how to statically link magick++ on windows
hello, I have been working with the dll version of ImageMagick and Magick++ for a while. Because of the dynamically linkage of the dlls, it takes long time to build the project. I think statically linking would solve the problem. I have downloaded and installed the Q16-static.exe version, but there ...
- 2010-03-11T01:10:33-07:00
- Forum: Users
- Topic: how to update Image
- Replies: 0
- Views: 2901
how to update Image
hello, I have an Image that is initiliazed in the constructor of my class. I have a gui that changes the quality of the jpeg image dynamically, I change the quality of the jpeg with img.quality after the user updates the quality from the gui. Then I convert the Image to a QT image. Now, I want to ...
- 2010-02-25T04:03:46-07:00
- Forum: Users
- Topic: "Access violation writing" exception while creating an Image
- Replies: 6
- Views: 14610
Re: "Access violation writing" exception while creating an I
I think it is related with the target file name.
File name should contain \\ instead of \ to reach child folder.
For instance "C:\target.jpg" is not valid while "C:\\target.jpg" is valid.
Small but an annoying point.
File name should contain \\ instead of \ to reach child folder.
For instance "C:\target.jpg" is not valid while "C:\\target.jpg" is valid.
Small but an annoying point.
- 2010-02-25T02:31:53-07:00
- Forum: Users
- Topic: "Access violation writing" exception while creating an Image
- Replies: 6
- Views: 14610
Re: "Access violation writing" exception while creating an I
Hi again, i can now write an image to file by giving a target path manually, inside the code; but it wont write the image when the target is a dynamically allocated local string pointer. For instance, in my save() method, the following piece of code works img = new Image("lena.jpg"); img->magick ...