Forum Activity for @brian

brian
@brian
03/20/18 11:58:03AM
10,148 posts

Image Core crop filling color


Suggestions

Well we can see it working here:

http://www.egricayir.org/profile/image/profile_image/122/xxxlarge/crop=fill/fillcolor=249:249:249/_v=1452764386

so it might be something in the smarty function call - I can check it out. For now just use the actual URL in your template.
brian
@brian
03/20/18 11:37:50AM
10,148 posts

Image Core crop filling color


Suggestions

ah wait - you're doing it wrong. It should be:

{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$item._profile_id size="xxxlarge" crop="fill" fillcolor="249:249:249" class="img_scale" alt=$item.profile_name title=$item.profile_name}

"fillcolor" is a separate parameter.
brian
@brian
03/20/18 11:36:57AM
10,148 posts

Image Core crop filling color


Suggestions

I'm not seeing any issues here:

https://www.jamroom.net/forum/image/forum_file/56991/xxlarge/crop=fill/fillcolor=249:249:249

Let me know if that looks like super light gray to you - it does for me.
brian
@brian
03/20/18 10:42:55AM
10,148 posts

Image Core crop filling color


Suggestions

Can you show me how you're using it? The code appears correct:

        if (empty($_post['fillcolor'])) {
            $r = 0;
            $g = 0;
            $b = 0;
        }
        else {
            @list($r, $g, $b) = explode(':', $_post['fillcolor'], 3);
            if (!isset($r) || !jrCore_checktype($r, 'number_nn')) {
                $r = 0;
            }
            if (!isset($g) || !jrCore_checktype($g, 'number_nn')) {
                $g = 0;
            }
            if (!isset($b) || !jrCore_checktype($b, 'number_nn')) {
                $b = 0;
            }
        }
        $color = imagecolorallocate($image['handle'], $r, $g, $b);

Thanks!
brian
@brian
03/20/18 07:49:21AM
10,148 posts

Broken Image Link


Using Jamroom

Just an update that this was fixed in Support Tickets 2.0.0b6:

https://www.jamroom.net/the-jamroom-network/networkmarket/548/support-tickets-200b6

Let me know if that works now.
brian
@brian
03/20/18 07:44:46AM
10,148 posts

Image Core crop filling color


Suggestions

This has been added in Image Support 2.0.8 - update and let me know if that works for you.

Thanks!
brian
@brian
03/20/18 07:43:18AM
10,148 posts

MP3 Download Art Question.


Using Jamroom

serveion:
Hello JR

I have a question when I download a song form the server (jamroom) the Song art is not getting inserted into the mp3 all the other data are. do i have to do something in my end to make this work.?

thank you.

Right now I am not sure if the audio image is added to the audio file ID3 tags - I know all the text tags are added, but I'll have to check on the image.
brian
@brian
03/20/18 07:38:59AM
10,148 posts

DB Backups now always stuck in Queue


Using Jamroom

That's because it is exiting before it finishes, so it never makes it to the "clean up" part where it deletes old backups, so you're just increasing in space right now.
brian
@brian
03/20/18 07:38:16AM
10,148 posts

Akismet Question - Probation


Using Jamroom

Correct - it sends any text over for the modified item. Even though in this case he just added an image, the user can actually change other info related to the song, so it has to be checked.

If you can replicate the pending issue let me know and I can check it out.
brian
@brian
03/20/18 07:25:50AM
10,148 posts

Akismet Question - Probation


Using Jamroom

It has nothing to do with the image. When the song is created, all of the text fields (name, etc) are concatenated into a string and submitted to the Akismet spam service.
  64