标题: [问题求助] 求助高手将CS代码转换成PS代码提高Gif质量 [打印本页]
作者: 5i365 时间: 2022-6-6 13:11 标题: 求助高手将CS代码转换成PS代码提高Gif质量
本帖最后由 5i365 于 2022-6-6 16:25 编辑
以前发过一个类似的将Png图片24位改为256色的贴子, 目前还没有解决!
我已经有PS的截屏保存GIF的代码了,但是GIF不清晰,有噪点, 体积大, 代码如下:
- Function Get-Screenshot($FilePath)
- {
- $ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
- $ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
- $DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
- $DrawingGraphics.CopyFromScreen($ScreenBounds.Location, [Drawing.Point]::Empty, $ScreenBounds.Size)
- $DrawingGraphics.Dispose()
- $ScreenshotObject.Save($FilePath, ([system.drawing.imaging.imageformat]::gif))
- $ScreenshotObject.Dispose()
- }
- Get-Screenshot "$HOME\Desktop\GIF.gif"
复制代码
刚刚在国外博客上,找到了优化GIF图像C#代码的两个CS类文件, 对C#不太懂, 请求同时精通C#和PS的前辈能帮忙转化一下, 提前感谢!
下面引用了某博主的关于GIF问题的描述和代码:
在C#中默认可以将bitmap保存为gif等格式,但是这种保存方法保存的gif会严重失真, 有噪点, 正常情况下的代码:
- System.Drawing.Bitmap b = new System.Drawing.Bitmap("c:\\original_image.gif");
- System.Drawing.Image thmbnail = b.GetThumbnailImage(100, 75, null, new IntPtr());
- thmbnail.Save("c:\\thumnail.gif", System.Drawing.Imaging.ImageFormat.Gif);
复制代码
找到了一个解决办法,保存出来的gif容量大减,但是效果还不错
这个方法就是就是"Octree"算法, 允许我们插入自己的算法来量子化我们的图像
一个好的"颜色量子化"算法应该考虑在两个像素颗粒之间填充与这两个像素颜色相近的过渡颜色,提供更多可视颜色空间
国外的Morgan Skinner提供了很好的"Octree"算法, 大家可以参考使用
使用OctreeQuantizer很方便:
- System.Drawing.Bitmap b = new System.Drawing.Bitmap("c:\\original_image.gif");
- System.Drawing.Image thmbnail = b.GetThumbnailImage(100, 75, null, new IntPtr());
- OctreeQuantizer quantizer = new OctreeQuantizer(255, 8);
- using (Bitmap quantized = quantizer.Quantize(thmbnail))
- {
- quantized.Save("c:\\thumnail.gif", System.Drawing.Imaging.ImageFormat.Gif);
- }
- OctreeQuantizer grayquantizer = new GrayscaleQuantizer();
- using (Bitmap quantized = grayquantizer.Quantize(thmbnail))
- {
- quantized.Save("c:\\thumnail.gif", System.Drawing.Imaging.ImageFormat.Gif);
- }
复制代码
根据试用,只需要两个类文件(OctreeQuantizer.cs,Quantizer.cs)即可运行,将这两个类文件的namespace改成你项目的名称就行
还有,需要在不安全编译的方式下编译,右击项目名称,在生成选项卡里选择"允许不安全代码"即可
两个CS类文件夹下载:
https://send.cm/d/Bym3
作者: flashercs 时间: 2022-6-6 19:47
png可以用第三方工具压缩成8bit
论坛有个工具 http://bcn.bathome.net/tool/pngquant.exe
可以的
作者: 5i365 时间: 2022-6-6 20:50
回复 2# flashercs
感谢大侠提醒!
用第三方使用起来不太方便
那两个cs,代码, 有一半以上是注释, 感觉PS应该也能实现
作者: 5i365 时间: 2022-6-6 21:10
回复 2# flashercs
又搜索到一个稍短C#代码的文章, 看中文翻译, 好像可以同时解决PNG和GIF的问题, 等待高手支招
http://www.wischik.com/lu/programmer/1bpp.html
作者: 5i365 时间: 2022-6-6 21:17
上面链接中的代码, 留个备份- using System;
-
- class Program
- {
- static void Main(string[] args)
- { System.Drawing.Bitmap b = new System.Drawing.Bitmap("test.jpg");
- SplashImage(b,0,0);
- //
- DateTime dtFaq=DateTime.Now;
- System.Drawing.Bitmap b0 = CopyToBpp(b,1);
- TimeSpan tsFaq=DateTime.Now-dtFaq;
- Console.WriteLine("GDI conversion time: "+tsFaq.ToString());
- SplashImage(b0,200,100);
- //
- DateTime dtLu=DateTime.Now;
- System.Drawing.Bitmap b1 = FaqCopyTo1bpp(b);
- TimeSpan tsLu=DateTime.Now-dtLu;
- Console.WriteLine("FAQ conversion time: "+tsLu.ToString());
- SplashImage(b1,400,200);
- //
- System.Threading.Thread.Sleep(1000);
- InvalidateRect(IntPtr.Zero, IntPtr.Zero, 1);
- }
-
- /// Copies a bitmap into a 1bpp/8bpp bitmap of the same dimensions, fast
- /// <param name="b">original bitmap</param>
- /// <param name="bpp">1 or 8, target bpp</param>
- /// <returns>a 1bpp copy of the bitmap</returns>
- static System.Drawing.Bitmap CopyToBpp(System.Drawing.Bitmap b, int bpp)
- { if (bpp!=1 && bpp!=8) throw new System.ArgumentException("1 or 8","bpp");
-
- // Plan: built into Windows GDI is the ability to convert
- // bitmaps from one format to another. Most of the time, this
- // job is actually done by the graphics hardware accelerator card
- // and so is extremely fast. The rest of the time, the job is done by
- // very fast native code.
- // We will call into this GDI functionality from C#. Our plan:
- // (1) Convert our Bitmap into a GDI hbitmap (ie. copy unmanaged->managed)
- // (2) Create a GDI monochrome hbitmap
- // (3) Use GDI "BitBlt" function to copy from hbitmap into monochrome (as above)
- // (4) Convert the monochrone hbitmap into a Bitmap (ie. copy unmanaged->managed)
-
- int w=b.Width, h=b.Height;
- IntPtr hbm = b.GetHbitmap(); // this is step (1)
- //
- // Step (2): create the monochrome bitmap.
- // "BITMAPINFO" is an interop-struct which we define below.
- // In GDI terms, it's a BITMAPHEADERINFO followed by an array of two RGBQUADs
- BITMAPINFO bmi = new BITMAPINFO();
- bmi.biSize=40; // the size of the BITMAPHEADERINFO struct
- bmi.biWidth=w;
- bmi.biHeight=h;
- bmi.biPlanes=1; // "planes" are confusing. We always use just 1. Read MSDN for more info.
- bmi.biBitCount=(short)bpp; // ie. 1bpp or 8bpp
- bmi.biCompression=BI_RGB; // ie. the pixels in our RGBQUAD table are stored as RGBs, not palette indexes
- bmi.biSizeImage = (uint)(((w+7)&0xFFFFFFF8)*h/8);
- bmi.biXPelsPerMeter=1000000; // not really important
- bmi.biYPelsPerMeter=1000000; // not really important
- // Now for the colour table.
- uint ncols = (uint)1<<bpp; // 2 colours for 1bpp; 256 colours for 8bpp
- bmi.biClrUsed=ncols;
- bmi.biClrImportant=ncols;
- bmi.cols=new uint[256]; // The structure always has fixed size 256, even if we end up using fewer colours
- if (bpp==1) {bmi.cols[0]=MAKERGB(0,0,0); bmi.cols[1]=MAKERGB(255,255,255);}
- else {for (int i=0; i<ncols; i++) bmi.cols[i]=MAKERGB(i,i,i);}
- // For 8bpp we've created an palette with just greyscale colours.
- // You can set up any palette you want here. Here are some possibilities:
- // greyscale: for (int i=0; i<256; i++) bmi.cols[i]=MAKERGB(i,i,i);
- // rainbow: bmi.biClrUsed=216; bmi.biClrImportant=216; int[] colv=new int[6]{0,51,102,153,204,255};
- // for (int i=0; i<216; i++) bmi.cols[i]=MAKERGB(colv[i/36],colv[(i/6)%6],colv[i%6]);
- // optimal: a difficult topic: http://en.wikipedia.org/wiki/Color_quantization
- //
- // Now create the indexed bitmap "hbm0"
- IntPtr bits0; // not used for our purposes. It returns a pointer to the raw bits that make up the bitmap.
- IntPtr hbm0 = CreateDIBSection(IntPtr.Zero,ref bmi,DIB_RGB_COLORS,out bits0,IntPtr.Zero,0);
- //
- // Step (3): use GDI's BitBlt function to copy from original hbitmap into monocrhome bitmap
- // GDI programming is kind of confusing... nb. The GDI equivalent of "Graphics" is called a "DC".
- IntPtr sdc = GetDC(IntPtr.Zero); // First we obtain the DC for the screen
- // Next, create a DC for the original hbitmap
- IntPtr hdc = CreateCompatibleDC(sdc); SelectObject(hdc,hbm);
- // and create a DC for the monochrome hbitmap
- IntPtr hdc0 = CreateCompatibleDC(sdc); SelectObject(hdc0,hbm0);
- // Now we can do the BitBlt:
- BitBlt(hdc0,0,0,w,h,hdc,0,0,SRCCOPY);
- // Step (4): convert this monochrome hbitmap back into a Bitmap:
- System.Drawing.Bitmap b0 = System.Drawing.Bitmap.FromHbitmap(hbm0);
- //
- // Finally some cleanup.
- DeleteDC(hdc);
- DeleteDC(hdc0);
- ReleaseDC(IntPtr.Zero,sdc);
- DeleteObject(hbm);
- DeleteObject(hbm0);
- //
- return b0;
- }
-
- /// Draws a bitmap onto the screen. Note: this will be overpainted
- /// by other windows when they come to draw themselves. Only use it
- /// if you want to draw something quickly and can't be bothered with forms.
- /// <param name="b">the bitmap to draw on the screen</param>
- /// <param name="x">x screen coordinate</param>
- /// <param name="y">y screen coordinate</param>
- static void SplashImage(System.Drawing.Bitmap b, int x, int y)
- { // Drawing onto the screen is supported by GDI, but not by the Bitmap/Graphics class.
- // So we use interop:
- // (1) Copy the Bitmap into a GDI hbitmap
- IntPtr hbm = b.GetHbitmap();
- // (2) obtain the GDI equivalent of a "Graphics" for the screen
- IntPtr sdc = GetDC(IntPtr.Zero);
- // (3) obtain the GDI equivalent of a "Graphics" for the hbitmap
- IntPtr hdc = CreateCompatibleDC(sdc);
- SelectObject(hdc,hbm);
- // (4) Draw from the hbitmap's "Graphics" onto the screen's "Graphics"
- BitBlt(sdc,x,y,b.Width,b.Height,hdc,0,0,SRCCOPY);
- // and do boring GDI cleanup:
- DeleteDC(hdc);
- ReleaseDC(IntPtr.Zero,sdc);
- DeleteObject(hbm);
- }
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- public static extern bool DeleteObject(IntPtr hObject);
-
- [System.Runtime.InteropServices.DllImport("user32.dll")]
- public static extern int InvalidateRect(IntPtr hwnd, IntPtr rect, int bErase);
-
- [System.Runtime.InteropServices.DllImport("user32.dll")]
- public static extern IntPtr GetDC(IntPtr hwnd);
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- public static extern IntPtr CreateCompatibleDC(IntPtr hdc);
-
- [System.Runtime.InteropServices.DllImport("user32.dll")]
- public static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc);
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- public static extern int DeleteDC(IntPtr hdc);
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- public static extern IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- public static extern int BitBlt(IntPtr hdcDst, int xDst, int yDst, int w, int h, IntPtr hdcSrc, int xSrc, int ySrc, int rop);
- static int SRCCOPY = 0x00CC0020;
-
- [System.Runtime.InteropServices.DllImport("gdi32.dll")]
- static extern IntPtr CreateDIBSection(IntPtr hdc, ref BITMAPINFO bmi, uint Usage, out IntPtr bits, IntPtr hSection, uint dwOffset);
- static uint BI_RGB = 0;
- static uint DIB_RGB_COLORS=0;
- [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public struct BITMAPINFO
- { public uint biSize;
- public int biWidth, biHeight;
- public short biPlanes, biBitCount;
- public uint biCompression, biSizeImage;
- public int biXPelsPerMeter, biYPelsPerMeter;
- public uint biClrUsed, biClrImportant;
- [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray, SizeConst=256)]
- public uint[] cols;
- }
-
- static uint MAKERGB(int r,int g,int b)
- { return ((uint)(b&255)) | ((uint)((r&255)<<8)) | ((uint)((g&255)<<16));
- }
-
- /// Copies a bitmap into a 1bpp bitmap of the same dimensions, slowly, using code from Bob Powell's GDI+ faq http://www.bobpowell.net/onebit.htm
- /// <param name="b">original bitmap</param>
- /// <returns>a 1bpp copy of the bitmap</returns>
- static System.Drawing.Bitmap FaqCopyTo1bpp(System.Drawing.Bitmap b)
- { int w=b.Width, h=b.Height; System.Drawing.Rectangle r = new System.Drawing.Rectangle(0,0,w,h);
- if (b.PixelFormat!=System.Drawing.Imaging.PixelFormat.Format32bppPArgb)
- { System.Drawing.Bitmap temp=new System.Drawing.Bitmap(w,h,System.Drawing.Imaging.PixelFormat.Format32bppPArgb);
- System.Drawing.Graphics g=System.Drawing.Graphics.FromImage(temp);
- g.DrawImage(b,r,0,0,w,h,System.Drawing.GraphicsUnit.Pixel);
- g.Dispose(); b=temp;
- }
- System.Drawing.Imaging.BitmapData bdat = b.LockBits(r,System.Drawing.Imaging.ImageLockMode.ReadOnly,b.PixelFormat);
- System.Drawing.Bitmap b0 = new System.Drawing.Bitmap(w,h,System.Drawing.Imaging.PixelFormat.Format1bppIndexed);
- System.Drawing.Imaging.BitmapData b0dat=b0.LockBits(r,System.Drawing.Imaging.ImageLockMode.ReadWrite,System.Drawing.Imaging.PixelFormat.Format1bppIndexed);
- for(int y=0; y<h; y++)
- { for (int x=0; x<w; x++)
- { int index = y*bdat.Stride+(x*4);
- if (System.Drawing.Color.FromArgb(System.Runtime.InteropServices.Marshal.ReadByte(bdat.Scan0,index+2),System.Runtime.InteropServices.Marshal.ReadByte(bdat.Scan0,index+1),System.Runtime.InteropServices.Marshal.ReadByte(bdat.Scan0,index)).GetBrightness()>0.5f)
- { int index0 = y*b0dat.Stride+(x>>3);
- byte p=System.Runtime.InteropServices.Marshal.ReadByte(b0dat.Scan0,index0);
- byte mask=(byte)(0x80>>(x&0x7));
- System.Runtime.InteropServices.Marshal.WriteByte(b0dat.Scan0,index0,(byte)(p|mask));
- }
- }
- }
- b0.UnlockBits(b0dat);
- b.UnlockBits(bdat);
- return b0;
- }
- }
复制代码
作者: flashercs 时间: 2022-6-7 07:55
链接:https://pan.baidu.com/s/1GxDNCD1iU3A8OsJLX2sa-w
提取码:bdec
作者: 5i365 时间: 2022-6-7 10:43
回复 6# flashercs
感谢大侠帮忙
生成的文件,查看属性, 颜色已经变成了8位, 但是却变成了灰度, 另外体积也很大,
可能我对楼上贴出的代码理解错了, 那个代码不能8位彩色?
实际手动截图,存成8位彩色的PNG和GIF, 都小很多
看来只能使用1楼提到的原子量化函数了
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |