Jump to content

BoltBait

Administrator
  • Posts

    15,730
  • Joined

  • Last visited

  • Days Won

    405

Everything posted by BoltBait

  1. I don't think so... What is the difference between a square selection that is rotated 45* and a diamond shaped selection made using the magic wand?
  2. Looking for this? private static Image ResizeImage(Image image, int width, int height) { var destRect = new Rectangle(0, 0, width+1, height+1); var destImage = new Bitmap(width, height); destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution); using (var graphics = Graphics.FromImage(destImage)) using (var wrapMode = new ImageAttributes()) { wrapMode.SetWrapMode(WrapMode.Clamp); graphics.CompositingMode = CompositingMode.SourceCopy; graphics.CompositingQuality = CompositingQuality.HighQuality; graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; graphics.SmoothingMode = SmoothingMode.HighQuality; graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode); } return (Image)destImage; }
  3. Congratulations to all of the winners! I will add a banner ad to my site this weekend and rotate all of the images that got 5 or more votes. EDIT: ...and, it's done! The banner ad images are randomized according to vote count, so the winner comes up 37.5% of the time, second place comes up 25%, and the 3 third place images come up 12.5% of the time (each).
  4. No. Before switching operating systems, perhaps it would be wise to see if your most important programs run on that operating system?
  5. No one is given a head start. The number of votes each entry gets is accurate. The number of people who voted is off. If you refresh the page, it should update that number to be accurate.
  6. I think the tool you’re looking for is InkScape.
  7. Because of a quirk of the Paint.NET file type plugin system, you can't override built-in file types. Therefore, to support animated gif files, you must first install the agif plugin, then rename your file from MyFile.GIF to MyFile.AGIF and open it in Paint.NET. When finished making changes, you need to save your animated gif as MyFile.AGIF. Finally, to see the results in Windows/Explorer/etc., you must rename your MyFile.AGIF to MyFile.GIF. If you can't see the file extensions in file explorer, you need to enable that in the file explorer ribbon.
  8. I'm not exactly sure what you're getting at, but if you just want to render some text to the canvas, here's a tutorial: https://boltbait.com/pdn/CodeLab/help/tutorial4.php
  9. I have combined your threads. You are allowed to have ONE thread here in the Pictorium board.
  10. If you're trying to copy from inside a zip file and are getting this error, first unzip the file to your desktop and then copy the file from there. If not, your anti-virus software is probably being too aggressive.
  11. I just downloaded it and the download button worked fine. Maybe your anti-virus software is being overly protective.
  12. Oh, it saved correctly... the file name just doesn’t match the contents. If you change the extension to, I don’t know, .pdn it would probably load.
  13. You can also try putting Paint.NET in Avast’s white list.
  14. Did you also choose .png from the drop-down list? THAT is what determines the format. The other just changes the name.
  15. If I remember correctly, the default was 5 and we upped it to 7.
  16. I suspect your anti-virus software is being overly aggressive.
×
×
  • Create New...