Search found 15 matches
- 2019-01-16T23:25:12-07:00
- Forum: Magick++
- Topic: resize same image multiple times for different sizes
- Replies: 4
- Views: 83514
Re: resize same image multiple times for different sizes
Thanks for confirming this
- 2019-01-16T22:47:48-07:00
- Forum: Magick++
- Topic: resize same image multiple times for different sizes
- Replies: 4
- Views: 83514
Re: resize same image multiple times for different sizes
What script? I meant the way the command line works, you can give multiple commands in a single line and I read some posts here telling that way imagemagick provide some performance improvements. I was trying to improve performance of my application which uses imagemagick ( imagemagick is eating CPU ...
- 2019-01-10T23:54:02-07:00
- Forum: Magick++
- Topic: resize same image multiple times for different sizes
- Replies: 4
- Views: 83514
resize same image multiple times for different sizes
Hi all,
Is it possible to resize same image multiple times for different sizes in single api, same way script is doing?
Thanks in advance
Is it possible to resize same image multiple times for different sizes in single api, same way script is doing?
Thanks in advance
- 2019-01-10T23:35:19-07:00
- Forum: Magick++
- Topic: 8 Bit BMP Image
- Replies: 2
- Views: 76742
Re: 8 Bit BMP Image
Hi Rodlie,
Thanks for your reply. I just used the api as you suggested.
Is the per pixel will take 4 bits here? Is the one bit for alpha ?
Thanks for your reply. I just used the api as you suggested.
Is the per pixel will take 4 bits here? Is the one bit for alpha ?
- 2019-01-10T08:51:15-07:00
- Forum: Magick++
- Topic: 8 Bit BMP Image
- Replies: 2
- Views: 76742
8 Bit BMP Image
Hi,
Is some one aware about Magick++ API for creating 8 bitmap (1 byte per pixel).
I am using Imagemagick version 7
Thanks in advance
Is some one aware about Magick++ API for creating 8 bitmap (1 byte per pixel).
I am using Imagemagick version 7
Thanks in advance
- 2019-01-08T03:12:19-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Thanks for your reply. It will test the performance of draw as well. As you said, with annotate we can draw text with single API call. I just want to know whats the in Magick++ api to create 8 bit bmp image. I didnt see any api for that?? I am sorry that I am asking too many queries in a single ...
- 2019-01-07T21:10:44-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Thanks for the comment! I am going keep the sample algorithm as as now for scaling.
Is there any difference between annotation and label in terms of performs? Or which is better API for text rendering?
Is there any difference between annotation and label in terms of performs? Or which is better API for text rendering?
- 2019-01-07T19:54:49-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Any thoughts???
- 2019-01-07T05:25:41-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Interesting! As you said, I have already done the below steps ( disabled HDRI, Q length is 8 bit) except disabling OpenMP. Those steps improved performance a lot. I am not doing complex steps, doing text to bmp image conversion basically. But this is very frequent mostly less than a second. Is there ...
- 2019-01-06T21:43:14-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Right now we don't have an option for GPU :(. This is an embedded device we have the limitation over hardware resources. Only thing I am trying to achieve is optimize as much as possible. Since you guys are expert in imagemagick, please suggest some of the performance improvement tricks from ...
- 2019-01-06T06:10:05-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Thanks dlemstra by confirming API :) But now I am wondering about the performance. I wanted to scale the image every second or even less. I have tried using "resize" API and then used "scale" API which is even better. And then I have used sample API which makes the cpu usage even better. This will ...
- 2019-01-05T23:31:56-07:00
- Forum: Developers
- Topic: Cannot find colors.xml?
- Replies: 1
- Views: 14748
Re: Cannot find colors.xml?
Hi,
I am not sure this will help you or not. I have faced same kind of issue, you probably need to set environment variable "MAGICK_CONFIGURE_PATH".
I am not sure this will help you or not. I have faced same kind of issue, you probably need to set environment variable "MAGICK_CONFIGURE_PATH".
- 2019-01-05T23:20:54-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Hi, Thanks for your reply, I didnt see any API called SetImageOption in Magick++. I have seen another api callled "defineValue" where I can give magick option as "bmp" and key as "subtype" and value as "ARGB1555". Is it the right API? How can I get bmp pixels from Image object created???
- 2019-01-05T11:37:03-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Re: Bitmap ARGB1555 image format
Hi,
Thanks for your quick response.
I am using ImageMagick 7.0.7-31 and I am looking for the APIs, since I am using ImageMagick++.
Thanks for your quick response.
I am using ImageMagick 7.0.7-31 and I am looking for the APIs, since I am using ImageMagick++.
- 2019-01-05T11:26:24-07:00
- Forum: Developers
- Topic: Bitmap ARGB1555 image format
- Replies: 15
- Views: 34112
Bitmap ARGB1555 image format
Hi, I am new to imagemagick and started using ImageMagic++ api for the image operations. So far its a great product, but I need help from you guys. I need to create a bmp image with ARGB1555 (16 bit), since I need to pass pixels as ARGB1555 to hardware(and its support only this format). I could not ...