Search found 22 matches

by goldrian
Fri Aug 26, 2011 9:14 am
Forum: Example requests & Code samples
Topic: How to: rotate an ellipse
Replies: 3
Views: 3389

Re: How to: rotate an ellipse

Thank you Loic, I used the second method you suggested.
Thank you!
by goldrian
Wed Aug 03, 2011 10:57 pm
Forum: Example requests & Code samples
Topic: How to: rotate an ellipse
Replies: 3
Views: 3389

Re: How to: rotate an ellipse

Meanwhile I've tried using arcs, beziers... no way.
I can create a new image, draw an ellipse on it, rotate the image and publish the image on the other, but performance is too low.
I'm starting to think that it's not possible: panic! :cry:
by goldrian
Wed Aug 03, 2011 11:42 am
Forum: Example requests & Code samples
Topic: How to: rotate an ellipse
Replies: 3
Views: 3389

How to: rotate an ellipse

I need to draw rotated ellipses on a jpg image using GdPicture7.
I see that there is a GdPictureImaging.DrawRotatedRectangle method, but not an equivalent one for ellipses.
Any idea to achieve it? :?
Thanks!
by goldrian
Mon Jun 27, 2011 12:27 pm
Forum: Image Processing & Document Imaging
Topic: Exif problem
Replies: 5
Views: 3203

Re: Exif problem

Oh, well... If I save without "progressive" option it's ok! SO: SaveAsJPEG(gdRef,filename, 100, false); works I don't know if that's a normal behaviour for "progressive" jpg , however I don't need them to be progressive, so that's a solution. I leave this auto-answer here for oth...
by goldrian
Mon Jun 27, 2011 12:20 pm
Forum: Image Processing & Document Imaging
Topic: Exif problem
Replies: 5
Views: 3203

Re: Exif problem

Ew....another problem... now that I correctly set the exif data, I see that, while in memory, the image contains all the tags, but when saved it lose them. If I try to check the saved image reloading it or with an external exif reader program, it has no saved tags. I've set a TagsSetPreserve(true), ...
by goldrian
Mon Jun 27, 2011 11:47 am
Forum: Image Processing & Document Imaging
Topic: Exif problem
Replies: 5
Views: 3203

Re: Exif problem

Thank you, now I understand ...
I did look at the reference guide but It wasn't enough for me :mrgreen:
Thanks again
by goldrian
Mon Jun 27, 2011 11:01 am
Forum: Image Processing & Document Imaging
Topic: Exif problem
Replies: 5
Views: 3203

Exif problem

[C#, GdPicture.net 7] No exif data is written into the image.... where is the problem? GdPictureImaging gdi = new GdPictureImaging(); gdi.SetLicenseNumber("XXXXXXXXXXXXXXXX"); string value = "testMaker"; int imgId = gdi.CreateGdPictureImageFromFile(@"C:\test.jpg"); stri...