Version 1.1 of the definition has been released. Please help updating it, contribute translations, and help us with the design of logos and buttons to identify free cultural works and licenses!

Talk:Logos and buttons

From Definition of Free Cultural Works
Jump to navigation Jump to search

Thinking About Buttons[edit]

Hi. Just an idea about the buttons: Please make it more international, by using symbols instead of text (like Attribution, Share-Alike). Regards--77.234.80.162 23:18, 16 February 2007 (CET)

The buttons, in my opinion, still need a little more work. What we need to do is provide some HTML through which people can include the buttons on their sites. This HTML needs to include a link to the button, which is easy enough, but it should also include the necessary RDF and a link, somewhere back to the deed on the CC site. This should be, I think, in addition to the link to a license-specific page in our wiki. I'm thinking what we should do is create an image map with a small area (it could even just be a couple pixels) that links to the CC site and the rest can link to us.

There is a thread that happened on the CC-Community mailing list that is worth reading over first. The thread also raised some interesting issues about about using the CC icons instead of the letters which I definitely think we should do. If someone can help with the the new buttons, I could probably sit down and hack out some sort of solution in terms of the image maps. Benjamin Mako Hill 22:22, 8 April 2007 (CEST)

Emphasise copyleft?[edit]

Should we avoid duplicating Creative Commons work? - and focus on icons for free/libre content? - e.g. CC-By and Public Domain are arguably non-free/libre - as both allow derived works (such as translations and localisations) to be released under more restrictive licenses. Kim 13:48, 5 March 2007 (CET)

I strongly disagree. There is no higher degree of freedom than the absence of copyright. To argue that the works of Shakespeare are not libre because they are not under a copyleft license is bizarre to me. This is also in line with the definition, which permits copyleft, but does not require it.--Erik Möller 15:45, 5 March 2007 (CET)

Thanks Erik. Some comments: Discussion of copyleft K (talk) (March 2007)

Looking back, I was thinking of something along the lines of the proposed Libre Puro Emblem and Libre Puro License, hoping the idea would be taken up somewhere significant like this. Perhaps its time will come some day :-) --K (talk) 15:51, 29 November 2014 (EST)

MediaWiki[edit]

You should get these put into MediaWiki, and when administrators start up their wiki, create a way for them to choose between the logos, as well as the license. 59.167.75.42 04:21, 17 April 2007 (CEST)

Gallery[edit]

Hi, does anyone have an idea why <gallery perrow="3"></gallery> doesn't work here? --Kjoonlee 20:50, 18 June 2007 (CEST)

Maybe it's due to version differences.. The English Wikipedia uses MediaWiki 1.11alpha (r22970) and "perrow" is supported there, but this site uses 1.9.0. --Kjoonlee 19:50, 22 June 2007 (CEST)

Equal treatement for "PD" please.[edit]

Would it be too much trouble to ask for buttons with "PD" in the same size letters as the other buttons have (and perhaps "Public Domain" underneath there in small print for some variants, like there are for the others). No reason to not have such. The current ones with Public and Domain in same size on different rows looks very busy to me. -- Cimon Avaro 12:26, 10 July 2007 (CEST)

An svg version would also be nice ... we could develop our own variants/colors/sizes. Does this exist? or should I (or a real artist) try my hand at tracing in Inkscape again? --Inkwina 12:38, 10 July 2007 (CEST)

License of buttons?[edit]

I see that the main logo and first set of buttons are PD but the rest have no license info. Am I just to assume they are CC-BY-2.5? --76.102.125.125 19:25, 1 May 2010 (UTC)

I wonder if the process stipulated that submitted logos and buttons should be PD since the section Identifying Free Cultural Works in version 1.1 of the definition indicates so (K (talk) 18:47, 31 December 2014 (EST)):

"We also encourage you to use the Free Cultural Works logos and buttons, which are in the public domain."

CC0[edit]

CC0 (Creative Commons Zero) buttons are needed. CC0 is a Public Domain dedication plus a very simple license without any requirements. The latter is for jurisdictions that don't accept PD dedications. -- Sloyment 13:35, 18 May 2010 (UTC)

METAFONT license icons[edit]

Is there a copy of license icons in METAFONT? I would like to use them in books created using TeX (not LaTeX). --24.207.49.17 03:41, 17 November 2010 (UTC)

[edit]

I have written a program to do the logo in GF-Magick. It is not perfect; please fix it if you want to fix it. Here is the program:

% Logo for "Free Cultural Works"
% This logo and the program to generate it are public domain.

input gfmagick;
magickmode(200,1);

picture_size=2in;
large_circle=1.9in;

half_size=picture_size/2;

def gradient(expr xx,yy,zz,zzz) =
  clear_geometry;
  special "-size";
  special "=#0x#0";
  numspecial round(xx);
  numspecial round(yy);
  numspecial 0;
  special "=gradient:rgba(#0,#0,#0,#2)-rgba(#0,#0,#0,#2)";
  numspecial round(255*redpart(zz));
  numspecial round(255*greenpart(zz));
  numspecial round(255*bluepart(zz));
  numspecial alphapart(zz);
  numspecial round(255*redpart(zzz));
  numspecial round(255*greenpart(zzz));
  numspecial round(255*bluepart(zzz));
  numspecial alphapart(zzz);
  numspecial 0;
enddef;

def padding(expr xx,yy) =
  clear_geometry;
  special "-gravity";
  special "Center";
  special "-extent";
  special "=#0x#0";
  numspecial round(xx);
  numspecial round(yy);
  numspecial 0;
  special "+gravity";
enddef;

def sequence_multiply =
  special "-fx";
  special "u*v";
enddef;

def do_layer(expr radius,color,quadrant,grad) =
  <<<
    canvas(picture_size,picture_size,Clear);
    setcolor(color);
    [[[
      pickup pencircle scaled (radius*large_circle);
      draw (0,0);
      z1=(0,0); z2=quadrant*half_size; z3=(xpart z2,0); z4=(0,ypart z2);
      unfill z1--z3--z2--z4--cycle;
    ]]]
    put_current(half_size,half_size,"src-over");
    if grad:
      <<<
        rad:=2.5*radius*large_circle;
        gradient(rad,rad,color,Clear);
        background(Clear);
        padding(picture_size,picture_size);
      >>>
      channels("A");
      sequence_multiply;
      channels(0);
    fi;
  >>>
  compose("src-over");
enddef;

canvas(picture_size,picture_size,Clear);

vardef Red = rgb(1,0,0) enddef;
vardef Orange = rgb(1,1/2,0) enddef;
vardef Yellow = rgb(1,1,0) enddef;
vardef Green = rgb(0,2/3,0) enddef;
vardef Blue = rgb(0,0,1) enddef;
vardef Purple = rgb(1/2,0,1) enddef;

do_layer(7/7,Red,(1,1),false);
do_layer(6/7,Orange,(1,-1),false);
do_layer(5/7,Yellow,(-1,-1),false);
do_layer(4/7,Yellow,(1,1),true);
do_layer(3/7,Green,(1,1),true);
do_layer(2/7,Blue,(1,-1),true);
do_layer(1/7,Purple,(0,0),true);

end;

--75.154.254.188 19:14, 18 November 2010 (UTC)

Terry Hancock designs, AIGA dude.[edit]

I like the Terry Hancock designs. I particularly like that they almost seem to be based on the Microgramma extended or Eurostile extended capital O. However, I think that the little "attribution" dude looks a bit odd. Perhaps you should use the "Toilets - Men" figure from the AIGA sign designs -- they're in the public domain, and generally more familiar (at least to U.S. viewers; perhaps not elsewhere), and they're available in EPS format, which is relatively easy to convert to SVG. (clarification: I'm not getting "public domain" from "available for all to use, free of charge" on AIGA's website, I'm getting it from the fact that the images were designed in collaboration with the US Dept. of Transportation, making them public domain Also: there's already an SVG) 207.65.109.10 06:43, 15 June 2011 (EDT)

Libre[edit]

free cultural works logoLibre

I am not an artist ... but it would be cool to have improved versions of this (image right) with the various languages outlined here (discussion page first suggested this one) - (e.g.) to go along with this. KTucker 19:15, 8 August 2013

Trademark[edit]

The logo says it is public domain, which deals with copyright, but what is the trademark status of the logo. I notice that http://freeculture.org is now using this logo also, and I expect other similarly aligned organisation/communities are also using it. Jayvdb (talk) 03:36, 26 September 2013 (EDT)

Hi, I'm the author of the logo you're using. Sorry I went AWOL for a while, don't really know how I can help. Maybe releasing it under a Creative Common license would solve your trademark issue? --Mfalzon (talk) 03:51, 26 September 2013 (EDT)
Copyright protection (which is solved by Creative Commons licensing) and trademark protection are two separate issues.
However, I don’t think the logo is considered a registered trademark by anyone. But IANAL. You might try to ask one of the Moderators.
--Mormegil (talk) 10:30, 27 September 2013 (EDT)

Thumbnails[edit]

Is there a way to fix the problem of the thumbnails throwing errors? --Guerillero (talk) 14:41, 1 November 2013 (EDT)

Almost none of the images and thumbnails on this page work. Only the 17 License Classification icons show up. Not a single useable logo or license mark works. Can this be fixed? 50.50.223.229 11:02, 10 October 2014 (EDT)

I contacted Mako, let’s hope he’d be able to fix the technical glitch. --Mormegil (talk) 04:42, 14 October 2014 (EDT)

Minimalist SVG Design[edit]

I made an SVG design. It was made from scratch. I thought the current logo was tacky, and it scaled poorly, I tried to do something cooler with it. I'm not allowed to upload the image on the wiki so I uploaded it here.

https://drive.google.com/open?id=0B4sNN4V6cKmhZzNucmZxUGlXV28 jTNNIII.png udW4OT7.png

--RaTcHeT302 (talk) 02:50, 6 November 2017 (EST)

Protected revert request[edit]

Can anyone revert into https://freedomdefined.org/index.php?title=Logos_and_buttons&oldid=22675 this revision?

Favicon[edit]

Is there a favicon for the logo by User:Mfalzon? Ideally with a transparent background? --Chealer (talk) 23:14, 27 December 2020 (CET)

About Terry Logos[edit]

Hello! I want to tell you, that I want to use Terry's logos, but I don't know the license of them. If he was American, I could use it in public domain. But, he was German, I don't know if geometric shapes can be protected. I want to use it in one of my works. Thanks guys! -Alejitao123 (talk) 16:50, 15 May 2021 (CEST)

I guess you might try to contact him, you’ll find a contact on various places, I think. --Mormegil (talk) 12:00, 17 May 2021 (CEST)