• Как в pyrogram получить все посты из канала?

    @estry Автор вопроса
    Нашел решение:
    app = Client("D:/1234156.session")
    app.start()
    
    for dialog in app.get_history('channels'):
        pass
    Ответ написан
    Комментировать
  • Ошибка аргумента функции. Как исправить?

    @estry Автор вопроса
    Решил проблему обратившись через класс Name

    То есть:

    class Name:
    
        a = A()
    
        @dp.message_handler(state=AddAccount.number)
        async def get(self, msg: types.Message):
            Name.а.create_session("test")
    Ответ написан
    Комментировать
  • Как растянуть картинку сохранив ее пропорции C#?

    @estry Автор вопроса
    Вот такой код работает как мне надо:
    public static System.Drawing.Image FixedSize(Image image, int Width, int Height, bool needToFill)
            {
                #region calculations
                int sourceWidth = image.Width;
                int sourceHeight = image.Height;
                int sourceX = 0;
                int sourceY = 0;
                double destX = 0;
                double destY = 0;
    
                double nScale = 0;
                double nScaleW = 0;
                double nScaleH = 0;
    
                nScaleW = ((double)Width / (double)sourceWidth);
                nScaleH = ((double)Height / (double)sourceHeight);
                if (!needToFill)
                {
                    nScale = Math.Min(nScaleH, nScaleW);
                }
                else
                {
                    nScale = Math.Max(nScaleH, nScaleW);
                    destY = (Height - sourceHeight * nScale) / 2;
                    destX = (Width - sourceWidth * nScale) / 2;
                }
    
                if (nScale > 1)
                    nScale = 1;
    
                int destWidth = (int)Math.Round(sourceWidth * nScale);
                int destHeight = (int)Math.Round(sourceHeight * nScale);
                #endregion
    
                System.Drawing.Bitmap bmPhoto = null;
                try
                {
                    bmPhoto = new System.Drawing.Bitmap(destWidth + (int)Math.Round(2 * destX), destHeight + (int)Math.Round(2 * destY));
                }
                catch (Exception ex)
                {
                    throw new ApplicationException(string.Format("destWidth:{0}, destX:{1}, destHeight:{2}, desxtY:{3}, Width:{4}, Height:{5}",
                        destWidth, destX, destHeight, destY, Width, Height), ex);
                }
                using (System.Drawing.Graphics grPhoto = System.Drawing.Graphics.FromImage(bmPhoto))
                {
                    grPhoto.InterpolationMode = InterpolationMode.HighQualityBicubic;
                    grPhoto.CompositingQuality = CompositingQuality.HighQuality;
                    grPhoto.SmoothingMode = SmoothingMode.HighQuality;
    
                    Rectangle to = new System.Drawing.Rectangle((int)Math.Round(destX), (int)Math.Round(destY), destWidth, destHeight);
                    Rectangle from = new System.Drawing.Rectangle(sourceX, sourceY, sourceWidth, sourceHeight);
                    //Console.WriteLine("From: " + from.ToString());
                    //Console.WriteLine("To: " + to.ToString());
                    grPhoto.DrawImage(image, to, from, System.Drawing.GraphicsUnit.Pixel);
                    //bmPhoto.Save(@"D:\final1.jpg");
                    return bmPhoto;
                }
            }
    Ответ написан
    Комментировать
  • Как выпарсить дату C#?

    @estry Автор вопроса
    Решил вот так
    string date = "03.09.2020 5:00:00";
    DateTime dt;
    if (DateTime.TryParse(date, DateTimeFormatInfo.CurrentInfo, DateTimeStyles.None, out dt))
    {
    }
    Ответ написан
    Комментировать
  • Как составить запроc SQLITE с DateTime?

    @estry Автор вопроса
    Е-мое. Надо вот так
    SELECT * FROM table WHERE (dateStart <= datetime('2020-08-24 08:00:00'))

    Всем спасибо. Разобрался
    Ответ написан
    Комментировать
  • RestSharp как установить proxy?

    @estry Автор вопроса
    Сам спросил, сам отвечу ;)
    string strProxyces = "87.34.132.43:8080@user:password";
    if (strProxyces!=String.Empty){
    string[] arrProxy = strProxyces.Split('@');
    string strProxyPort = arrProxy[0];
    string strLoginPass = arrProxy[1];

    string[] arrProxyPort = strProxyPort.Split(':');
    string strProxy = arrProxyPort[0];
    string strPort = arrProxyPort[1];

    string[] arrUserPass = strLoginPass.Split(':');
    string strUser = arrUserPass[0];
    string strPass = arrUserPass[1];

    int strPorts = Convert.ToInt32(strPort);

    project.SendInfoToLog("ПроксиПорт: " + strProxyPort);
    project.SendInfoToLog("ЛогинПасс: " + strLoginPass);
    project.SendInfoToLog("Прокси: " + strProxy);
    project.SendInfoToLog("Порт: " + strPorts);
    project.SendInfoToLog("Логин: " + strUser);
    project.SendInfoToLog("Пасс: " + strPass);

    ApiClient.Proxy = new System.Net.WebProxy(strProxy, strPorts){
    UseDefaultCredentials = false,
    Credentials = new System.Net.NetworkCredential(strUser, strPass)
    };
    }
    Ответ написан
    Комментировать